-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10 from dimagi/sk/reorg
Some reorganization and fixes
- Loading branch information
Showing
17 changed files
with
204 additions
and
95 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
--- | ||
hide: | ||
- navigation | ||
--- | ||
# About Open Chat Studio | ||
|
||
[Dimagi](https://dimagi.com/) is developing Open Chat Studio (OCS) as an easy-to-use, open source platform for rapidly prototyping and testing chatbots created using Large Language Models (LLMs). Open Chat Studio makes it easy to develop and test LLM-based chatbots, and to instill a variety of guardrails to improve the safety and accuracy of these bots. | ||
|
||
Open Chat Studio can work with any LLM with an API such as the [OpenAI Chat Completions API](https://platform.openai.com/docs/guides/text-generation). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
--- | ||
title: Concepts | ||
description: Conceptual Guide for Open Chat Studio | ||
--- | ||
|
||
# Conceptual Guide | ||
|
||
This guide provides explanations of the key concepts behind the Open Chat Studio platform and AI applications more | ||
broadly. | ||
|
||
The conceptual guide does not cover step-by-step instructions or specific examples — those are found in | ||
the [How-to guides](../how-to/index.md). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
--- | ||
hide: | ||
- toc | ||
--- | ||
# Teams | ||
|
||
Open Chat Studio is a [multitenant](https://en.wikipedia.org/wiki/Multitenancy) platform that can support multiple organizations using the same instance at the same time. Each 'tenant' is called a 'team'. Teams are created by an organization and can have multiple members. Each team has its own settings and experiments. | ||
|
||
A user can be a member of multiple teams and have a different set of permissions in each team. | ||
|
||
A team serves as the root container for all data in Open Chat Studio. | ||
|
||
## Team configuration | ||
|
||
There is a set of global configuration that can be set at the team level. This includes: | ||
|
||
- LLM Service Providers | ||
- Speech Service Providers | ||
- Messaging Providers | ||
- [Authentication Providers](./authentication-providers.md) | ||
- [Custom Actions](./custom_actions.md) | ||
- Tracing providers | ||
|
||
<!--- TODO: user management --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
title: How-to Guides | ||
description: How to accomplish common tasks Open Chat Studio | ||
--- | ||
|
||
# How-to Guides | ||
|
||
Here you’ll find answers to “How do I...?” types of questions. These guides are **goal-oriented** and concrete; they're | ||
meant to help you complete a specific task. | ||
|
||
For conceptual explanations see the [Conceptual guide](../concepts/index.md). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,46 @@ | ||
site_name: Open Chat Studio Documentation | ||
site_url: https://dimagi.github.io/open-chat-studio-docs/ | ||
theme: | ||
name: material | ||
features: | ||
- header.autohide | ||
- navigation.expand | ||
- navigation.footer | ||
- navigation.indexes | ||
- navigation.instant | ||
- navigation.prune | ||
- navigation.sections | ||
- navigation.tabs | ||
- navigation.tabs.sticky | ||
- navigation.tracking | ||
- navigation.top | ||
- search.highlight | ||
- search.share | ||
- search.suggest | ||
- toc.follow | ||
copyright: Copyright © 2024 Dimagi | ||
|
||
markdown_extensions: | ||
- admonition | ||
- pymdownx.details | ||
- pymdownx.superfences | ||
- pymdownx.superfences | ||
|
||
nav: | ||
- Home: index.md | ||
- How-to Guides: | ||
- how-to/index.md | ||
- how-to/add_a_knowledge_base.md | ||
- how-to/remote_api.md | ||
- Concepts: | ||
- concepts/index.md | ||
- Experiments: | ||
- concepts/experiment/index.md | ||
- concepts/llm.md | ||
- concepts/prompt_variables.md | ||
- concepts/source_material.md | ||
- concepts/versioning.md | ||
- concepts/custom_actions.md | ||
- Team: | ||
- concepts/team/index.md | ||
- concepts/authentication-providers.md | ||
- About: about.md |
Oops, something went wrong.