Skip to content

tmf ask — Query Provider Details

Description

tmf ask queries detailed configuration for a specific LLM provider, including API URL templates, supported models, protocol info, and usage notes. Data comes directly from the TokenMF provider database.

Syntax

bash
tmf ask <provider>
  • <provider> — Provider name, e.g. deepseek, openai, claude

Output

tmf ask returns the following information:

FieldDescription
Provider nameDisplay name and identifier
IntroBrief introduction
WebsiteOfficial website
Default modelDefault model
API URLAPI endpoint templates per protocol
Available modelsAll available model names
UpdatedLast update timestamp

Examples

bash
# Query DeepSeek provider details
tmf ask deepseek

Example output:

🔍 DeepSeek
  Intro: DeepSeek Official API
  Website: https://platform.deepseek.com
  Default model: deepseek-chat
  API URL (openai): https://api.deepseek.com/v1
  Available models: deepseek-chat, deepseek-reasoner
  Updated: 2026-06-20T08:00:00Z
bash
# Query OpenAI provider details
tmf ask openai

Example output:

🔍 OpenAI
  Intro: OpenAI Official API
  Website: https://platform.openai.com
  Default model: gpt-4o
  API URL (openai): https://api.openai.com/v1
  Available models: gpt-4o, gpt-4o-mini, gpt-4-turbo
  Updated: 2026-06-19T12:00:00Z

Debugging

Add --debug to see request URLs and response status codes:

bash
tmf ask deepseek --debug

MIT License