Skip to content

Commit

Permalink
chore: remove search limit
Browse files Browse the repository at this point in the history
  • Loading branch information
144757737+oxf71@users.noreply.github.com committed Jan 16, 2025
1 parent 53701d8 commit ee5aee0
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/adapter-qdrant/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,6 @@ export class QdrantDatabaseAdapter extends DatabaseAdapter<QdrantClient> imple
}
const rows = await this.db.search(this.collectionName, {
vector: Array.from(params.embedding),
limit: 30,
with_vector: true
});

Expand Down Expand Up @@ -359,6 +358,11 @@ export class QdrantDatabaseAdapter extends DatabaseAdapter<QdrantClient> imple
async updateGoalStatus(params: { goalId: UUID; status: GoalStatus }): Promise<void> {
return Promise.resolve(undefined);
}

getMemoriesByIds(memoryIds: UUID[], tableName?: string): Promise<Memory[]> {
throw new Error("Method not implemented.");
}

async getCache(params: {
key: string;
agentId: UUID;
Expand Down

0 comments on commit ee5aee0

Please sign in to comment.