SHANNON A.I. લોગો
SHANNON A.I.
ચેટ કિંમત API સંશોધન કંપની Pentest AI Startup Boost
સાઇન ઇન
યોજના અને વપરાશ
ચેટ કિંમત API સંશોધન કંપની Pentest AI Startup Boost સાઇન ઇન યોજના અને વપરાશ

તમારી ભાષા પસંદ કરો

બધી ભાષાઓ સમાન છે. તમે ઉપયોગ કરવા માંગો છો તે ભાષા પસંદ કરો.

API દસ્તાવેજીકરણ

Shannon API

OpenAI અને Anthropic‑સંગત AI API જેમાં function calling, web search અને structured outputs છે.

API કી મેળવો Playground અજમાવો V2
દસ્તાવેજીકરણ
  • OV સારાંશ
  • CP ક્ષમતાઓ
  • QS ઝડપી શરૂઆત
  • PG API Playground નવું
  • AU પ્રમાણિકરણ
  • ML મોડલ્સ
  • FN ફંક્શન કોલિંગ
  • JS રચિત આઉટપુટ્સ
  • SS સ્ટ્રીમિંગ
  • WS Built‑in Web Search
  • AN Anthropic ફોર્મેટ
  • SD SDKs
  • ER ભૂલ સંભાળ
  • CL બદલાવ નોંધ
  • AK તમારી API કી
  • US તમારો ઉપયોગ

Shannon AI API Documentation

સારાંશ

જાહેર ડોક્સ

Shannon ની OpenAI અને Anthropic‑સંગત API સાથે શિપ કરવા માટે બધું જરૂરી.

URL OpenAI‑સંગત
https://api.shannon-ai.com/v1/chat/completions

function calling અને streaming સાથે Chat Completions API વાપરો.

URL Anthropic‑સંગત
https://api.shannon-ai.com/v1/messages

Claude Messages ફોર્મેટ ટૂલ્સ અને anthropic-version હેડર સાથે.

હેડર્સ પ્રમાણિકરણ
Authorization: Bearer <api-key>

અથવા Claude-સ્ટાઇલ કોલ્સ માટે X-API-Key સાથે anthropic-version.

ઍક્સેસ સ્થિતિ
જાહેર ડોક્સ - કોલ કરવા કી જરૂરી

સ્ટ્રીમિંગ, ફંક્શન કોલિંગ, રચિત આઉટપુટ્સ, વેબ શોધ.

લૉન્ચ ચેકલિસ્ટ
  • +
    તમારો SDK Shannon તરફ પોઇન્ટ કરો
    baseURL ને ઉપરના OpenAI અથવા Anthropic endpoints પર સેટ કરો.
    સેટઅપ
  • +
    તમારી API કી જોડો
    OpenAI કોલ્સ માટે Bearer ટોકન અથવા X-API-Key + anthropic-version વાપરો.
    સિક્યુરિટી
  • +
    ટૂલ્સ અને structured outputs સક્રિય કરો
    OpenAI tools/functions, JSON schema, અને built-in web_search સપોર્ટ કરે છે.
    ક્ષમતાઓ
  • +
    ઉપયોગ ટ્રૅક કરો
    સાઇન ઇન હોવા પર આ પેજ પર ટોકન અને શોધ વપરાશ જુઓ.
    એનલિટિક્સ

ક્ષમતાઓ

OpenAI + Anthropic

OpenAI અને Anthropic APIs માટે drop-in replacement જેમાં ટૂલ્સ, structured outputs, અને built-in web search માટે નેટિવ સપોર્ટ છે.

AI

Drop‑in Replacement

સંગત

OpenAI અને Anthropic SDKs સાથે કામ કરે છે. બસ base URL બદલો.

AI

ફંક્શન કોલિંગ

ટૂલ્સ

ટૂલ્સ નિર્ધારિત કરો, Shannon તેમને કોલ કરે છે. auto, forced, none મોડ્સ સપોર્ટ.

AI

Built‑in Web Search

શોધ

સોર્સ સાઇટેશન્સ સાથે રિયલ‑ટાઇમ વેબ સર્ચ. આપમેળે ઉપલબ્ધ.

AI

રચિત આઉટપુટ્સ

JSON

વિશ્વસનીય ડેટા માટે JSON મોડ અને JSON Schema enforcement.

AI

Multi‑turn Tools

એજેન્ટિક

ઓટોમેટિક ફંક્શન એક્ઝિક્યુશન લૂપ્સ. દર વિનંતી પર 10 iterations સુધી.

