Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ edgee = Edgee("your-api-key")

# Send a simple request
response = edgee.send(
model="gpt-4o",
model="gpt-5.2",
input="What is the capital of France?"
)

Expand All @@ -34,7 +34,7 @@ The `send()` method makes non-streaming chat completion requests:

```python
response = edgee.send(
model="gpt-4o",
model="gpt-5.2",
input="Hello, world!"
)

Expand All @@ -58,7 +58,7 @@ if response.compression:
The `stream()` method enables real-time streaming responses:

```python
for chunk in edgee.stream("gpt-4o", "Tell me a story"):
for chunk in edgee.stream("gpt-5.2", "Tell me a story"):
if chunk.text:
print(chunk.text, end="", flush=True)

Expand Down
2 changes: 1 addition & 1 deletion example/compression.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@
Based on this context, summarize the key milestones in AI development in 3 bullet points."""

response = edgee.send(
model="gpt-4o",
model="gpt-5.2",
input={
"messages": [
{"role": "user", "content": user_message},
Expand Down
2 changes: 1 addition & 1 deletion example/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
# Test 3: With tools
print("Test 3: With tools")
response3 = edgee.send(
model="gpt-4o",
model="gpt-5.2",
input={
"messages": [{"role": "user", "content": "What is the weather in Paris?"}],
"tools": [
Expand Down
Loading