You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# This example demonstrates using Requesty's unified, OpenAI-compatible API to
6
+
# access multiple AI models from different providers in a single conversation.
7
+
#
8
+
# Requirements:
9
+
# - Set REQUESTY_API_KEY environment variable
10
+
# - Requesty account with credits (https://requesty.ai)
11
+
#
12
+
# Run with:
13
+
# export REQUESTY_API_KEY=your-key-here
14
+
# agentpipe run -c examples/requesty-conversation.yaml
15
+
16
+
agents:
17
+
- id: claude-via-requesty
18
+
type: requesty
19
+
name: "Claude (Requesty)"
20
+
prompt: "You are Claude, an AI assistant created by Anthropic. You are thoughtful, analytical, and enjoy deep discussions."
21
+
announcement: "🤖 Claude has joined via Requesty API!"
22
+
model: anthropic/claude-sonnet-4-5
23
+
temperature: 0.7
24
+
max_tokens: 500
25
+
26
+
- id: gemini-via-requesty
27
+
type: requesty
28
+
name: "Gemini (Requesty)"
29
+
prompt: "You are Gemini, Google's AI assistant. You are curious, factual, and love to explore new ideas."
30
+
announcement: "✨ Gemini has joined via Requesty API!"
31
+
model: google/gemini-2.5-flash
32
+
temperature: 0.6
33
+
max_tokens: 500
34
+
35
+
- id: gpt-via-requesty
36
+
type: requesty
37
+
name: "GPT (Requesty)"
38
+
prompt: "You are GPT, OpenAI's language model. You are helpful, creative, and enjoy collaborative problem-solving."
39
+
announcement: "🧠 GPT has joined via Requesty API!"
40
+
model: openai/gpt-4o-mini
41
+
temperature: 0.8
42
+
max_tokens: 500
43
+
44
+
orchestrator:
45
+
mode: round-robin
46
+
max_turns: 8
47
+
turn_timeout: 30s
48
+
response_delay: 2s
49
+
initial_prompt: "Let's have a discussion about the future of AI and its impact on society. Each of you represents a different AI platform - what unique perspectives do you bring to this topic?"
# This example shows how to use a single Requesty agent for a conversation.
6
+
# This is useful for testing or when you want to use a specific model via API
7
+
# without installing its CLI tool.
8
+
#
9
+
# Requirements:
10
+
# - Set REQUESTY_API_KEY environment variable
11
+
# - Requesty account with credits (https://requesty.ai)
12
+
#
13
+
# Run with:
14
+
# export REQUESTY_API_KEY=your-key-here
15
+
# agentpipe run -c examples/requesty-solo.yaml
16
+
17
+
agents:
18
+
- id: gpt-via-requesty
19
+
type: requesty
20
+
name: "GPT (Requesty)"
21
+
prompt: "You are a powerful reasoning assistant. When solving problems, break down your thinking step by step and show your reasoning process clearly."
22
+
announcement: "🧪 GPT has joined via Requesty API!"
23
+
model: openai/gpt-4o-mini
24
+
temperature: 0.5
25
+
max_tokens: 2000
26
+
27
+
orchestrator:
28
+
mode: round-robin
29
+
max_turns: 3
30
+
turn_timeout: 60s
31
+
response_delay: 1s
32
+
initial_prompt: "Solve this logic puzzle: You have 12 balls that look identical. One ball is slightly heavier or lighter than the others. Using a balance scale only 3 times, how can you identify which ball is different and whether it's heavier or lighter?"
0 commit comments