AI

સ્ટ્રીમિંગ

ઝડપી

રિયલ‑ટાઇમ ટોકન સ્ટ્રીમિંગ માટે Server‑Sent Events.

ઝડપી શરૂઆત

5 મિનિટ

ત્રણ પગલાંમાં શરૂઆત કરો. Shannon OpenAI અને Anthropic ક્લાયન્ટ્સને મિરર કરે છે.

1

તમારો base URL સેટ કરો

OpenAI‑સંગત endpoint વાપરો.

https://api.shannon-ai.com/v1/chat/completions
2

તમારી API કી ઉમેરો

Authorization હેડરમાં Bearer auth વાપરો.

3

તમારો પહેલો સંદેશ મોકલો

ભાષા પસંદ કરો અને તમારી કી નાખો.

Python
from openai import OpenAI

client = OpenAI(
    api_key="YOUR_API_KEY",
    base_url="https://api.shannon-ai.com/v1"
)

response = client.chat.completions.create(
    model="shannon-1.6-lite",
    messages=[
        {"role": "system", "content": "You are a helpful assistant."},
        {"role": "user", "content": "Hello, Shannon!"}
    ],
    max_tokens=1024
)

print(response.choices[0].message.content)
JavaScript
import OpenAI from 'openai';

const client = new OpenAI({
  apiKey: 'YOUR_API_KEY',
  baseURL: 'https://api.shannon-ai.com/v1'
});

const response = await client.chat.completions.create({
  model: 'shannon-1.6-lite',
  messages: [
    { role: 'system', content: 'You are a helpful assistant.' },
    { role: 'user', content: 'Hello, Shannon!' }
  ],
  max_tokens: 1024
});

console.log(response.choices[0].message.content);
Go
package main

import (
    "context"
    "fmt"
    openai "github.com/sashabaranov/go-openai"
)

func main() {
    config := openai.DefaultConfig("YOUR_API_KEY")
    config.BaseURL = "https://api.shannon-ai.com/v1"
    client := openai.NewClientWithConfig(config)

    resp, err := client.CreateChatCompletion(
        context.Background(),
        openai.ChatCompletionRequest{
            Model: "shannon-1.6-lite",
            Messages: []openai.ChatCompletionMessage{
                {Role: "system", Content: "You are a helpful assistant."},
                {Role: "user", Content: "Hello, Shannon!"},
            },
            MaxTokens: 1024,
        },
    )
    if err != nil {
        panic(err)
    }
    fmt.Println(resp.Choices[0].Message.Content)
}
cURL
curl -X POST "https://api.shannon-ai.com/v1/chat/completions" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "shannon-1.6-lite",
    "messages": [
      {"role": "system", "content": "You are a helpful assistant."},
      {"role": "user", "content": "Hello, Shannon!"}
    ],
    "max_tokens": 1024
  }'

પ્રતિસાદ ફોર્મેટ

સફળ પ્રતિસાદ
{
  "id": "chatcmpl-abc123",
  "object": "chat.completion",
  "created": 1234567890,
  "model": "Shannon 1.6 Lite",
  "choices": [
    {
      "index": 0,
      "message": {
        "role": "assistant",
        "content": "Hello! I'm Shannon, your AI assistant. How can I help you today?"
      },
      "finish_reason": "stop"
    }
  ],
  "usage": {
    "prompt_tokens": 25,
    "completion_tokens": 18,
    "total_tokens": 43
  }
}

API Playground

નવું

તમારા બ્રાઉઝરમાં સીધું Shannon API ટેસ્ટ કરો. રિક્વેસ્ટ બનાવો, ચલાવો અને રિયલ‑ટાઇમમાં પ્રતિસાદ જુઓ.

1

Chat, Responses, Messages

Switch across OpenAI Chat Completions, Responses, and Anthropic Messages without leaving the playground.

2

Stream live output

Run real requests, inspect raw JSON, and view stream events from the same operator console.

3

Reuse your key

Signed-in users can pull their Shannon API key straight into the dedicated playground workspace.

/gu/docs/playground

The playground now lives on its own route so the API docs stay Astro-rendered while the request builder remains an explicitly interactive client tool.

Playground અજમાવો V2 API કી મેળવો

પ્રમાણિકરણ

બધી API રિક્વેસ્ટ્સ માટે Shannon API કી સાથે પ્રમાણિકરણ જરૂરી છે.

