Skip to content

Commit

Permalink
SDK regeneration
Browse files Browse the repository at this point in the history
  • Loading branch information
fern-api[bot] committed Sep 24, 2024
1 parent 78ffb5b commit 1d75c89
Show file tree
Hide file tree
Showing 6 changed files with 2 additions and 31 deletions.
2 changes: 1 addition & 1 deletion src/api/resources/memory/client/Client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -716,7 +716,7 @@ export class Memory {
const { lastn, minRating } = request;
const _queryParams: Record<string, string | string[] | object | object[]> = {};
if (lastn != null) {
_queryParams["lastn"] = lastn;
_queryParams["lastn"] = lastn.toString();
}

if (minRating != null) {
Expand Down
4 changes: 1 addition & 3 deletions src/api/resources/memory/client/requests/MemoryGetRequest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@
* This file was auto-generated by Fern from our API Definition.
*/

import * as Zep from "../../../../index";

/**
* @example
* {}
Expand All @@ -12,7 +10,7 @@ export interface MemoryGetRequest {
/**
* The number of most recent memory entries to retrieve.
*/
lastn?: Zep.MemoryType;
lastn?: number;
/**
* The minimum rating by which to filter facts
*/
Expand Down
11 changes: 0 additions & 11 deletions src/api/types/MemoryType.ts

This file was deleted.

1 change: 0 additions & 1 deletion src/api/types/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,3 @@ export * from "./FactRatingExamples";
export * from "./FactRatingInstruction";
export * from "./SearchScope";
export * from "./SearchType";
export * from "./MemoryType";
14 changes: 0 additions & 14 deletions src/serialization/types/MemoryType.ts

This file was deleted.

1 change: 0 additions & 1 deletion src/serialization/types/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,3 @@ export * from "./FactRatingExamples";
export * from "./FactRatingInstruction";
export * from "./SearchScope";
export * from "./SearchType";
export * from "./MemoryType";

0 comments on commit 1d75c89

Please sign in to comment.