mirror of
https://github.com/hwchase17/langchain.git
synced 2026-06-09 10:17:00 +00:00
chore(core): drop gpt-3.5-turbo from docstrings (#36497)
This commit is contained in:
@@ -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")]
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user