Game_Time
|
8754203ec6
|
feat: add responses api, websocket support, and fast mode
|
2026-03-23 15:41:42 +05:00 |
|
Game_Time
|
e6eeae8fa6
|
publishing pipeline update + model spec
|
2026-03-16 16:56:23 +05:00 |
|
Ra's al Ghul
|
baf312a02e
|
Add support for GPT-5.4 (#93)
Co-authored-by: Nigel Norris <ras@alghul.com>
|
2026-03-08 16:08:14 +05:00 |
|
Game_Time
|
5b51b53a20
|
GPT-5.3-Codex
|
2026-02-28 00:23:42 +05:00 |
|
Game_Time
|
f15c880fc3
|
GPT-5.2-Codex added
|
2025-12-26 16:45:05 +05:00 |
|
Game_Time
|
22fcc4d103
|
Remove 'none' from GPT-5.2
|
2025-12-12 01:58:38 +05:00 |
|
Game_Time
|
c6eec41d25
|
Add support for GPT-5.2
|
2025-12-12 01:39:56 +05:00 |
|
Game_Time
|
8db91eb8c8
|
GPT-5.1 models "minimal" removed, add gpt-5.1-codex-max (#80)
|
2025-11-22 12:16:18 +05:00 |
|
Game_Time
|
d2879a3ffe
|
add gpt-5.1 to ollama route
|
2025-11-19 15:31:22 +05:00 |
|
Game_Time
|
bdae9469ce
|
fix duplication of message in ollama endpoint
|
2025-11-19 15:26:46 +05:00 |
|
Magniquick
|
13b1dddf75
|
feat: improve compatiblity with certain apps (#72)
* feat: enable modern packaging via pyproject.toml
uvx --from (...) chatmock should just work !
* feat(ollama): add version endpoint
* feat(logging): improve verbose diagnostics
* fix(stream): always send stop chunk
|
2025-11-19 15:02:20 +05:00 |
|
Game_Time
|
6c0d63869e
|
add limits to info
|
2025-09-25 16:43:55 +05:00 |
|
Game_Time
|
bf16fbe3e1
|
add codex-mini to model list
|
2025-09-18 11:41:22 +05:00 |
|
Maciej Wilczyński
|
77d60fe321
|
Add GPT-5-Codex support (#37)
|
2025-09-16 17:58:41 +05:00 |
|
alexx-ftw
|
2f23cd5a89
|
native openai web search ability!
* feat: local passthrough for Responses tools via responses_tools + responses_tool_choice (behind CHATMOCK_ALLOW_RESPONSES_TOOLS)
* feat: gate Responses tools passthrough behind CHATMOCK_ALLOW_RESPONSES_TOOLS (default OFF)
* test(docs): add pytest for Responses tools passthrough (default off), and README usage section
* feat: responses tools hardening (fallback on 400, host allowlist, size guard, tool_choice strings only); tests updated
* feat: enable Responses tools passthrough by default; remove env gate
- Tools forwarded whenever is present
- Keep size guard and optional MCP host allowlist
- Accept strings unconditionally
Tests:
- Update to cover default passthrough and baseline (no responses_tools)
Docs:
- README: update instructions; move Star History to bottom
* chore: clean imports/comments; use gpt-5 in examples and tests
* docs: tighten Responses tools README; fix gpt-5 example\nchore: remove feature-specific test per review; trim comments/imports
* chore: remove __pycache__/ and bytecode; add .gitignore
* chore: add .gitignore for caches and bytecode
* Update README.md
* fix: remove MCP passthrough; allow only web_search in responses_tools
- Reject non-`web_search` types with 400 (`RESPONSES_TOOL_UNSUPPORTED`).
- Drop MCP host allowlist logic and related import.
- Keep size guard via `RESPONSES_TOOLS_MAX_BYTES` and fallback retry without extras.
- Docs: update README to state web_search-only passthrough.
Runtime verified locally with a stubbed upstream:
- OK: `responses_tools: [{"type": "web_search"}]` -> 200.
- BAD: `responses_tools: [{"type": "mcp"}]` -> 400 `RESPONSES_TOOL_UNSUPPORTED`.
* feat: forward Responses web_search tool via Chat Completions; fallback on rejection
- Accept `responses_tools` array and filter to `type: web_search` only.
- Enforce size guard `RESPONSES_TOOLS_MAX_BYTES` (default 32768).
- Fallback: if upstream rejects tools, retry without extras; otherwise return `RESPONSES_TOOLS_REJECTED`.
- README: document web_search-only passthrough and example.
- Headers: hint experimental features in OpenAI-Beta (responses; web-search).
* chore: remove local test-only forcing flag (CHATMOCK_FORCE_WEB_SEARCH)
* fix: restore full routes_openai (web_search-only passthrough + endpoints)
- Undo accidental large deletion from prior cleanup.
- Keep `web_search` passthrough, size guard, and fallback.
- Preserve `/v1/completions` and `/v1/models` endpoints and SSE handling.
* Update upstream.py
* Update upstream.py
* Update README.md
* Update README.md
* Update routes_openai.py
* feat(openai): default-enable web_search; accept preview; quiet retry; rm env knob
- Injects responses_tools=[{"type":"web_search"}] when client omits tools; explicit opt-out via responses_tool_choice:"none".
- Allowlist accepts "web_search" and "web_search_preview"; others rejected with RESPONSES_TOOL_UNSUPPORTED.
- Replaces env max-bytes knob with MAX_TOOLS_BYTES=32768.
- Retry on upstream rejection is silent; logs only under verbose.
* feat(stream): surface web_search_call as tool_calls; aggregate args; verbose-only logs
- Translates Responses web_search_call.* and output_item.done into OpenAI-style delta.tool_calls.
- Aggregates parameters by call_id (query/q, recency/time_range/days, domains/include/include_domains/include, max_results/topn/limit).
- No inference; arguments remain "{}" if upstream provides none. Logs only when verbose.
* feat(responses-tools): web_search passthrough; flag; fallback; Ollama parity; stable indexes
- Add --enable-web-search (default OFF) to inject web_search when requests omit responses_tools
- Allow tool types: web_search and web_search_preview; 32,768-byte cap on serialized responses_tools
- OpenAI /v1/chat/completions: passthrough + retry without extras on upstream rejection; return retry status
- Streaming: function.arguments always JSON; stable tool_calls index per call_id
- Ollama /api/chat: same passthrough + fallback behavior
- README updated to match behavior and limits
* Update README.md
* Update README.md
* Update routes_ollama.py
* Update routes_openai.py
* Update utils.py
---------
Co-authored-by: alexx-ftw <alexx-ftw@users.noreply.github.com>
Co-authored-by: Game_Time <108236317+RayBytes@users.noreply.github.com>
|
2025-09-16 17:06:00 +05:00 |
|
Game_Time
|
7d944548cd
|
reasoning effort as models support
|
2025-08-24 23:53:37 +05:00 |
|
Game_Time
|
2ed6dbe2d4
|
fix ollama regression
|
2025-08-19 21:26:47 +05:00 |
|
Game_Time
|
554ec53a25
|
refactor to reorganise codebase
|
2025-08-19 17:21:00 +05:00 |
|