gitextract_5oebzo1m/ ├── .github/ │ ├── dependabot.yml │ └── workflows/ │ ├── publish.yaml │ └── test.yaml ├── .gitignore ├── LICENSE ├── README.md ├── SECURITY.md ├── examples/ │ ├── README.md │ ├── async-chat.py │ ├── async-generate.py │ ├── async-structured-outputs.py │ ├── async-tools.py │ ├── chat-logprobs.py │ ├── chat-stream.py │ ├── chat-with-history.py │ ├── chat.py │ ├── create.py │ ├── embed.py │ ├── fill-in-middle.py │ ├── generate-image.py │ ├── generate-logprobs.py │ ├── generate-stream.py │ ├── generate.py │ ├── gpt-oss-tools-stream.py │ ├── gpt-oss-tools.py │ ├── list.py │ ├── multi-tool.py │ ├── multimodal-chat.py │ ├── multimodal-generate.py │ ├── ps.py │ ├── pull.py │ ├── show.py │ ├── structured-outputs-image.py │ ├── structured-outputs.py │ ├── thinking-generate.py │ ├── thinking-levels.py │ ├── thinking.py │ ├── tools.py │ ├── web-search-gpt-oss.py │ ├── web-search-mcp.py │ ├── web-search.py │ └── web_search_gpt_oss_helper.py ├── ollama/ │ ├── __init__.py │ ├── _client.py │ ├── _types.py │ ├── _utils.py │ └── py.typed ├── pyproject.toml ├── requirements.txt └── tests/ ├── test_client.py ├── test_type_serialization.py └── test_utils.py