Skip to content

Commit a81269e

Browse files
author
balogh.adam@icloud.com
committed
lower limits
1 parent e6b4491 commit a81269e

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

examples/llm_chat.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
async def main():
1212
llm = og.LLM(private_key=os.environ.get("OG_PRIVATE_KEY"))
13-
llm.ensure_opg_approval(opg_amount=1)
13+
llm.ensure_opg_approval(opg_amount=0.1)
1414

1515
messages = [
1616
{"role": "user", "content": "What is the capital of France?"},

examples/llm_chat_streaming.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
async def main():
88
llm = og.LLM(private_key=os.environ.get("OG_PRIVATE_KEY"))
9-
llm.ensure_opg_approval(opg_amount=1)
9+
llm.ensure_opg_approval(opg_amount=0.1)
1010

1111
messages = [
1212
{"role": "user", "content": "What is Python?"},

0 commit comments

Comments
 (0)