> ## Documentation Index
> Fetch the complete documentation index at: https://docs.blackquantlabs.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Effective graph configuration

> The configuration in force, with anything credential-shaped removed.



## OpenAPI

````yaml /api/openapi.json get /v1/config
openapi: 3.1.0
info:
  title: BlackQuant TradingAgents API
  description: >

    An HTTP API over the
    [TradingAgents](https://github.com/TauricResearch/TradingAgents)

    multi-agent LLM trading framework by Tauric Research, used under Apache-2.0.


    ## Analyses are asynchronous


    A single analysis runs a full multi-agent debate and takes **minutes**, not

    seconds. `POST /v1/analyses` therefore returns a job reference immediately
    and

    the result is collected by polling `GET /v1/analyses/{id}`.


    ## Ratings


    A completed analysis carries one of `Buy`, `Overweight`, `Hold`,
    `Underweight`,

    `Sell` — or `REVIEW`.


    `REVIEW` is **not** a weak Hold. It means the run produced no parseable
    rating,

    so there is no opinion to act on. Check `is_review` before reading `rating`.


    ## This API places no orders


    Nothing here can move money. It starts analyses and returns what they
    decided.
  version: 0.1.0
servers:
  - url: http://127.0.0.1:8900
    description: Local
security: []
tags:
  - name: Analyses
    description: Start, poll and cancel analyses.
  - name: Service
    description: Health and effective configuration.
paths:
  /v1/config:
    get:
      tags:
        - Service
      summary: Effective graph configuration
      description: The configuration in force, with anything credential-shaped removed.
      operationId: config_v1_config_get
      parameters:
        - name: X-API-Key
          in: header
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: X-Api-Key
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EffectiveConfig'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
        '503':
          description: TradingAgents unavailable
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    EffectiveConfig:
      properties:
        llm_provider:
          anyOf:
            - type: string
            - type: 'null'
          title: Llm Provider
        deep_think_llm:
          anyOf:
            - type: string
            - type: 'null'
          title: Deep Think Llm
        quick_think_llm:
          anyOf:
            - type: string
            - type: 'null'
          title: Quick Think Llm
        max_debate_rounds:
          anyOf:
            - type: integer
            - type: 'null'
          title: Max Debate Rounds
        max_risk_discuss_rounds:
          anyOf:
            - type: integer
            - type: 'null'
          title: Max Risk Discuss Rounds
        online_tools:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Online Tools
      type: object
      title: EffectiveConfig
      description: >-
        The graph configuration actually in force, with credentials removed.


        Exposed because a run's cost and behaviour are decided almost entirely
        by

        these values, and reading them from a running service beats inferring
        them

        from whichever `.env` you think is loaded.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    Error:
      properties:
        detail:
          type: string
          title: Detail
      type: object
      required:
        - detail
      title: Error
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````