We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1dadc0b commit bfeedbdCopy full SHA for bfeedbd
examples/workflow/email_processing.py
@@ -45,7 +45,7 @@ async def process_email(email_content: str):
45
langbase = Langbase(api_key=langbase_api_key)
46
47
# Create a new workflow
48
- workflow = Workflow()
+ workflow = Workflow(debug=True)
49
50
try:
51
# Steps 1 & 2: Run summary and sentiment analysis in parallel
examples/workflow/workflow.py
@@ -24,7 +24,7 @@ async def main():
24
async def summarize_step():
25
return langbase.agent.run(
26
model="openai:gpt-4o-mini",
27
- api_key=os.environ.get("OPENAI_API_KEY"),
+ api_key=os.environ.get("LLM_API_KEY"),
28
input=[
29
{
30
"role": "system",
0 commit comments