OpenAI ફોર્મેટ (ભલામણ કરેલું)

HTTP
Authorization: Bearer YOUR_API_KEY

Anthropic ફોર્મેટ

HTTP
X-API-Key: YOUR_API_KEY
anthropic-version: 2023-06-01

મોડલ્સ

Shannon વિવિધ ઉપયોગ માટે ઑપ્ટિમાઇઝ્ડ અનેક મોડલ્સ આપે છે.

AI
shannon-1.6-lite Shannon 1.6 Lite

દૈનિક કાર્યો માટે ઝડપી, કાર્યક્ષમ જવાબો

સંદર્ભ 128K
શ્રેષ્ઠ માટે ચેટ, Q&A, કન્ટેન્ટ જનરેશન
AI
shannon-1.6-pro Shannon 1.6 Pro

જટિલ સમસ્યાઓ માટે એડવાન્સ્ડ રિઝનિંગ

સંદર્ભ 128K
શ્રેષ્ઠ માટે વિશ્લેષણ, સંશોધન, જટિલ કાર્યો
AI
shannon-2-lite Shannon 2 Lite

સંદર્ભ 128K
શ્રેષ્ઠ માટે
AI
shannon-2-pro Shannon 2 Pro

સંદર્ભ 128K
શ્રેષ્ઠ માટે
AI
shannon-coder-1 Shannon Coder

કોલ‑આધારિત ક્વોટા સાથે Claude Code CLI માટે ઑપ્ટિમાઇઝ્ડ

સંદર્ભ 128K
શ્રેષ્ઠ માટે કોડ જનરેશન, ટૂલ ઉપયોગ, CLI ઇન્ટિગ્રેશન
કોલ આધારિત ક્વોટા

ફંક્શન કોલિંગ

ટૂલ્સ નિર્ધારિત કરો જેને Shannon ક્રિયાઓ કરવા અથવા માહિતી મેળવવા માટે કોલ કરી શકે.

Python
from openai import OpenAI
import json

client = OpenAI(
    api_key="YOUR_API_KEY",
    base_url="https://api.shannon-ai.com/v1"
)

# Define available tools/functions
tools = [
    {
        "type": "function",
        "function": {
            "name": "get_weather",
            "description": "Get current weather for a location",
            "parameters": {
                "type": "object",
                "properties": {
                    "location": {
                        "type": "string",
                        "description": "City name, e.g., 'Tokyo'"
                    },
                    "unit": {
                        "type": "string",
                        "enum": ["celsius", "fahrenheit"]
                    }
                },
                "required": ["location"]
            }
        }
    }
]

response = client.chat.completions.create(
    model="shannon-1.6-lite",
    messages=[{"role": "user", "content": "What's the weather in Tokyo?"}],
    tools=tools,
    tool_choice="auto"
)

# Check if model wants to call a function
if response.choices[0].message.tool_calls:
    tool_call = response.choices[0].message.tool_calls[0]
    print(f"Function: {tool_call.function.name}")
    print(f"Arguments: {tool_call.function.arguments}")
JavaScript
import OpenAI from 'openai';

const client = new OpenAI({
  apiKey: 'YOUR_API_KEY',
  baseURL: 'https://api.shannon-ai.com/v1'
});

const tools = [
  {
    type: 'function',
    function: {
      name: 'get_weather',
      description: 'Get current weather for a location',
      parameters: {
        type: 'object',
        properties: {
          location: { type: 'string', description: "City name" },
          unit: { type: 'string', enum: ['celsius', 'fahrenheit'] }
        },
        required: ['location']
      }
    }
  }
];

const response = await client.chat.completions.create({
  model: 'shannon-1.6-lite',
  messages: [{ role: 'user', content: "What's the weather in Tokyo?" }],
  tools,
  tool_choice: 'auto'
});

if (response.choices[0].message.tool_calls) {
  const toolCall = response.choices[0].message.tool_calls[0];
  console.log('Function:', toolCall.function.name);
  console.log('Arguments:', toolCall.function.arguments);
}

ટૂલ પસંદગી વિકલ્પો

"auto" મોડલ નક્કી કરે કે ફંક્શન કોલ કરવું કે નહીં (ડિફૉલ્ટ)
"none" આ વિનંતી માટે ફંક્શન કોલિંગ નિષ્ક્રિય કરો
{"type": "function", "function": {"name": "..."}} નિર્ધારિત ફંક્શન કોલ માટે ફરજિયાત

