chore(core): drop gpt-3.5-turbo from docstrings (#36497)

This commit is contained in:
Mason Daugherty
2026-04-03 10:53:33 -04:00
committed by GitHub
parent dd637313c9
commit aec6d42d10
3 changed files with 6 additions and 6 deletions

View File

@@ -166,14 +166,14 @@ class InMemoryCache(BaseCache):
# Update cache
cache.update(
prompt="What is the capital of France?",
llm_string="model='gpt-3.5-turbo', temperature=0.1",
llm_string="model='gpt-5.4-mini',
return_val=[Generation(text="Paris")],
)
# Lookup cache
result = cache.lookup(
prompt="What is the capital of France?",
llm_string="model='gpt-3.5-turbo', temperature=0.1",
llm_string="model='gpt-5.4-mini',
)
# result is [Generation(text="Paris")]
```