@jurgenhaas I haven't see any theme names in the codes. Why this moudle are still not theme-agnostic?
@jurgenhaas Thank you! I set it, but it still didn't work as expected as the screenshot → . I checked the HTML source of both the Oliver and Claro themes of the page, no views_exposed_range_slider.js file loaded.
@jurgenhaas T'hank you very much! Now I enabled it there, however, I still cannot see any changes. I also tried configuring a number(integer) exposed fileld filter, no related configs there.
@bluegeek9 No, no luck.
fishfree → created an issue.
The same problem for Ollama models, even I selected the Arbitrary key.
fishfree → created an issue.
@seogow OK, THANK YOU!
fishfree → created an issue.
fishfree → created an issue.
fishfree → created an issue.
@scott, After pathing your commit, it seems working now. Many thanks!
fishfree → created an issue.
@scott Thank you! I run your code snippet as below:
function token_page_attachments_alter() {
$text = '我是一名退休教师,退休前我很难抽出时间去运动和锻炼,那时感觉自己处在一种亚健康的状态。退休后,我的时间充裕了,经过几年的坚持锻炼,我现在的身体素质比退休前还要好。单位每年组织体检,我的各项指标基本可以达标。在这里,我呼吁老年朋友多运动,多锻炼。立冬时气温降低,老年人外出运动时一定要穿着保暖透气的衣服,运动前做好准备活动,先热身、后运动。选择运动方式时,一定要适合自己。在运动中释放自己,保持好心情。';
/** @var \Drupal\ai\Utility\TextChunker $chunker */
$chunker = \Drupal::service('ai.text_chunker');
$chunker->setModel('openai__gpt-3.5-turbo');
$chunks = $chunker->chunkText($text, 100, 0);
dpm($chunks);
}
It printed out as below:
array:3 [
0 => "我是一名退休教师,退休前我很难抽出时间去运动和锻炼,那时感觉自己处在一种亚健康的状态。退休后,我的时间充裕了,经过几年的坚持锻炼"
1 => ",我现在的身体素质比退休前还要好。单位每年组织体检,我的各项指标基本可以达标。在这里,我呼吁老年朋友多运动,多锻炼。立冬时气温降低"
2 => ",老年人外出运动时一定要穿着保暖透气的衣服,运动前做好准备活动,先热身、后运动。选择运动方式时,一定要适合自己。在运动中释放自己,保持好心情。"
]
The output 3 chunks have no overlappings.
@scott I'm willing to help debug and test. On the page /devel/php in my site, I ran your code snippet, it showed errors: Typed property Drupal\ai\Utility\Tokenizer::$encoder must not be accessed before initialization
Will you pls provide a whole working code snippet for me to run with devel_php module in my site? Many thanks!
Any update here? :-)
@seogow I followed your tip for temporary fixing, changed the ai_search milvus server config, then cleard all index and re-index, it occurred error:
Error: Typed property Drupal\ai_search\Base\EmbeddingStrategyPluginBase::$chunkMinOverlap must not be accessed before initialization in Drupal\ai_search\Plugin\EmbeddingStrategy\EmbeddingBase->getChunks() (line 254 of /var/www/html/drupal/web/modules/contrib/ai/modules/ai_search/src/Plugin/EmbeddingStrategy/EmbeddingBase.php).
@cilefen Thank you! No, there isn't.
fishfree → created an issue.
fishfree → created an issue.
fishfree → created an issue.
@scott Thank you! I just installed the latest dev version of ai module, and set the index options. I seemed having progress. However, new errors occured:
Failed to determine non-UTF8 encoding to attempt to auto-convert chunk: # 君强 君强 �组织
Hence the other error:
Exception: Failed to insert into collection: can only accept json format request, the request body should be nil, however {} is valid in Drupal\vdb_provider_milvus\Plugin\VdbProvider\MilvusProvider->insertIntoCollection() (line 402 of /var/www/html/drupal/web/modules/contrib/ai/modules/vdb_providers/vdb_provider_milvus/src/Plugin/VdbProvider/MilvusProvider.php)
I think even there are some failures from UTF8 converting or encoding, we should just ignore that chunck and continue. It seems the current code acts this way, but why still the whole indexing progress failed? Because when I only index one node, it succeeded, the node should have no garbled character like �.
@Scott @Marcus would you pls help me? I still have no progress.
For me, the problem still exists after upgrading to the latest dev version of rdf_sync and running vendor/bin/drush php:script ./my-script.php
.
@marcus @scott
Thank you!
In fact I had tried the both explorer before posting here, they worked. I just test them again, still working.
When my config is as below, as what I said in #4 before applying your refactoring, the indexing will work.
If I set them with index options as below, as selecting the embeddings field type before your refactoring, the indexing will fail with the error log as #11.
@scott Thank you. However for me, after pulling latest dev and running updb, the problem exists the same. I confirmed I set the collection before I post this issue. My Ollama is the latest version.
Yes. Thank you!
@scott My detailed log had been flushed. I pull the latest 1.0-dev. Then I change all the index fields from string to embeddings, then re-index, new error occured:
TypeError: Drupal\vdb_provider_milvus\Plugin\VdbProvider\MilvusProvider::getVdbIds(): Argument #1 ($collection_name) must be of type string, null given, called in /var/www/html/drupal/web/modules/contrib/ai/src/Base/AiVdbProviderClientBase.php on line 323 in Drupal\vdb_provider_milvus\Plugin\VdbProvider\MilvusProvider->getVdbIds() (line 473 of /var/www/html/drupal/web/modules/contrib/ai/modules/vdb_providers/vdb_provider_milvus/src/Plugin/VdbProvider/MilvusProvider.php).
#0 /var/www/html/drupal/web/modules/contrib/ai/src/Base/AiVdbProviderClientBase.php(323): Drupal\vdb_provider_milvus\Plugin\VdbProvider\MilvusProvider->getVdbIds()
#1 /var/www/html/drupal/web/modules/contrib/ai/src/Base/AiVdbProviderClientBase.php(316): Drupal\ai\Base\AiVdbProviderClientBase->deleteItems()
#2 /var/www/html/drupal/web/modules/contrib/ai/src/Base/AiVdbProviderClientBase.php(246): Drupal\ai\Base\AiVdbProviderClientBase->deleteIndexItems()
#3 /var/www/html/drupal/web/modules/contrib/ai/modules/ai_search/src/Plugin/search_api/backend/SearchApiAiSearchBackend.php(305): Drupal\ai\Base\AiVdbProviderClientBase->indexItems()
#4 /var/www/html/drupal/web/modules/contrib/search_api/src/Entity/Server.php(350): Drupal\ai_search\Plugin\search_api\backend\SearchApiAiSearchBackend->indexItems()
#5 /var/www/html/drupal/web/modules/contrib/search_api/src/Entity/Index.php(1008): Drupal\search_api\Entity\Server->indexItems()
#6 /var/www/html/drupal/web/modules/contrib/search_api/src/Entity/Index.php(937): Drupal\search_api\Entity\Index->indexSpecificItems()
#7 /var/www/html/drupal/web/modules/contrib/search_api/src/IndexBatchHelper.php(160): Drupal\search_api\Entity\Index->indexItems()
#8 /var/www/html/drupal/web/core/includes/batch.inc(296): Drupal\search_api\IndexBatchHelper::process()
#9 /var/www/html/drupal/web/core/includes/batch.inc(138): _batch_process()
#10 /var/www/html/drupal/web/core/includes/batch.inc(94): _batch_do()
#11 /var/www/html/drupal/web/core/modules/system/src/Controller/BatchController.php(52): _batch_page()
#12 [internal function]: Drupal\system\Controller\BatchController->batchPage()
#13 /var/www/html/drupal/web/core/lib/Drupal/Core/EventSubscriber/EarlyRenderingControllerWrapperSubscriber.php(123): call_user_func_array()
#14 /var/www/html/drupal/web/core/lib/Drupal/Core/Render/Renderer.php(638): Drupal\Core\EventSubscriber\EarlyRenderingControllerWrapperSubscriber->Drupal\Core\EventSubscriber\{closure}()
#15 /var/www/html/drupal/web/core/lib/Drupal/Core/EventSubscriber/EarlyRenderingControllerWrapperSubscriber.php(121): Drupal\Core\Render\Renderer->executeInRenderContext()
#16 /var/www/html/drupal/web/core/lib/Drupal/Core/EventSubscriber/EarlyRenderingControllerWrapperSubscriber.php(97): Drupal\Core\EventSubscriber\EarlyRenderingControllerWrapperSubscriber->wrapControllerExecutionInRenderContext()
#17 /var/www/html/drupal/vendor/symfony/http-kernel/HttpKernel.php(181): Drupal\Core\EventSubscriber\EarlyRenderingControllerWrapperSubscriber->Drupal\Core\EventSubscriber\{closure}()
#18 /var/www/html/drupal/vendor/symfony/http-kernel/HttpKernel.php(76): Symfony\Component\HttpKernel\HttpKernel->handleRaw()
#19 /var/www/html/drupal/web/core/lib/Drupal/Core/StackMiddleware/Session.php(53): Symfony\Component\HttpKernel\HttpKernel->handle()
#20 /var/www/html/drupal/web/core/lib/Drupal/Core/StackMiddleware/KernelPreHandle.php(48): Drupal\Core\StackMiddleware\Session->handle()
#21 /var/www/html/drupal/web/core/lib/Drupal/Core/StackMiddleware/ContentLength.php(28): Drupal\Core\StackMiddleware\KernelPreHandle->handle()
#22 /var/www/html/drupal/web/core/modules/big_pipe/src/StackMiddleware/ContentLength.php(32): Drupal\Core\StackMiddleware\ContentLength->handle()
#23 /var/www/html/drupal/web/core/modules/page_cache/src/StackMiddleware/PageCache.php(106): Drupal\big_pipe\StackMiddleware\ContentLength->handle()
#24 /var/www/html/drupal/web/core/modules/page_cache/src/StackMiddleware/PageCache.php(85): Drupal\page_cache\StackMiddleware\PageCache->pass()
#25 /var/www/html/drupal/web/core/lib/Drupal/Core/StackMiddleware/ReverseProxyMiddleware.php(48): Drupal\page_cache\StackMiddleware\PageCache->handle()
#26 /var/www/html/drupal/web/core/lib/Drupal/Core/StackMiddleware/NegotiationMiddleware.php(51): Drupal\Core\StackMiddleware\ReverseProxyMiddleware->handle()
#27 /var/www/html/drupal/web/core/lib/Drupal/Core/StackMiddleware/AjaxPageState.php(36): Drupal\Core\StackMiddleware\NegotiationMiddleware->handle()
#28 /var/www/html/drupal/web/core/lib/Drupal/Core/StackMiddleware/StackedHttpKernel.php(51): Drupal\Core\StackMiddleware\AjaxPageState->handle()
#29 /var/www/html/drupal/web/core/lib/Drupal/Core/DrupalKernel.php(741): Drupal\Core\StackMiddleware\StackedHttpKernel->handle()
#30 /var/www/html/drupal/web/index.php(19): Drupal\Core\DrupalKernel->handle()
#31 {main}
I have to say I modified the a few lines of the code for being compatible with the new Ollama embeddings provider API:
modules/providers/provider_ollama/src/OllamaControlApi.php如下:
- $result = json_decode($this->makeRequest("api/embeddings", [], 'POST', [
+ $result = json_decode($this->makeRequest("api/embed", [], 'POST', [
- 'prompt' => $text,
+ 'input' => $text,
'model' => $model,
modules/providers/provider_ollama/src/Plugin/AiProvider/OllamaProvider.php:
- return new EmbeddingsOutput($response['embedding'], $response, []);
+ return new EmbeddingsOutput($response['embeddings'][0], $response, []);
@wouters_f Thank you! It works now with your MR.
@scott_euser Thank you! I tried that before. If changed to the embeddings field type, indexing would fail with error log as below:
Drupal\ai\Exception\AiBadRequestException: Error invoking client: Client error: `POST http://10.2.91.48:11434/api/embed` resulted in a `400 Bad Request` response: {"error":"missing request body"} in Drupal\ai\Plugin\ProviderProxy->wrapperCall() (line 155 of /var/www/html/drupal/web/modules/contrib/ai/src/Plugin/ProviderProxy.php).
@andileco Thank you very much! It works!
@knurg Thank you all the same for taking time to talk with me!
The schemadotorg module is much easier to use and has other many advantages :-)
Of couse, the rdf_sync is applicable for all Drupal native entities, while WissKI is only applicable for ontology-based pathbuilders.
@knurg For example, the schemadotorg module can create https://schema.org -compliant RDF triples with the rdf_sync module. It's very hard to use WissKI pathbuilders to make it. I need both features and store them both in a single tirple-store server.
fishfree → created an issue.
You are right. But there are other stuff besides WissKI paths in my Drupal, which are required to synchronize to triple store.
fishfree → created an issue.
@marcus, your merge request works now! Thank you!
@knurg Thank you for your detailed explanation and sorry for replying late.
I asked this question here because I'd like to use WissKI and rdf_sync module together, the latter only supports Openlink Virtuoso and has a configuration of "Graph store path". If WissKI also supports Openlink Virtuoso, it would be great.
For me, I can disable SPARQL auth and accept anonymous writing access in Openlink Virtuoso, because I can use IP/TCP to only allow localhost access.
Thank you again!
The #6 patch works for me.
@marcus Thank you for your marvelous diligence!
I test the latest dev version after drush updb && drush cr
, the same problem still exists as below:
11 Add to Default shortcuts
Open configuration options
Prompt
user
Please extract text from this image:
Do not include any explanations, only provide a RFC8259 compliant JSON response following this format without deviation.
[{"value": "requested value"}]
Operation Type
chat
Provider
ollama
Model
llava:latest
Tags
chat
Response
{"id":"chatcmpl-0","object":"chat.completion","created":1727097978,"model":"llava:latest","systemFingerprint":"fp_ollama","choices":[{"index":0,"message":{"role":"assistant","content":" [[{\"value\": \"101-2021-03-31T10:00:00Z\"}]]] ","toolCalls":[],"functionCall":null},"finishReason":"stop"}],"usage":{"promptTokens":57,"completionTokens":34,"totalTokens":91}}
Configuration
max_tokens:
1024
temperature:
1
top_p:
1
Extra Data
[]
Authored on
Mon, 09/23/2024 - 21:26
fishfree → created an issue.
fishfree → created an issue.
@marcus Thank you! I can select image field. But it request failed. The AI log said:
Prompt
user
Please extract text from this image:
Do not include any explanations, only provide a RFC8259 compliant JSON response following this format without deviation.
[{"value": "requested value"}]
Operation Type
chat
Provider
ollama
Model
llava:latest
Tags
chat
Response
{"id":"chatcmpl-291","object":"chat.completion","created":1727049200,"model":"llava:latest","systemFingerprint":"fp_ollama","choices":[{"index":0,"message":{"role":"assistant","content":" ```json\n}[{\"value\": \"No request was made.\"}]\n``` ","toolCalls":[],"functionCall":null},"finishReason":"stop"}],"usage":{"promptTokens":57,"completionTokens":19,"totalTokens":76}}
Configuration
max_tokens:
1024
temperature:
1
top_p:
1
Extra Data
[]
Authored on
Mon, 09/23/2024 - 07:53
If you succeeded, pls share me a screenshot of configuration.
fishfree → created an issue.
@christianadamski Thank you very much! I add a new simple geolocation field, it works now as the doc.
fishfree → created an issue.
fishfree → created an issue.
@marcus_johansson Thank you! I installed ai_agent module. I guess I'd better post my issue there.
My fault. Pls ignore it.
fishfree → created an issue.
fishfree → created an issue.
@christianadamski Thank you! I added a few words. If you followed my steps, you can reproduce it. Or, the official doc should be upgraded to be aligned with the module's changes?
fishfree → created an issue.
fishfree → created an issue.
@claudiucristea Thank you very much! After applying https://git.drupalcode.org/project/rdf_sync/-/merge_requests/25.diff based on
https://www.drupal.org/project/rdf_sync/releases/1.0.0-alpha12 →
, I re-run vendor/bin/drush rdf_sync:synchronize node
It showed as below:
> ......
> [notice] Synchronized 1200 out of 1965 entities
> [notice] Synchronized 1250 out of 1965 entities
> [notice] Synchronized 1300 out of 1965 entities
> [notice] Synchronized 1350 out of 1965 entities
>
> In Resource.php line 69:
>
> $uri should be a string and cannot be null or empty
>
>
> PHP Fatal error: Uncaught InvalidArgumentException: $uri should be a string and cannot be null or empty in /var/www/html/drupal/vendor/sweetrdf/easyrdf/lib/Resource.php:69
> Stack trace:
> #0 /var/www/html/drupal/web/modules/contrib/rdf_sync/src/Normalizer/RdfSyncNormalizer.php(108): EasyRdf\Resource->__construct()
> #1 /var/www/html/drupal/web/modules/contrib/rdf_sync/src/RdfSyncSynchronizer.php(122): Drupal\rdf_sync\Normalizer\RdfSyncNormalizer->normalize()
> #2 /var/www/html/drupal/web/modules/contrib/rdf_sync/src/RdfSyncSynchronizer.php(88): Drupal\rdf_sync\RdfSyncSynchronizer->doSynchronize()
> #3 /var/www/html/drupal/web/core/lib/Drupal/Core/EventSubscriber/KernelDestructionSubscriber.php(51): Drupal\rdf_sync\RdfSyncSynchronizer->destruct()
> #4 [internal function]: Drupal\Core\EventSubscriber\KernelDestructionSubscriber->onKernelTerminate()
> #5 /var/www/html/drupal/web/core/lib/Drupal/Component/EventDispatcher/ContainerAwareEventDispatcher.php(111): call_user_func()
> #6 /var/www/html/drupal/vendor/symfony/http-kernel/HttpKernel.php(115): Drupal\Component\EventDispatcher\ContainerAwareEventDispatcher->dispatch()
> #7 /var/www/html/drupal/web/core/lib/Drupal/Core/StackMiddleware/StackedHttpKernel.php(63): Symfony\Component\HttpKernel\HttpKernel->terminate()
> #8 /var/www/html/drupal/web/core/lib/Drupal/Core/DrupalKernel.php(688): Drupal\Core\StackMiddleware\StackedHttpKernel->terminate()
> #9 /var/www/html/drupal/vendor/drush/drush/src/Boot/DrupalBoot8.php(326): Drupal\Core\DrupalKernel->terminate()
> #10 [internal function]: Drush\Boot\DrupalBoot8->terminate()
> #11 {main}
> thrown in /var/www/html/drupal/vendor/sweetrdf/easyrdf/lib/Resource.php on line 69
In ProcessBase.php line 171:
Unable to decode output into JSON: Syntax error
Fatal error: Uncaught InvalidArgumentException: $uri should be a string and cannot be null or em
pty in /var/www/html/drupal/vendor/sweetrdf/easyrdf/lib/Resource.php:69
Stack trace:
#0 /var/www/html/drupal/web/modules/contrib/rdf_sync/src/Normalizer/RdfSyncNormalizer.php(108)
: EasyRdf\Resource->__construct()
#1 /var/www/html/drupal/web/modules/contrib/rdf_sync/src/RdfSyncSynchronizer.php(122): Drupal\
rdf_sync\Normalizer\RdfSyncNormalizer->normalize()
#2 /var/www/html/drupal/web/modules/contrib/rdf_sync/src/RdfSyncSynchronizer.php(88): Drupal\r
df_sync\RdfSyncSynchronizer->doSynchronize()
#3 /var/www/html/drupal/web/core/lib/Drupal/Core/EventSubscriber/KernelDestructionSubscriber.p
hp(51): Drupal\rdf_sync\RdfSyncSynchronizer->destruct()
#4 [internal function]: Drupal\Core\EventSubscriber\KernelDestructionSubscriber->onKernelTermina
te()
#5 /var/www/html/drupal/web/core/lib/Drupal/Component/EventDispatcher/ContainerAwareEventDispa
tcher.php(111): call_user_func()
#6 /var/www/html/drupal/vendor/symfony/http-kernel/HttpKernel.php(115): Drupal\Component\Event
Dispatcher\ContainerAwareEventDispatcher->dispatch()
#7 /var/www/html/drupal/web/core/lib/Drupal/Core/StackMiddleware/StackedHttpKernel.php(63): Sy
mfony\Component\HttpKernel\HttpKernel->terminate()
#8 /var/www/html/drupal/web/core/lib/Drupal/Core/DrupalKernel.php(688): Drupal\Core\StackMiddl
eware\StackedHttpKernel->terminate()
#9 /var/www/html/drupal/vendor/drush/drush/src/Boot/DrupalBoot8.php(326): Drupal\Core\DrupalKe
rnel->terminate()
#10 [internal function]: Drush\Boot\DrupalBoot8->terminate()
#11 {main}
thrown in /var/www/html/drupal/vendor/sweetrdf/easyrdf/lib/Resource.php on line 69
I checked in my Virtuoso, it seems all the 1965 entities had been synchonized. Why still the error occured?
@jurgenhaas Thank you! However, after applying your commit, the selected exposed filters are still not yet converted to a range slider as the screenshot below:
Could you pls provide a working example?
@claudiucristea Thank you very much! Would you pls share a single patch file against the version https://www.drupal.org/project/rdf_sync/releases/1.0.0-alpha12 → ? Sorry I'm not able to manually merge your multiple MRs.
@jurgenhass Thank you. However, I still cannot set min/max as the exposed 2 number equal filters as the screenshot below. What are qualified filters for views_exposed_range_slider's min/max fields?
fishfree → created an issue.
@jurgenhaas Thank you! Do you mean configuring it in an exposed number field with between operators? Or Add a display dropdown menu? But neither found I where to configure.
@marcus_johansson @scott_euser Thank you, Marcus and Scott!
What are the versions of your ollama? Mine is 0.3.10.
+1
My environment: Drupal 10.3.3, PHP 8.2, the latest ai dev version.
fishfree → created an issue.
@claudiu Thank you! After apply your patch, my error turned into:
In ProcessBase.php line 171:
Unable to decode output into JSON: Syntax error
Fatal error: Uncaught InvalidArgumentException: $uri should be a string and cannot be null or empty in /var/www/html/drupal/vendor/sweetrdf/easyrdf/lib/Re
source.php:69
Stack trace:
#0 /var/www/html/drupal/web/modules/contrib/rdf_sync/src/Normalizer/RdfSyncNormalizer.php(61): EasyRdf\Resource->__construct()
#1 /var/www/html/drupal/web/modules/contrib/rdf_sync/src/RdfSyncSynchronizer.php(133): Drupal\rdf_sync\Normalizer\RdfSyncNormalizer->normalize()
#2 /var/www/html/drupal/web/modules/contrib/rdf_sync/src/RdfSyncSynchronizer.php(104): Drupal\rdf_sync\RdfSyncSynchronizer->doSynchronize()
#3 /var/www/html/drupal/web/core/lib/Drupal/Core/EventSubscriber/KernelDestructionSubscriber.php(51): Drupal\rdf_sync\RdfSyncSynchronizer->destruct()
#4 [internal function]: Drupal\Core\EventSubscriber\KernelDestructionSubscriber->onKernelTerminate()
#5 /var/www/html/drupal/web/core/lib/Drupal/Component/EventDispatcher/ContainerAwareEventDispatcher.php(111): call_user_func()
#6 /var/www/html/drupal/vendor/symfony/http-kernel/HttpKernel.php(115): Drupal\Component\EventDispatcher\ContainerAwareEventDispatcher->dispatch()
#7 /var/www/html/drupal/web/core/lib/Drupal/Core/StackMiddleware/StackedHttpKernel.php(63): Symfony\Component\HttpKernel\HttpKernel->terminate()
#8 /var/www/html/drupal/web/core/lib/Drupal/Core/DrupalKernel.php(688): Drupal\Core\StackMiddleware\StackedHttpKernel->terminate()
#9 /var/www/html/drupal/vendor/drush/drush/src/Boot/DrupalBoot8.php(326): Drupal\Core\DrupalKernel->terminate()
#10 [internal function]: Drush\Boot\DrupalBoot8->terminate()
#11 {main}
thrown in /var/www/html/drupal/vendor/sweetrdf/easyrdf/lib/Resource.php on line 69
I can provide more info:
- I run a Ontotext GraphDB container 10.6.4 according this doc;
- In GraphDB admin Web UI, I created a respository schema_org, and on Drupal page /admin/config/system/rdf-sync, according to this doc, configured as below:
SPARQL query path: repositories/schema_org
SPARQL update path: repositories/schema_org/statements
Graph store path: repositories/schema_org - Then I created a node, there is an error, according the message, I put the genereated SPARQL directly into GraphDB SPARQL page, it told me "WITH ***" should be deleted in the SPARQL, so I deleted line 96 "WITH <$graphUri>" in the file src/RdfSyncTriples.php
- But then I showed error as below, which I'm not able to solve it:
TypeError: Drupal\rdf_sync\RdfSyncConnection::performOperation(): Return value must be of type EasyRdf\Sparql\Result, EasyRdf\Http\Response returned in Drupal\rdf_sync\RdfSyncConnection->performOperation() (line 68 of /var/www/html/drupal/web/modules/contrib/rdf_sync/src/RdfSyncConnection.php) #0 /var/www/html/drupal/web/modules/contrib/rdf_sync/src/RdfSyncConnection.php(107): Drupal\rdf_sync\RdfSyncConnection->performOperation() #1 /var/www/html/drupal/web/modules/contrib/rdf_sync/src/RdfSyncTriples.php(100): Drupal\rdf_sync\RdfSyncConnection->update() #2 /var/www/html/drupal/web/modules/contrib/rdf_sync/src/RdfSyncSynchronizer.php(134): Drupal\rdf_sync\RdfSyncTriples->insertTriples() #3 /var/www/html/drupal/web/modules/contrib/rdf_sync/src/RdfSyncSynchronizer.php(104): Drupal\rdf_sync\RdfSyncSynchronizer->doSynchronize() #4 /var/www/html/drupal/web/core/lib/Drupal/Core/EventSubscriber/KernelDestructionSubscriber.php(51): Drupal\rdf_sync\RdfSyncSynchronizer->destruct() #5 [internal function]: Drupal\Core\EventSubscriber\KernelDestructionSubscriber->onKernelTerminate() #6 /var/www/html/drupal/web/core/lib/Drupal/Component/EventDispatcher/ContainerAwareEventDispatcher.php(111): call_user_func() #7 /var/www/html/drupal/vendor/symfony/http-kernel/HttpKernel.php(115): Drupal\Component\EventDispatcher\ContainerAwareEventDispatcher->dispatch() #8 /var/www/html/drupal/web/core/lib/Drupal/Core/StackMiddleware/StackedHttpKernel.php(63): Symfony\Component\HttpKernel\HttpKernel->terminate() #9 /var/www/html/drupal/web/core/lib/Drupal/Core/DrupalKernel.php(688): Drupal\Core\StackMiddleware\StackedHttpKernel->terminate() #10 /var/www/html/drupal/web/index.php(22): Drupal\Core\DrupalKernel->terminate() #11 {main}
My Drupal 10.2, PHP 8.2.
@claudiu I think It would be some other modules conflict. Thank you very much!
@claudiu Sorry, I'm not capable to do this.
@jrockowitz Thank you! I think I need upgrade my schemadotorg module version. However, that's only the architect overview of entities, not the entity instances.
fishfree → created an issue.
@jrockowitz Thank you! But that's a table format, not a diagram/chart.
fishfree → created an issue.
fishfree → created an issue.
fishfree → created an issue.
@claudiu Thank you! Because there is no authentication mechanism in rdf_sync configuration form. Rdf_sync need write to Virtuoso, so If I run Virtuoso on 0.0.0.0, then other user can also write to Virtuoso without additional protection.
fishfree → created an issue.
+1 pls.
fishfree → created an issue.
fishfree → created an issue.
fishfree → created an issue.
@andileco Thank you! But I have to group by a date field for viewing the trend line year by year. If I use stacking instead of grouping, the oupout will be as below:
I don't know where come from the right part of the chart, esp. those labels. The oupput debug JSON is as below:
{
"chart": {
"type": "line",
"backgroundColor": "",
"polar": 0,
"options3d": {
"enabled": 0
},
"renderTo": "chart-book-charts-page-1--OeovnNMsmqs"
},
"credits": {
"enabled": false
},
"title": {
"text": "",
"style": {
"color": "#000"
},
"verticalAlign": "top"
},
"subtitle": {
"text": "",
"verticalAlign": "top"
},
"colors": [
"#006fb0",
"#f07c33",
"#342e9c",
"#579b17",
"#3f067a",
"#cbde67",
"#7643b6",
"#738d00",
"#c157c7",
"#02dab1",
"#ed56b4",
"#d8d981",
"#004695",
"#736000",
"#a5a5ff",
"#833a00",
"#ff9ee9",
"#684507",
"#fe4f85",
"#5d0011",
"#ffa67b",
"#88005c",
"#ff9b8f",
"#85000f",
"#ff7581"
],
"tooltip": {
"enabled": true,
"useHTML": false
},
"plotOptions": {
"series": {
"stacking": "1",
"dataLabels": {
"enabled": true
},
"marker": {
"enabled": true
}
}
},
"legend": {
"enabled": false
},
"xAxis": [
{
"type": "",
"title": {
"text": "",
"style": {
"color": "#000"
}
},
"categories": [
"1921",
"1923",
"1925",
"1928",
"1929",
"1930",
"1932",
"1933",
"1934",
"1935",
"1936",
"1937",
"1940",
"1943",
"1944",
"1945",
"1946",
"1947",
"1948",
"1949",
"1950",
"1951",
"1952",
"1953",
"1954",
"1955",
"1956",
"1957",
"1958",
"1959",
"1960",
"1962",
"1963",
"1976",
"1978",
"1979",
"1980",
"1981",
"1982",
"1983",
"1984",
"1985",
"1986",
"1987",
"1988",
"1989",
"1990",
"1991",
"2009"
],
"labels": {
"style": {
"color": "#000"
},
"rotation": 60,
"align": "left"
},
"gridLineColor": "#ccc",
"lineColor": "#ccc",
"minorGridLineColor": "#e0e0e0",
"opposite": false
}
],
"yAxis": [
{
"type": "",
"title": {
"text": "",
"style": {
"color": "#000"
}
},
"labels": {
"style": {
"color": "#000"
},
"rotation": 0
},
"gridLineColor": "#ccc",
"lineColor": "#ccc",
"minorGridLineColor": "#e0e0e0",
"opposite": false
}
],
"series": [
{
"name": "",
"color": "#14f02e",
"data": [
1,
2,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
2,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
2,
2,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
2,
1,
2,
5,
1,
1,
1,
2,
3,
1,
1,
1,
3,
1,
1,
1,
4,
1,
2,
1,
1,
1,
1,
5,
1,
2,
1,
1,
1,
1,
2,
2,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
]
}
],
"drupalChartDivElement": {
"hcEvents": {
"mousedown": [
{
"order": null
}
],
"touchstart": [
{
"order": null
}
]
}
},
"drupalChartDivId": "chart-book-charts-page-1--OeovnNMsmqs"
}
fishfree → created an issue.
@andileco I need to use the aggregation COUNT functionality in Views module, because thus way, users needn't manually input the count / sum / average data.
fishfree → created an issue.
fishfree → created an issue.
@scott_euser Thank you! I installed the latest dev version, however, the error still exists. I also changed to try with ollama:phi3 of which the embedding dimension is 3072, but no luck.
fishfree → created an issue.
@apmsooner Thank you! The patch works!
@andileco Would you pls also provider a detailed tutorial for creating the Data Explorer: https://hub.tbdiah.org/data-explorer/indicators https://hub.tbdiah.org/data-explorer/geo That's amazing!!!
@apmsooner Yes, it's exactly the problem of the table display.
@apmsooner Thank you! Now, the text_long sub-field works with your commit.