Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 17 additions & 7 deletions fern/apis/docs-yml/definition/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -166,15 +166,25 @@ types:

TabId: string

AIChatConfig:
properties:
AISearchLocation:
enum:
- docs
- slack
- discord
- teams

AIChatConfig:
properties:
model: optional<AIChatModel>
"system-prompt":
"system-prompt":
type: optional<string>
docs: This is a system prompt that acts as context given to the LLM for AI chat.

AIChatModel:
enum:
docs: This is a system prompt that acts as context given to the LLM for AI chat.
location:
type: optional<list<AISearchLocation>>
docs: Determines where Ask Fern will be available to users. Can include docs, slack, discord, or teams.

AIChatModel:
enum:
- value: "claude-3.5"
name: claude_3_5
- value: "claude-3.7"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ ai-search:
- docs
- slack
- discord
- teams
```

### Available locations
Expand All @@ -31,6 +32,10 @@ ai-search:
Enables Ask Fern in Discord. This allows your community to get AI-powered answers in your Discord server.
</ParamField>

<ParamField path="teams" type="string">
Enables Ask Fern in Microsoft Teams. This allows your team to get AI-powered answers in your Teams workspace.
</ParamField>

## Datasources (coming soon)

The `datasources` field allows you to specify additional content sources that Ask Fern should index and search. This is useful when you want to include content from external websites or documentation that isn't part of your main docs.
Expand Down
Loading