Replies: 8 comments
-
and no bug message throw 。。 |
Beta Was this translation helpful? Give feedback.
-
just message |
Beta Was this translation helpful? Give feedback.
-
serverless mode process speed need upgrade , whatshould I do? |
Beta Was this translation helpful? Give feedback.
-
I tested example 003 using this initialization and everything worked fine:
Could you provide more details about the code you're executing? Are you customizing the ingestion steps perhaps? |
Beta Was this translation helpful? Give feedback.
-
here is the code now work well . the upload function:
} |
Beta Was this translation helpful? Give feedback.
-
when upload , the speed is slow. how can i optimize my code ? now the pipline executing in memory. when i use disk, the pipline excuteing with warning :text partitions not found, cannot generate embeddings, moving to next pipeline step. |
Beta Was this translation helpful? Give feedback.
-
thanks for reply. see the code up |
Beta Was this translation helpful? Give feedback.
-
and MemoryServerless mode may used a lot. we may not use KM as a service deployed in server. we will use it as a component integrated into the app. haha |
Beta Was this translation helpful? Give feedback.
-
Context / Scenario
IKernelMemory kernelMemory = new KernelMemoryBuilder()
.WithCustomTextGenerator(new OneApiTextGenerator(options, _chatService))
.WithCustomEmbeddingGenerator(new OneApiTextEmbeddingGenerator(options, _chatService))
.WithCustomImageOcr(new HwsOcrEngine(_hwsService))
.WithSimpleFileStorage(new SimpleFileStorageConfig { StorageType = FileSystemTypes.Disk })
.WithQdrantMemoryDb(new QdrantConfig() { Endpoint = "http://10.187.80.248:6333", APIKey = "", DefaultIndex = DocumentMemorySettings.MemoryIndexName })
//.WithCustomTextPartitioningOptions(new TextPartitioningOptions
//{
// MaxTokensPerParagraph = 299,
// MaxTokensPerLine = 99,
// OverlappingTokens = 47,
//})
.Build();
Question
by using this config the vectordb index can not created and the data can not insert into the db . why?
Beta Was this translation helpful? Give feedback.
All reactions