mirror of
https://github.com/langbot-app/LangBot.git
synced 2026-08-13 06:00:58 +00:00
89bcf82518
Restore individual provider requester implementations that were
removed in de61b5d3. These files coexist with the unified
litellmchat.py backend.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
32 lines
586 B
YAML
32 lines
586 B
YAML
apiVersion: v1
|
|
kind: LLMAPIRequester
|
|
metadata:
|
|
name: anthropic-messages
|
|
label:
|
|
en_US: Anthropic
|
|
zh_Hans: Anthropic
|
|
icon: anthropic.svg
|
|
spec:
|
|
config:
|
|
- name: base_url
|
|
label:
|
|
en_US: Base URL
|
|
zh_Hans: 基础 URL
|
|
type: string
|
|
required: true
|
|
default: https://api.anthropic.com
|
|
- name: timeout
|
|
label:
|
|
en_US: Timeout
|
|
zh_Hans: 超时时间
|
|
type: integer
|
|
required: true
|
|
default: 120
|
|
support_type:
|
|
- llm
|
|
provider_category: manufacturer
|
|
execution:
|
|
python:
|
|
path: ./anthropicmsgs.py
|
|
attr: AnthropicMessages
|