deepvista-chat

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

Chat

聊天

PREREQUISITE: Read deepvista-shared for auth, profiles, and global flags.
Chat with the DeepVista AI agent. The agent can search your knowledge base, create cards, run web searches, and execute tools.
前置要求: 阅读 deepvista-shared 了解身份验证、配置文件和全局标志相关内容。
与DeepVista AI Agent聊天。该Agent可以搜索你的知识库、创建卡片、执行网页搜索以及运行各类工具。

Commands

命令

sessions

sessions

bash
deepvista --profile local chat sessions [--limit N] [--offset N] [--search "query"]
Read-only — list chat sessions.
bash
deepvista --profile local chat sessions [--limit N] [--offset N] [--search "query"]
只读 — 列出所有聊天会话。

get

get

bash
deepvista --profile local chat get <chat_id>
Read-only — get a chat session with all pages.
bash
deepvista --profile local chat get <chat_id>
只读 — 获取包含所有消息页的单个聊天会话内容。

delete

delete

bash
deepvista --profile local chat delete <chat_id>
[!CAUTION] Destructive command — confirm with user before executing.
bash
deepvista --profile local chat delete <chat_id>
[!CAUTION] 破坏性命令 — 执行前请先向用户确认。

+send

+send

bash
deepvista --profile local chat +send "your message" [--chat-id ID] [--new]
[!CAUTION] This is a write command — creates/updates chat sessions and the agent may create cards, search the web, and take other actions. Confirm with the user before executing.
FlagRequiredDefaultDescription
<message>
YesYour message to the agent
--chat-id
NoContinue an existing chat session
--new
NofalseForce start a new conversation
Output is NDJSON (one JSON object per line) — each line is an SSE event from the agent's streaming response.
  • Use
    --new
    to force a fresh conversation context.
  • Without
    --chat-id
    or
    --new
    , the agent may auto-select or create a session.
  • The agent has access to your full knowledge base and can create/update cards during the conversation.
bash
deepvista --profile local chat +send "your message" [--chat-id ID] [--new]
[!CAUTION] 这是一个写入命令 — 会创建/更新聊天会话,且Agent可能会创建卡片、搜索网页以及执行其他操作。执行前请先向用户确认。
标志是否必填默认值说明
<message>
你要发送给Agent的消息
--chat-id
继续现有聊天会话
--new
false强制开启新对话
输出格式为NDJSON(每行一个JSON对象)—— 每一行对应Agent流式响应返回的一个SSE事件。
  • 使用
    --new
    参数强制开启全新的对话上下文。
  • 若未指定
    --chat-id
    也未指定
    --new
    ,Agent可能会自动选择已有会话或创建新会话。
  • Agent有权限访问你的全部知识库,且可在对话过程中创建/更新卡片。

Examples

示例

bash
undefined
bash
undefined

Send a message (new conversation)

发送消息(新对话)

deepvista --profile local chat +send "What are my open tasks?" --new
deepvista --profile local chat +send "What are my open tasks?" --new

Continue an existing conversation

继续已有对话

deepvista --profile local chat +send "Tell me more about the first one" --chat-id chat_abc
deepvista --profile local chat +send "Tell me more about the first one" --chat-id chat_abc

Ask the agent to create a note

要求Agent创建笔记

deepvista --profile local chat +send "Create a note summarizing our ML strategy discussion"
deepvista --profile local chat +send "Create a note summarizing our ML strategy discussion"

List recent sessions

列出最近的会话

deepvista --profile local chat sessions --limit 5
deepvista --profile local chat sessions --limit 5

Search sessions

搜索会话

deepvista --profile local chat sessions --search "roadmap"
undefined
deepvista --profile local chat sessions --search "roadmap"
undefined

See Also

另请参阅

  • deepvista-shared — Auth and global flags
  • deepvista-shared — 身份验证与全局标志