forked from Chainlit/chainlit
-
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.
* Bump literalai depdendency. * Update literalai imports * Remove unused imports from SQLAlchemy tests. * Unit tests for LiteralDataLayer. * Consistent LiteralAI to Chainlit conversion, resolve PaginatedResponse exceptions. - Create LiteralToChainlitConverter class for handling conversions - Implement methods for converting steps, threads, and attachments - Add support for different Element subclasses based on metadata - Allow manual setting of thread_id and id for Step and Element * Attempt to satisfy mypy (plus cleaner approach). * feat: add realtime audio * fix: default config * fix: lint --------- Co-authored-by: Mathijs de Bruin <[email protected]> Co-authored-by: EWouters <[email protected]>
- Loading branch information
1 parent
79639b6
commit 8882619
Showing
36 changed files
with
2,007 additions
and
400 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
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
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "chainlit" | ||
version = "1.3.0rc0" | ||
version = "1.3.0rc1" | ||
keywords = [ | ||
'LLM', | ||
'Agents', | ||
|
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,26 @@ | ||
import SvgIcon, { SvgIconProps } from '@mui/material/SvgIcon'; | ||
|
||
const MicrophoneOffIcon = (props: SvgIconProps) => { | ||
return ( | ||
<SvgIcon | ||
{...props} | ||
style={{ | ||
strokeLinecap: 'round', | ||
strokeLinejoin: 'round', | ||
strokeWidth: 2, | ||
fill: 'none', | ||
stroke: 'currentColor' | ||
}} | ||
viewBox="0 0 24 24" | ||
> | ||
<line x1="2" x2="22" y1="2" y2="22" /> | ||
<path d="M18.89 13.23A7.12 7.12 0 0 0 19 12v-2" /> | ||
<path d="M5 10v2a7 7 0 0 0 12 5" /> | ||
<path d="M15 9.34V5a3 3 0 0 0-5.68-1.33" /> | ||
<path d="M9 9v3a3 3 0 0 0 5.12 2.12" /> | ||
<line x1="12" x2="12" y1="19" y2="22" /> | ||
</SvgIcon> | ||
); | ||
}; | ||
|
||
export default MicrophoneOffIcon; |
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
Oops, something went wrong.