-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f119123
commit a102548
Showing
7 changed files
with
40 additions
and
18 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
/** | ||
* This file was auto-generated by Fern from our API Definition. | ||
*/ | ||
|
||
import * as Zep from ".."; | ||
|
||
export interface ModelsMessageListResponse { | ||
messages?: Zep.Message[]; | ||
rowCount?: number; | ||
totalCount?: number; | ||
} |
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
15 changes: 0 additions & 15 deletions
15
src/serialization/resources/memory/client/getSessionMessages.ts
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,5 +1,4 @@ | ||
export * as listSessions from "./listSessions"; | ||
export * as extractSessionData from "./extractSessionData"; | ||
export * as getSessionMessages from "./getSessionMessages"; | ||
export * as search from "./search"; | ||
export * from "./requests"; |
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,25 @@ | ||
/** | ||
* This file was auto-generated by Fern from our API Definition. | ||
*/ | ||
|
||
import * as serializers from ".."; | ||
import * as Zep from "../../api"; | ||
import * as core from "../../core"; | ||
import { Message } from "./Message"; | ||
|
||
export const ModelsMessageListResponse: core.serialization.ObjectSchema< | ||
serializers.ModelsMessageListResponse.Raw, | ||
Zep.ModelsMessageListResponse | ||
> = core.serialization.object({ | ||
messages: core.serialization.list(Message).optional(), | ||
rowCount: core.serialization.property("row_count", core.serialization.number().optional()), | ||
totalCount: core.serialization.property("total_count", core.serialization.number().optional()), | ||
}); | ||
|
||
export declare namespace ModelsMessageListResponse { | ||
interface Raw { | ||
messages?: Message.Raw[] | null; | ||
row_count?: number | null; | ||
total_count?: number | null; | ||
} | ||
} |
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