ફંક્શન કોલ પ્રતિસાદ

જ્યારે મોડલ ફંક્શન કોલ કરે
{
  "id": "chatcmpl-xyz",
  "choices": [
    {
      "index": 0,
      "message": {
        "role": "assistant",
        "content": null,
        "tool_calls": [
          {
            "id": "call_abc123",
            "type": "function",
            "function": {
              "name": "get_weather",
              "arguments": "{\"location\": \"Tokyo\", \"unit\": \"celsius\"}"
            }
          }
        ]
      },
      "finish_reason": "tool_calls"
    }
  ]
}

રચિત આઉટપુટ્સ

Shannon ને માન્ય JSON માં જવાબ આપવા માટે મજબૂર કરો જે તમારી સ્કીમા સાથે મેળ ખાતો હોય.

Python
from openai import OpenAI

client = OpenAI(
    api_key="YOUR_API_KEY",
    base_url="https://api.shannon-ai.com/v1"
)

# Force JSON output with schema
response = client.chat.completions.create(
    model="shannon-1.6-lite",
    messages=[
        {"role": "user", "content": "Extract: John Doe, 30 years old, engineer"}
    ],
    response_format={
        "type": "json_schema",
        "json_schema": {
            "name": "person_info",
            "schema": {
                "type": "object",
                "properties": {
                    "name": {"type": "string"},
                    "age": {"type": "integer"},
                    "occupation": {"type": "string"}
                },
                "required": ["name", "age", "occupation"]
            }
        }
    }
)

import json
data = json.loads(response.choices[0].message.content)
print(data)  # {"name": "John Doe", "age": 30, "occupation": "engineer"}
JavaScript
import OpenAI from 'openai';

const client = new OpenAI({
  apiKey: 'YOUR_API_KEY',
  baseURL: 'https://api.shannon-ai.com/v1'
});

const response = await client.chat.completions.create({
  model: 'shannon-1.6-lite',
  messages: [
    { role: 'user', content: 'Extract: John Doe, 30 years old, engineer' }
  ],
  response_format: {
    type: 'json_schema',
    json_schema: {
      name: 'person_info',
      schema: {
        type: 'object',
        properties: {
          name: { type: 'string' },
          age: { type: 'integer' },
          occupation: { type: 'string' }
        },
        required: ['name', 'age', 'occupation']
      }
    }
  }
});

const data = JSON.parse(response.choices[0].message.content);
console.log(data); // { name: "John Doe", age: 30, occupation: "engineer" }

Response format વિકલ્પો

{"type": "json_object"} માન્ય JSON output ફરજિયાત (ખાસ સ્કીમા વગર)
{"type": "json_schema", "json_schema": {...}} તમારી ચોક્કસ સ્કીમા મેળ ખાતો output ફરજિયાત

સ્ટ્રીમિંગ

પ્રતિસાદી UI માટે Server‑Sent Events સાથે રિયલ‑ટાઇમ ટોકન સ્ટ્રીમિંગ સક્રિય કરો.

Python
from openai import OpenAI

client = OpenAI(
    api_key="YOUR_API_KEY",
    base_url="https://api.shannon-ai.com/v1"
)

# Enable streaming for real-time responses
stream = client.chat.completions.create(
    model="shannon-1.6-lite",
    messages=[
        {"role": "user", "content": "Write a short poem about AI"}
    ],
    stream=True
)

for chunk in stream:
    if chunk.choices[0].delta.content:
        print(chunk.choices[0].delta.content, end="", flush=True)
JavaScript
import OpenAI from 'openai';

const client = new OpenAI({
  apiKey: 'YOUR_API_KEY',
  baseURL: 'https://api.shannon-ai.com/v1'
});

// Enable streaming for real-time responses
const stream = await client.chat.completions.create({
  model: 'shannon-1.6-lite',
  messages: [
    { role: 'user', content: 'Write a short poem about AI' }
  ],
  stream: true
});

for await (const chunk of stream) {
  const content = chunk.choices[0]?.delta?.content;
  if (content) process.stdout.write(content);
}
ટીપ: Streaming પ્રતિસાદો Server‑Sent Events તરીકે આવે છે. દરેક chunk માં ભાગ્યિક કન્ટેન્ટ સાથે delta હોય છે.

Built‑in Web Search

Shannon માં built-in web_search ફંક્શન છે જે આપમેળે ઉપલબ્ધ છે.

Python
from openai import OpenAI

