Skip to content

Commit

Permalink
docs: updating the release note
Browse files Browse the repository at this point in the history
  • Loading branch information
ayangweb committed Feb 26, 2025
1 parent 7b4df60 commit de298d9
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
9 changes: 7 additions & 2 deletions docs/content.en/docs/release-notes/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,19 @@ Information about release notes of Coco Server is provided here.
## Latest (In development)

### Features

- Add timeout to fusion search #174
- Add api to disable or enable server #185
- Networked search supports selection of data sources #209

### Breaking changes

### Bug fix

- Fix to access deeplink for linux #148

### Improvements

- Improve app startup, init application search in background #172
- Refactoring login #173
- Init icons in background during start #176
Expand All @@ -29,8 +34,9 @@ Information about release notes of Coco Server is provided here.
## 0.1.0 (2015-02-16)

### Features

- Fusion Search
- Chat with AI Assistant
- Chat with AI Assistant
- RAG-based AI Chat
- General Settings
- Global Shortcut
Expand All @@ -44,4 +50,3 @@ Information about release notes of Coco Server is provided here.
### Bug fix

### Improvements

2 changes: 0 additions & 2 deletions src-tauri/src/assistant/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -159,9 +159,7 @@ pub async fn send_message<R: Runtime>(
session_id: String,
message: String,
query_params: Option<HashMap<String, String>>, //search,deep_thinking
datasource: String,
) -> Result<String, String> {
println!("datasource: {}", datasource);
let path = format!("/chat/{}/_send", session_id);
let msg = ChatRequestMessage {
message: Some(message),
Expand Down
4 changes: 1 addition & 3 deletions src/stores/searchStore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,7 @@ export const useSearchStore = create<ISearchStore>()(
sourceData: undefined,
setSourceData: (sourceData: any) => set({ sourceData }),
sourceDataIds: [],
setSourceDataIds: (sourceDataIds: string[]) => {
set({ sourceDataIds });
},
setSourceDataIds: (sourceDataIds: string[]) => set({ sourceDataIds }),
}),
{
name: "search-store",
Expand Down

0 comments on commit de298d9

Please # to comment.