mirror of
https://github.com/hwchase17/langchain
synced 2024-11-06 03:20:49 +00:00
ed58eeb9c5
Moved the following modules to new package langchain-community in a backwards compatible fashion: ``` mv langchain/langchain/adapters community/langchain_community mv langchain/langchain/callbacks community/langchain_community/callbacks mv langchain/langchain/chat_loaders community/langchain_community mv langchain/langchain/chat_models community/langchain_community mv langchain/langchain/document_loaders community/langchain_community mv langchain/langchain/docstore community/langchain_community mv langchain/langchain/document_transformers community/langchain_community mv langchain/langchain/embeddings community/langchain_community mv langchain/langchain/graphs community/langchain_community mv langchain/langchain/llms community/langchain_community mv langchain/langchain/memory/chat_message_histories community/langchain_community mv langchain/langchain/retrievers community/langchain_community mv langchain/langchain/storage community/langchain_community mv langchain/langchain/tools community/langchain_community mv langchain/langchain/utilities community/langchain_community mv langchain/langchain/vectorstores community/langchain_community mv langchain/langchain/agents/agent_toolkits community/langchain_community mv langchain/langchain/cache.py community/langchain_community mv langchain/langchain/adapters community/langchain_community mv langchain/langchain/callbacks community/langchain_community/callbacks mv langchain/langchain/chat_loaders community/langchain_community mv langchain/langchain/chat_models community/langchain_community mv langchain/langchain/document_loaders community/langchain_community mv langchain/langchain/docstore community/langchain_community mv langchain/langchain/document_transformers community/langchain_community mv langchain/langchain/embeddings community/langchain_community mv langchain/langchain/graphs community/langchain_community mv langchain/langchain/llms community/langchain_community mv langchain/langchain/memory/chat_message_histories community/langchain_community mv langchain/langchain/retrievers community/langchain_community mv langchain/langchain/storage community/langchain_community mv langchain/langchain/tools community/langchain_community mv langchain/langchain/utilities community/langchain_community mv langchain/langchain/vectorstores community/langchain_community mv langchain/langchain/agents/agent_toolkits community/langchain_community mv langchain/langchain/cache.py community/langchain_community ``` Moved the following to core ``` mv langchain/langchain/utils/json_schema.py core/langchain_core/utils mv langchain/langchain/utils/html.py core/langchain_core/utils mv langchain/langchain/utils/strings.py core/langchain_core/utils cat langchain/langchain/utils/env.py >> core/langchain_core/utils/env.py rm langchain/langchain/utils/env.py ``` See .scripts/community_split/script_integrations.sh for all changes
69 lines
2.1 KiB
Python
69 lines
2.1 KiB
Python
"""Integration tests for the langchain tracer module."""
|
|
import asyncio
|
|
|
|
from langchain_community.callbacks import get_openai_callback
|
|
from langchain_community.llms import OpenAI
|
|
|
|
|
|
async def test_openai_callback() -> None:
|
|
llm = OpenAI(temperature=0)
|
|
with get_openai_callback() as cb:
|
|
llm("What is the square root of 4?")
|
|
|
|
total_tokens = cb.total_tokens
|
|
assert total_tokens > 0
|
|
|
|
with get_openai_callback() as cb:
|
|
llm("What is the square root of 4?")
|
|
llm("What is the square root of 4?")
|
|
|
|
assert cb.total_tokens == total_tokens * 2
|
|
|
|
with get_openai_callback() as cb:
|
|
await asyncio.gather(
|
|
*[llm.agenerate(["What is the square root of 4?"]) for _ in range(3)]
|
|
)
|
|
|
|
assert cb.total_tokens == total_tokens * 3
|
|
|
|
task = asyncio.create_task(llm.agenerate(["What is the square root of 4?"]))
|
|
with get_openai_callback() as cb:
|
|
await llm.agenerate(["What is the square root of 4?"])
|
|
|
|
await task
|
|
assert cb.total_tokens == total_tokens
|
|
|
|
|
|
def test_openai_callback_batch_llm() -> None:
|
|
llm = OpenAI(temperature=0)
|
|
with get_openai_callback() as cb:
|
|
llm.generate(["What is the square root of 4?", "What is the square root of 4?"])
|
|
|
|
assert cb.total_tokens > 0
|
|
total_tokens = cb.total_tokens
|
|
|
|
with get_openai_callback() as cb:
|
|
llm("What is the square root of 4?")
|
|
llm("What is the square root of 4?")
|
|
|
|
assert cb.total_tokens == total_tokens
|
|
|
|
|
|
def test_openai_callback_agent() -> None:
|
|
from langchain.agents import AgentType, initialize_agent, load_tools
|
|
|
|
llm = OpenAI(temperature=0)
|
|
tools = load_tools(["serpapi", "llm-math"], llm=llm)
|
|
agent = initialize_agent(
|
|
tools, llm, agent=AgentType.ZERO_SHOT_REACT_DESCRIPTION, verbose=True
|
|
)
|
|
with get_openai_callback() as cb:
|
|
agent.run(
|
|
"Who is Olivia Wilde's boyfriend? "
|
|
"What is his current age raised to the 0.23 power?"
|
|
)
|
|
print(f"Total Tokens: {cb.total_tokens}")
|
|
print(f"Prompt Tokens: {cb.prompt_tokens}")
|
|
print(f"Completion Tokens: {cb.completion_tokens}")
|
|
print(f"Total Cost (USD): ${cb.total_cost}")
|