client = OpenAI(
    api_key="YOUR_API_KEY",
    base_url="https://api.shannon-ai.com/v1"
)

# Web search is automatically available!
# Shannon will use it when needed for current information

response = client.chat.completions.create(
    model="shannon-1.6-lite",
    messages=[
        {"role": "user", "content": "What are the latest AI news today?"}
    ],
    # Optionally, explicitly define web_search tool
    tools=[{
        "type": "function",
        "function": {
            "name": "web_search",
            "description": "Search the web for current information",
            "parameters": {
                "type": "object",
                "properties": {
                    "query": {"type": "string", "description": "Search query"}
                },
                "required": ["query"]
            }
        }
    }]
)

print(response.choices[0].message.content)
# Response includes sources and citations
JavaScript
import OpenAI from 'openai';

const client = new OpenAI({
  apiKey: 'YOUR_API_KEY',
  baseURL: 'https://api.shannon-ai.com/v1'
});

// Web search is automatically available!
// Shannon will use it when needed for current information

const response = await client.chat.completions.create({
  model: 'shannon-1.6-lite',
  messages: [
    { role: 'user', content: 'What are the latest AI news today?' }
  ],
  // Optionally, explicitly define web_search tool
  tools: [{
    type: 'function',
    function: {
      name: 'web_search',
      description: 'Search the web for current information',
      parameters: {
        type: 'object',
        properties: {
          query: { type: 'string', description: 'Search query' }
        },
        required: ['query']
      }
    }
  }]
});

console.log(response.choices[0].message.content);
// Response includes sources and citations
પ્રો ટીપ: વેબ સર્ચ પરિણામોમાં સાઇટેશન્સ હોય છે. Shannon આપમેળે સોર્સનો ઉલ્લેખ કરે છે.

Anthropic ફોર્મેટ

Shannon Anthropic Messages API ફોર્મેટને પણ સપોર્ટ કરે છે.

https://api.shannon-ai.com/v1/messages
Python
import anthropic

client = anthropic.Anthropic(
    api_key="YOUR_API_KEY",
    base_url="https://api.shannon-ai.com/messages"
)

response = client.messages.create(
    model="shannon-1.6-lite",
    max_tokens=1024,
    messages=[
        {"role": "user", "content": "Hello, Shannon!"}
    ],
    # Tool use (Anthropic format)
    tools=[{
        "name": "web_search",
        "description": "Search the web",
        "input_schema": {
            "type": "object",
            "properties": {
                "query": {"type": "string"}
            },
            "required": ["query"]
        }
    }]
)

print(response.content[0].text)
JavaScript
import Anthropic from '@anthropic-ai/sdk';

const client = new Anthropic({
  apiKey: 'YOUR_API_KEY',
  baseURL: 'https://api.shannon-ai.com/messages'
});

const response = await client.messages.create({
  model: 'shannon-1.6-lite',
  max_tokens: 1024,
  messages: [
    { role: 'user', content: 'Hello, Shannon!' }
  ],
  // Tool use (Anthropic format)
  tools: [{
    name: 'web_search',
    description: 'Search the web',
    input_schema: {
      type: 'object',
      properties: {
        query: { type: 'string' }
      },
      required: ['query']
    }
  }]
});

console.log(response.content[0].text);
જરૂરી હેડર: Anthropic ફોર્મેટ માટે anthropic-version: 2023-06-01 જરૂરી છે.

SDKs

સંગત

કોઈપણ OpenAI અથવા Anthropic SDK વાપરો — ફક્ત base URL બદલો.

OpenAI‑સંગત SDKs

SDK Python

સત્તાવાર OpenAI Python SDK - Shannon સાથે કામ કરે છે

pip install openai
ડોક્સ જુઓ ->
SDK JavaScript / TypeScript

સત્તાવાર OpenAI Node.js SDK - Shannon સાથે કામ કરે છે

npm install openai
ડોક્સ જુઓ ->
SDK Go

OpenAI‑સંગત APIs માટે સમુદાય Go ક્લાયન્ટ

go get github.com/sashabaranov/go-openai
ડોક્સ જુઓ ->
SDK Ruby

OpenAI‑સંગત APIs માટે સમુદાય Ruby ક્લાયન્ટ

gem install ruby-openai
ડોક્સ જુઓ ->
SDK PHP

OpenAI‑સંગત APIs માટે સમુદાય PHP ક્લાયન્ટ

composer require openai-php/client
ડોક્સ જુઓ ->
SDK Rust

