Skip to content

Commit

Permalink
fix: remove print
Browse files Browse the repository at this point in the history
  • Loading branch information
kevdevg committed Feb 6, 2025
1 parent 06ae12b commit 44e65dc
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions examples/litellm/litellm-aimage-generation.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,12 @@
import asyncio
from os import getenv

from litellm import aimage_generation

from scope3ai import Scope3AI
import os


async def main(model: str, prompt: str, size: str, api_key: str | None = None):
scope3 = Scope3AI.init()
print(os.environ)
print(getenv("SCOPE3AI_API_KEY"), "aca")
with scope3.trace() as tracer:
response = await aimage_generation(
model=model, prompt=prompt, size=size, api_key=api_key
Expand Down

0 comments on commit 44e65dc

Please sign in to comment.