Skip to content
Merged
Show file tree
Hide file tree
Changes from 29 commits
Commits
Show all changes
51 commits
Select commit Hold shift + click to select a range
74097cf
Unreviewed agent output: make chat and embed interfaces provider-agno…
gvanrossum-ms Feb 17, 2026
d59d7b6
Agent step 2 -- unreviewed
gvanrossum-ms Feb 17, 2026
ff733f5
Agent step 3 -- unreviewed -- use Pydantic's model registry
gvanrossum-ms Feb 17, 2026
1015737
Don't hardcode an incomplete table of embedding sizes
gvanrossum-ms Feb 18, 2026
4bd1387
Fix test failures
gvanrossum-ms Feb 18, 2026
60aa403
Rename model_registry -> model_adapters
gvanrossum-ms Feb 18, 2026
067f3b9
Move pydantic-ai to main deps
gvanrossum Feb 24, 2026
17b959f
Remove obsolete create_embedding_model -- wasn't easy
gvanrossum Feb 25, 2026
76621b4
Merge branch 'main' into agnostic
gvanrossum-ms Feb 25, 2026
6f1286f
Fix test_configure_models_returns_correct_types
gvanrossum-ms Feb 25, 2026
83d6f0a
Fall back on Azure for OpenAI models if only Azure key is present
gvanrossum-ms Feb 25, 2026
2659f30
Use embed_documents() instead of embed(input_type=["document"])
gvanrossum-ms Feb 25, 2026
2b8735b
Fix the mcp test. We now do the right thing with azure endpoint env v…
gvanrossum-ms Feb 25, 2026
05183d9
Remove AsyncEmbeddingModel; migrate all tests to PydanticAIEmbeddingM…
gvanrossum-ms Feb 25, 2026
dec2e6f
Move in-function imports to module level in tests/
gvanrossum-ms Feb 25, 2026
909247d
Don't re-export create_typechat_model from convknowledge.py
gvanrossum-ms Feb 25, 2026
8807cc5
Remove redundant tests that Chat/Embedding models subclass their prot…
gvanrossum-ms Feb 25, 2026
68d3082
Avoid type-ignore in favor of isinstance
gvanrossum-ms Feb 25, 2026
3697f89
Remove ModelWrapper, create_typechat_model; use create_chat_model eve…
gvanrossum-ms Feb 25, 2026
087b7a3
Split up *EmbeddingModel into IEmbedder and CachingEmbeddingModel
gvanrossum-ms Feb 26, 2026
43894bd
Remove max_retries everywhere -- this is now under Pydantic control
gvanrossum-ms Feb 26, 2026
910a99b
Remove embedding_size argument everywhere. Handle it internally
gvanrossum-ms Feb 26, 2026
091bd58
Change default embedding back to ada-002 for backwards compatibility
gvanrossum-ms Feb 26, 2026
7c1c527
Add OPENAI_EMBEDDING_MODEL envvar to set the text embedding (e.g. tex…
gvanrossum-ms Feb 26, 2026
400f869
speed optimization:
bmerkle Feb 27, 2026
1cf46b4
parse_azure_endpoint regex missed & separator [?,]
bmerkle Feb 27, 2026
aab0eee
added test for parsing azure endpoint urls
bmerkle Feb 27, 2026
4e9127a
fixed parse_azure_endpoint tests
bmerkle Feb 27, 2026
f6ae405
1st change:
bmerkle Feb 27, 2026
9c7d37a
The original __repr__ used dir(self), which returns all attributes on…
bmerkle Feb 27, 2026
6e6972e
facets_to_merged_facets used str(facet) instead of str(facet.value)
bmerkle Feb 27, 2026
ccb96f2
Remove duplicate __all__ in interfaces_search.py
bmerkle Feb 27, 2026
b4d4a40
when cur_chunk was empty (i.e. at the very start, or right after yiel…
bmerkle Feb 27, 2026
b52910b
format
bmerkle Feb 27, 2026
b7fd4a9
removed bare import coverage at the top level.
bmerkle Feb 27, 2026
0f413fa
dir(self)lists all attributes on the object including inherited methods,
bmerkle Feb 27, 2026
996ebf0
for objects that don't have .ordinal, the code would crash with Attr…
bmerkle Feb 27, 2026
84e90b8
Merge branch 'main' into bugfix-for-0-4-0-release
bmerkle Mar 1, 2026
f0749e1
Clean up import statements in test_utils.py
bmerkle Mar 1, 2026
4611d84
removed invalid , (comma) in URL specification and updated test
bmerkle Mar 1, 2026
77d06be
- fixed implementation to match the corrected half-open interval sema…
bmerkle Mar 1, 2026
3a69313
- used aenumerate in the for loop
bmerkle Mar 1, 2026
70bc27d
Merged all content from test_mcp_server_unit.py into test_mcp_server.py
bmerkle Mar 1, 2026
d4014cf
explained the additiona if guard
bmerkle Mar 1, 2026
c351f16
renamed is_in_range() to contains_range()
bmerkle Mar 1, 2026
5300f09
changed method to clone()
bmerkle Mar 1, 2026
bd0d329
restored commit 582175ce42dd487e779f7da0eee85cb0e2fbe6de
bmerkle Mar 2, 2026
b32e8a2
- each instance gets its own set
bmerkle Mar 2, 2026
c602cf7
removed comments
bmerkle Mar 2, 2026
0bf1904
- small refactoring
bmerkle Mar 3, 2026
9382891
fix for filtered
bmerkle Mar 3, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,3 +93,6 @@ please follow these guidelines:

* **Code Validation**: Don't use `py_compile` for syntax checking.
Use `pyright` or `make check` instead for proper type checking and validation.

* **Deprecations**: Don't deprecate things -- just delete them and fix the usage sites.
Don't create backward compatibility APIs or exports or whatever. Fix the usage sites.
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ dependencies = [
"numpy>=2.2.6",
"openai>=1.81.0",
"pydantic>=2.11.4",
"pydantic-ai-slim[openai]>=1.39.0",
"pyreadline3>=3.5.4 ; sys_platform == 'win32'",
"python-dotenv>=1.1.0",
"tiktoken>=0.12.0",
Expand Down Expand Up @@ -85,11 +86,10 @@ dev = [
"google-auth-httplib2>=0.2.0",
"google-auth-oauthlib>=1.2.2",
"isort>=7.0.0",
"logfire>=4.1.0", # So 'make check' passes
"logfire>=4.1.0", # So 'make check' passes
"msgraph-sdk>=1.54.0",
"opentelemetry-instrumentation-httpx>=0.57b0",
"pydantic-ai-slim[openai]>=1.39.0",
"pyright>=1.1.408", # 407 has a regression
"pyright>=1.1.408", # 407 has a regression
"pytest>=8.3.5",
"pytest-asyncio>=0.26.0",
"pytest-mock>=3.14.0",
Expand Down
Loading