OpenAI‑સંગત APIs માટે Async Rust ક્લાયન્ટ

cargo add async-openai
ડોક્સ જુઓ ->

Anthropic‑સંગત SDKs

SDK Python (Anthropic)

સત્તાવાર Anthropic Python SDK - Shannon સાથે કામ કરે છે

pip install anthropic
ડોક્સ જુઓ ->
SDK TypeScript (Anthropic)

સત્તાવાર Anthropic TypeScript SDK - Shannon સાથે કામ કરે છે

npm install @anthropic-ai/sdk
ડોક્સ જુઓ ->

ભૂલ સંભાળ

Shannon સ્ટાન્ડર્ડ HTTP સ્ટેટસ કોડ્સ વાપરે છે અને વિગતવાર ભૂલ સંદેશો આપે છે.

400 ખોટી વિનંતી અયોગ્ય વિનંતી ફોર્મેટ અથવા પેરામીટર્સ
401 અધિકૃત નથી અયોગ્ય અથવા ગેરહાજર API કી
402 ક્વોટા વટાવી ટોકન અથવા શોધ ક્વોટા વટાઈ
429 રેટ લિમિટ ઘણી વિનંતીઓ, ધીમા કરો
500 સર્વર ભૂલ આંતરિક ભૂલ, પછી પ્રયાસ કરો

ભૂલ પ્રતિસાદ ફોર્મેટ

ભૂલ પ્રતિસાદ
{
  "error": {
    "message": "Invalid API key provided",
    "type": "authentication_error",
    "code": "invalid_api_key"
  }
}

બદલાવ નોંધ

LOG

Shannon API માટે તાજા અપડેટ્સ અને સુધારા.

v2.1.0
2025-01-03
  • નવું Claude Code CLI માટે shannon-coder-1 મોડલ ઉમેર્યું
  • નવું Coder મોડલ માટે કોલ‑આધારિત ક્વોટા સિસ્ટમ
  • સુધારેલ ફંક્શન કોલિંગ વિશ્વસનીયતા સુધારી
v2.0.0
2024-12-15
  • નવું Anthropic Messages API સુસંગતતા ઉમેરાઈ
  • નવું Multi-turn tool execution (10 iterations સુધી)
  • નવું JSON Schema જવાબ ફોર્મેટ સપોર્ટ
  • સુધારેલ વધુ સારા citations સાથે વેબ સર્ચ સુધાર્યું
v1.5.0
2024-11-20
  • નવું જટિલ રિઝનિંગ માટે shannon-deep-dapo મોડલ ઉમેર્યું
  • નવું Built-in web_search ફંક્શન
  • સુધારેલ Streaming જવાબો માટે લેટન્સી ઘટાડેલી
v1.0.0
2024-10-01
  • નવું પ્રારંભિક API રિલીઝ
  • નવું OpenAI‑સંગત chat completions endpoint
  • નવું ફંક્શન કોલિંગ સપોર્ટ
  • નવું Server‑Sent Events દ્વારા Streaming

તમારી API કી

ઍક્સેસ
OpenAI કોલ્સ માટે Bearer ટોકન અથવા X-API-Key + anthropic-version વાપરો.
YOUR_API_KEY
API કી મેળવો

તમારી API કી ગુપ્ત રાખો. ફરી જનરેટ કરવાથી નવી કી બને છે અને જૂની અયોગ્ય બને છે.

વર્જન: 1
છેલ્લે રોટેટ: ક્યારેય નહીં
છેલ્લે વપરાયું: ક્યારેય નહીં

તમારો ઉપયોગ

સાઇન ઇન હોવા પર આ પેજ પર ટોકન અને શોધ વપરાશ જુઓ.

-- API કોલ્સ
-- વપરાયેલા ટોકન્સ

Shannon Coder (shannon-coder-1)

Shannon Coder (shannon-coder-1) માટે કોલ‑આધારિત ક્વોટા. દરેક 4 કલાકે રિસેટ થાય છે.

0 વપરાયેલા કોલ્સ
0 બાકી કોલ્સ

બિલ્ડ કરવા તૈયાર?

તમારી API કી મેળવો અને Shannon AI સાથે આજે બિલ્ડ કરવાનું શરૂ કરો.

તમારી API કી મેળવો મુલ્ય જુઓ

લોકપ્રિય શોધો:

ભિન્ન કીવર્ડ અજમાવો
નેવિગેટ કરો: ↑ ↓ પસંદ કરો: Enter બંધ કરો: Esc