Changeset 3326347
- Timestamp:
- 07/11/2025 02:28:57 PM (9 months ago)
- Location:
- ai-search
- Files:
-
- 5 added
- 2 edited
-
tags/1.6.2 (added)
-
tags/1.6.2/ai-search.php (added)
-
tags/1.6.2/includes (added)
-
tags/1.6.2/includes/class-ai-search-service.php (added)
-
tags/1.6.2/readme.txt (added)
-
trunk/ai-search.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
ai-search/trunk/ai-search.php
r3326332 r3326347 3 3 * Plugin Name: AI Search 4 4 * Description: Replaces the default search with an intelligent search system. 5 * Version: 1.6. 15 * Version: 1.6.2 6 6 * Author: samuelsilvapt 7 7 * License: GPL2 … … 126 126 127 127 if ( $this->provider === 'ai_service' ) { 128 return $this->service_client->get_embedding( $content ); 128 $embedding = $this->service_client->get_embedding( $content ); 129 if ( $embedding && ! empty( $embedding['embedding']) ) { 130 return $embedding['embedding']; 131 } 132 129 133 } 130 134 -
ai-search/trunk/readme.txt
r3326332 r3326347 3 3 Tags: search, AI, OpenAI, WordPress 4 4 Tested up to: 6.8 5 Stable tag: 1.6. 15 Stable tag: 1.6.2 6 6 Requires PHP: 8.0 7 7 License: GPLv2
Note: See TracChangeset
for help on using the changeset viewer.