For an immediate taste of our platforms’s capabilities, try the playground. The playground provides a user-friendly interface where you can test prompts and tools with our inference engine and see results without writing any code.
The Subconscious Playground: A quick easy way to get started!
First, create an API key from your dashboard. Important: API keys are only shown once for security reasons. If you’ve lost your API key, simply create a new one from the “API Keys” tab.
from openai import OpenAIclient = OpenAI( base_url="https://api.subconscious.dev/v1", api_key="YOUR_API_KEY")response = client.chat.completions.create( model="tim-small-preview", messages=[ {"role": "user", "content": "What's the derivative of 3x^2 * sin(x)?"} ] ## Example with no tools)print(response.choices[0].message.content)
That’s it! You’re now ready to start building with Subconscious. The API works with any OpenAI-compatible tools and libraries - just update the base URL and API key.