Selaa lähdekoodia

Merge main into finetune

Brings in:
- /only: variants for single-type expansions
- LLM session management for lifecycle safety
- skills.sh integration for AI agent discovery
- Various bug fixes for vector search and embeddings

Merge conflicts resolved by keeping hyde-first format ordering
from finetune branch while accepting expanded templates and
new features from main.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Tobi Lutke 3 kuukautta sitten
vanhempi
commit
7de18ee066

+ 1 - 0
.gitignore

@@ -8,3 +8,4 @@ texts/
 *.md
 !README.md
 !CLAUDE.md
+!skills/**/*.md

+ 12 - 1
README.md

@@ -213,14 +213,25 @@ QMD uses three local GGUF models (auto-downloaded on first use):
 |-------|---------|------|
 | `embeddinggemma-300M-Q8_0` | Vector embeddings | ~300MB |
 | `qwen3-reranker-0.6b-q8_0` | Re-ranking | ~640MB |
-| [`qmd-query-expansion-1.7B-q4_k_m`](https://huggingface.co/tobil/qmd-query-expansion-1.7B-gguf) | Query expansion (fine-tuned) | ~1.1GB |
+| `qmd-query-expansion-1.7B-q4_k_m` | Query expansion (fine-tuned) | ~1.1GB |
 
 Models are downloaded from HuggingFace and cached in `~/.cache/qmd/models/`.
 
 ## Installation
 
 ```sh
+bun install -g github:tobi/qmd
+```
+
+Make sure `~/.bun/bin` is in your PATH.
+
+### Development
+
+```sh
+git clone https://github.com/tobi/qmd
+cd qmd
 bun install
+bun link
 ```
 
 ## Usage

+ 38 - 0
finetune/configs/sft_v4.yaml

@@ -0,0 +1,38 @@
+# SFT Training Config - v4 with /only: support
+# Usage: accelerate launch --config_file configs/accelerate_multi_gpu.yaml train.py sft --config configs/sft_v4.yaml
+
+model:
+  base: "Qwen/Qwen3-1.7B"
+  output: "qmd-sft-v4"
+
+dataset:
+  name: "data/train_v4"
+  text_field: "text"
+  split: "train"
+  eval_split: 0.1
+
+training:
+  epochs: 3
+  batch_size: 2
+  gradient_accumulation_steps: 4
+  learning_rate: 0.0002
+  max_length: 512
+  warmup_ratio: 0.03
+  lr_scheduler: "cosine"
+
+lora:
+  rank: 16
+  alpha: 32
+  dropout: 0.0
+  target_modules:
+    - "q_proj"
+    - "k_proj"
+    - "v_proj"
+    - "o_proj"
+    - "gate_proj"
+    - "up_proj"
+    - "down_proj"
+
+tracking:
+  project: "qmd-query-expansion"
+  run_name: "sft-1.7B-v4-only-modes"

+ 336 - 0
finetune/data/qmd_expansion_handcrafted_only.jsonl

@@ -0,0 +1,336 @@
+{"input": "ssh key authentication only: lex", "output": "lex: ssh key auth setup\nlex: ssh public private key pair\nlex: passwordless ssh login"}
+{"input": "ssh key authentication only: vec", "output": "vec: how to set up ssh key-based authentication instead of passwords\nvec: step-by-step guide to generating and configuring ssh keys for secure server access"}
+{"input": "ssh key authentication only: hyde", "output": "hyde: Generate an SSH key pair with ssh-keygen -t ed25519. Copy the public key to ~/.ssh/authorized_keys on the remote server using ssh-copy-id. Ensure permissions are 700 for .ssh and 600 for authorized_keys."}
+{"input": "Python virtual environments only: lex", "output": "lex: python venv virtualenv\nlex: pip virtual environment setup\nlex: python isolated dependencies"}
+{"input": "Python virtual environments only: vec", "output": "vec: how to create and activate a python virtual environment for project isolation\nvec: what is the difference between venv, virtualenv, and conda for managing python dependencies"}
+{"input": "Python virtual environments only: hyde", "output": "hyde: Create a virtual environment with python -m venv myenv, then activate it with source myenv/bin/activate on Unix or myenv\\Scripts\\activate on Windows. Install packages with pip and they stay isolated from your system Python."}
+{"input": "git merge conflicts only: lex", "output": "lex: git merge conflict resolve\nlex: git conflict markers HEAD\nlex: resolving merge conflicts"}
+{"input": "git merge conflicts only: vec", "output": "vec: how to resolve merge conflicts in git when two branches modify the same lines\nvec: what do the conflict markers mean and how do you manually edit conflicted files"}
+{"input": "git merge conflicts only: hyde", "output": "hyde: Git marks conflicts with <<<<<<< HEAD, =======, and >>>>>>> branch-name. Edit the file to keep the code you want, remove the markers, then git add the file and commit. Use git mergetool for a visual diff interface."}
+{"input": "TCP vs UDP only: lex", "output": "lex: tcp udp protocol difference\nlex: tcp reliable udp fast\nlex: connection-oriented vs connectionless"}
+{"input": "TCP vs UDP only: vec", "output": "vec: what are the key differences between TCP and UDP network protocols\nvec: when should you use TCP versus UDP for application networking"}
+{"input": "TCP vs UDP only: hyde", "output": "hyde: TCP provides reliable, ordered delivery with acknowledgments and retransmission. UDP is faster but unreliable\u2014packets may arrive out of order or not at all. Use TCP for web, email, file transfer. Use UDP for video streaming, gaming, DNS where speed matters more than reliability."}
+{"input": "Docker compose volumes only: lex", "output": "lex: docker compose volume mount\nlex: docker persistent storage volumes\nlex: compose yaml volumes section"}
+{"input": "Docker compose volumes only: vec", "output": "vec: how to configure persistent volumes in docker compose for data that survives container restarts\nvec: what is the difference between bind mounts and named volumes in docker compose"}
+{"input": "Docker compose volumes only: hyde", "output": "hyde: In docker-compose.yml, define volumes under the top-level volumes key and reference them in services. Named volumes persist data in Docker's storage. Bind mounts map host directories directly: volumes: - ./data:/app/data for development, - myvolume:/app/data for production."}
+{"input": "regex lookahead lookbehind only: lex", "output": "lex: regex lookahead assertion\nlex: regex lookbehind positive negative\nlex: zero-width assertions regex"}
+{"input": "regex lookahead lookbehind only: vec", "output": "vec: how do lookahead and lookbehind assertions work in regular expressions\nvec: what is the syntax for positive and negative lookahead and lookbehind in regex"}
+{"input": "regex lookahead lookbehind only: hyde", "output": "hyde: Lookahead (?=pattern) matches a position followed by pattern without consuming it. Negative lookahead (?!pattern) matches where pattern doesn't follow. Lookbehind (?<=pattern) matches a position preceded by pattern. Example: \\d+(?= dollars) matches numbers followed by 'dollars'."}
+{"input": "Kubernetes secrets management only: lex", "output": "lex: kubernetes secrets k8s\nlex: k8s secret yaml base64\nlex: kubectl create secret"}
+{"input": "Kubernetes secrets management only: vec", "output": "vec: how to create and use secrets in kubernetes for sensitive configuration data\nvec: what are best practices for managing secrets in kubernetes clusters"}
+{"input": "Kubernetes secrets management only: hyde", "output": "hyde: Create secrets with kubectl create secret generic mysecret --from-literal=password=abc123. Reference in pods via env valueFrom secretKeyRef or volume mounts. Secrets are base64 encoded, not encrypted\u2014use sealed-secrets or external secret managers like Vault for production."}
+{"input": "CORS errors fix only: lex", "output": "lex: cors error fix browser\nlex: access-control-allow-origin header\nlex: cors preflight request"}
+{"input": "CORS errors fix only: vec", "output": "vec: how to fix CORS errors when making API requests from a web browser\nvec: what causes cross-origin resource sharing errors and how do you configure the server to allow them"}
+{"input": "CORS errors fix only: hyde", "output": "hyde: CORS errors occur when a browser blocks requests to a different origin. Fix by adding Access-Control-Allow-Origin headers on the server. For Express: app.use(cors()). For preflight requests, handle OPTIONS and return Access-Control-Allow-Methods and Access-Control-Allow-Headers."}
+{"input": "PostgreSQL indexes explain only: lex", "output": "lex: postgresql index explain analyze\nlex: postgres btree index performance\nlex: create index postgresql"}
+{"input": "PostgreSQL indexes explain only: vec", "output": "vec: how to use EXPLAIN ANALYZE to understand query performance and index usage in postgresql\nvec: what types of indexes does postgresql support and when should you use each"}
+{"input": "PostgreSQL indexes explain only: hyde", "output": "hyde: Run EXPLAIN ANALYZE SELECT... to see the query plan and actual execution time. Look for Seq Scan on large tables\u2014add an index with CREATE INDEX idx_name ON table(column). B-tree indexes work for equality and range queries, GIN for full-text search and arrays, GiST for geometric data."}
+{"input": "JWT token refresh only: lex", "output": "lex: jwt refresh token flow\nlex: access token refresh token\nlex: jwt token expiration renewal"}
+{"input": "JWT token refresh only: vec", "output": "vec: how does the jwt refresh token flow work for maintaining user sessions\nvec: what is the difference between access tokens and refresh tokens in jwt authentication"}
+{"input": "JWT token refresh only: hyde", "output": "hyde: Access tokens are short-lived (15 min) and sent with each request. Refresh tokens are long-lived (days/weeks) and stored securely. When the access token expires, send the refresh token to /auth/refresh to get a new access token without re-authenticating."}
+{"input": "React useEffect cleanup only: lex", "output": "lex: react useeffect cleanup function\nlex: useeffect return cleanup\nlex: react unmount cleanup"}
+{"input": "React useEffect cleanup only: vec", "output": "vec: how to properly clean up side effects in react useeffect to prevent memory leaks\nvec: when does the useeffect cleanup function run and what should you clean up"}
+{"input": "React useEffect cleanup only: hyde", "output": "hyde: Return a cleanup function from useEffect to run before the component unmounts or before the effect re-runs. Use it to cancel subscriptions, clear timers, and abort fetch requests. Example: useEffect(() => { const id = setInterval(fn, 1000); return () => clearInterval(id); }, []);"}
+{"input": "nginx reverse proxy only: lex", "output": "lex: nginx reverse proxy config\nlex: nginx proxy_pass upstream\nlex: nginx load balancer setup"}
+{"input": "nginx reverse proxy only: vec", "output": "vec: how to configure nginx as a reverse proxy to forward requests to backend servers\nvec: what nginx directives do you need for a basic reverse proxy configuration"}
+{"input": "nginx reverse proxy only: hyde", "output": "hyde: In nginx.conf, use proxy_pass inside a location block: location /api { proxy_pass http://localhost:3000; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; }. Add upstream blocks for load balancing across multiple backend servers."}
+{"input": "systemd service file only: lex", "output": "lex: systemd service unit file\nlex: systemctl enable start service\nlex: systemd service configuration"}
+{"input": "systemd service file only: vec", "output": "vec: how to create a systemd service file to run an application as a linux daemon\nvec: what are the essential sections and directives in a systemd unit file"}
+{"input": "systemd service file only: hyde", "output": "hyde: Create /etc/systemd/system/myapp.service with [Unit] Description, [Service] ExecStart=/path/to/app, Restart=always, User=appuser, and [Install] WantedBy=multi-user.target. Run systemctl daemon-reload, then systemctl enable --now myapp."}
+{"input": "websocket vs http only: lex", "output": "lex: websocket http difference\nlex: websocket persistent connection\nlex: http polling vs websocket"}
+{"input": "websocket vs http only: vec", "output": "vec: what are the differences between websockets and http for real-time communication\nvec: when should you use websockets instead of http long polling or server-sent events"}
+{"input": "websocket vs http only: hyde", "output": "hyde: HTTP is request-response: client asks, server answers, connection closes. WebSocket upgrades HTTP to a persistent bidirectional connection. Use WebSocket for chat, live updates, gaming. Use SSE for server-to-client only streaming. HTTP polling wastes bandwidth with repeated requests."}
+{"input": "SQL injection prevention only: lex", "output": "lex: sql injection prevent parameterized\nlex: prepared statements sql injection\nlex: sql injection sanitize input"}
+{"input": "SQL injection prevention only: vec", "output": "vec: how to prevent sql injection attacks in web applications\nvec: why are parameterized queries and prepared statements important for database security"}
+{"input": "SQL injection prevention only: hyde", "output": "hyde: Never concatenate user input into SQL strings. Use parameterized queries: cursor.execute('SELECT * FROM users WHERE id = ?', (user_id,)). ORMs like SQLAlchemy handle this automatically. Validate and sanitize input, but parameterization is the primary defense."}
+{"input": "TypeScript generics only: lex", "output": "lex: typescript generics type parameter\nlex: typescript generic function interface\nlex: ts generics constraints extends"}
+{"input": "TypeScript generics only: vec", "output": "vec: how to use generics in typescript to write reusable type-safe functions and classes\nvec: what is the syntax for generic type parameters and constraints in typescript"}
+{"input": "TypeScript generics only: hyde", "output": "hyde: Generics let you write flexible, reusable code while maintaining type safety. Declare with angle brackets: function identity<T>(arg: T): T { return arg; }. Add constraints with extends: function getLength<T extends { length: number }>(item: T): number { return item.length; }."}
+{"input": "OAuth 2.0 authorization code flow only: lex", "output": "lex: oauth2 authorization code flow\nlex: oauth authorization code grant\nlex: oauth2 pkce code verifier"}
+{"input": "OAuth 2.0 authorization code flow only: vec", "output": "vec: how does the oauth 2.0 authorization code flow work for secure third-party authentication\nvec: what are the steps in the oauth authorization code grant and why is pkce recommended"}
+{"input": "OAuth 2.0 authorization code flow only: hyde", "output": "hyde: User clicks login, redirected to auth server with client_id and redirect_uri. User authenticates, gets authorization code. App exchanges code for tokens at token endpoint. PKCE adds code_verifier/code_challenge to prevent interception attacks\u2014required for public clients."}
+{"input": "Redis caching strategies only: lex", "output": "lex: redis cache strategy pattern\nlex: redis cache aside through\nlex: redis ttl expiration caching"}
+{"input": "Redis caching strategies only: vec", "output": "vec: what are the common caching strategies when using redis for application performance\nvec: how do you implement cache-aside, write-through, and write-behind patterns with redis"}
+{"input": "Redis caching strategies only: hyde", "output": "hyde: Cache-aside: app checks Redis first, fetches from DB on miss, writes to cache. Write-through: writes go to cache and DB together. Write-behind: writes to cache, async sync to DB. Set TTL with EXPIRE to prevent stale data. Use SETEX for atomic set-with-expiry."}
+{"input": "GraphQL vs REST only: lex", "output": "lex: graphql rest api comparison\nlex: graphql query flexibility\nlex: rest vs graphql tradeoffs"}
+{"input": "GraphQL vs REST only: vec", "output": "vec: what are the main differences between graphql and rest api design approaches\nvec: when should you choose graphql over rest for your api architecture"}
+{"input": "GraphQL vs REST only: hyde", "output": "hyde: REST uses fixed endpoints returning predefined data shapes. GraphQL uses one endpoint where clients specify exactly what fields they need, reducing over-fetching. REST is simpler, better cached. GraphQL excels for mobile apps, complex data requirements, and avoiding multiple round trips."}
+{"input": "linux file permissions chmod only: lex", "output": "lex: linux chmod file permissions\nlex: unix rwx permission bits\nlex: chmod 755 644 meaning"}
+{"input": "linux file permissions chmod only: vec", "output": "vec: how do linux file permissions work and how do you change them with chmod\nvec: what do the rwx permission bits mean for owner, group, and others"}
+{"input": "linux file permissions chmod only: hyde", "output": "hyde: Permissions are rwx for read, write, execute. Three groups: owner, group, others. chmod 755 means rwxr-xr-x (owner full, others read+execute). chmod 644 means rw-r--r-- (owner read+write, others read only). Use chmod +x to add execute permission."}
+{"input": "async await error handling only: lex", "output": "lex: async await try catch\nlex: javascript promise error handling\nlex: async function exception handling"}
+{"input": "async await error handling only: vec", "output": "vec: how to properly handle errors in javascript async await functions\nvec: what happens when an async function throws and how do you catch those errors"}
+{"input": "async await error handling only: hyde", "output": "hyde: Wrap await calls in try-catch blocks: try { const data = await fetchData(); } catch (err) { console.error(err); }. Unhandled rejections in async functions become unhandled promise rejections. For multiple awaits, catch individually or use Promise.allSettled to handle partial failures."}
+{"input": "Elasticsearch query DSL only: lex", "output": "lex: elasticsearch query dsl\nlex: elasticsearch bool must should\nlex: es full text search query"}
+{"input": "Elasticsearch query DSL only: vec", "output": "vec: how to write search queries using elasticsearch query dsl syntax\nvec: what are the common query types in elasticsearch like match, term, and bool queries"}
+{"input": "Elasticsearch query DSL only: hyde", "output": "hyde: Elasticsearch Query DSL uses JSON. Match query for full-text: {match: {title: 'search'}}. Term for exact: {term: {status: 'published'}}. Bool combines queries: {bool: {must: [...], should: [...], filter: [...], must_not: [...]}}. Filter context skips scoring for faster filtering."}
+{"input": "terraform state management only: lex", "output": "lex: terraform state file backend\nlex: terraform remote state s3\nlex: tfstate locking management"}
+{"input": "terraform state management only: vec", "output": "vec: how to manage terraform state files and what are the best practices for team collaboration\nvec: why should you use remote state backends in terraform and how do you configure them"}
+{"input": "terraform state management only: hyde", "output": "hyde: Store state remotely in S3, GCS, or Terraform Cloud\u2014never commit tfstate to git. Configure backend in terraform { backend \"s3\" { bucket = \"my-state\", key = \"prod.tfstate\", region = \"us-east-1\", dynamodb_table = \"tf-locks\" } }. DynamoDB provides state locking to prevent concurrent modifications."}
+{"input": "monorepo vs polyrepo only: lex", "output": "lex: monorepo polyrepo comparison\nlex: monorepo benefits drawbacks\nlex: single repo multiple repos"}
+{"input": "monorepo vs polyrepo only: vec", "output": "vec: what are the tradeoffs between using a monorepo versus multiple repositories\nvec: when does a monorepo make sense and what tools help manage large monorepos"}
+{"input": "monorepo vs polyrepo only: hyde", "output": "hyde: Monorepos keep all code in one repository\u2014easier atomic changes across packages, shared tooling, consistent versioning. Polyrepos give teams autonomy, simpler CI, clearer ownership. Use monorepos for tightly coupled code. Tools: Nx, Turborepo, Lerna, Bazel for build orchestration."}
+{"input": "prometheus alerting rules only: lex", "output": "lex: prometheus alerting rules config\nlex: prometheus alertmanager rules\nlex: promql alert expressions"}
+{"input": "prometheus alerting rules only: vec", "output": "vec: how to write prometheus alerting rules to notify on metric thresholds\nvec: what is the syntax for prometheus alert rules and how do they integrate with alertmanager"}
+{"input": "prometheus alerting rules only: hyde", "output": "hyde: Define rules in YAML: groups: - name: example rules: - alert: HighErrorRate expr: rate(http_errors_total[5m]) > 0.1 for: 5m labels: severity: critical annotations: summary: High error rate. Prometheus evaluates rules periodically and sends firing alerts to Alertmanager for routing and deduplication."}
+{"input": "CSS flexbox centering only: lex", "output": "lex: css flexbox center align\nlex: flexbox justify-content align-items\nlex: css center div flexbox"}
+{"input": "CSS flexbox centering only: vec", "output": "vec: how to center elements horizontally and vertically using css flexbox\nvec: what flexbox properties do you use to center content in a container"}
+{"input": "CSS flexbox centering only: hyde", "output": "hyde: On the container, set display: flex; justify-content: center; align-items: center;. justify-content handles the main axis (horizontal by default), align-items handles the cross axis. Add height: 100vh to center within the viewport. For a single item, margin: auto also works inside flex containers."}
+{"input": "database connection pooling only: lex", "output": "lex: database connection pool\nlex: connection pooling performance\nlex: db pool size configuration"}
+{"input": "database connection pooling only: vec", "output": "vec: what is database connection pooling and why does it improve application performance\nvec: how do you configure connection pool size for optimal database throughput"}
+{"input": "database connection pooling only: hyde", "output": "hyde: Opening database connections is expensive. Connection pools maintain reusable connections. Set pool size based on: pool_size = (core_count * 2) + effective_spindle_count. Too small starves the app, too large overwhelms the database. Popular libraries: HikariCP for Java, pgbouncer for PostgreSQL."}
+{"input": "kafka consumer groups only: lex", "output": "lex: kafka consumer group offset\nlex: kafka partition consumer rebalance\nlex: kafka consumer group id"}
+{"input": "kafka consumer groups only: vec", "output": "vec: how do kafka consumer groups work for parallel message processing\nvec: what happens during consumer group rebalancing and how are partitions assigned"}
+{"input": "kafka consumer groups only: hyde", "output": "hyde: Consumers with the same group.id share partitions\u2014each partition is consumed by only one consumer in the group. Adding consumers triggers rebalancing. If consumers > partitions, some idle. Offsets track progress per partition. Use enable.auto.commit=false for exactly-once semantics with manual commits."}
+{"input": "vim search replace only: lex", "output": "lex: vim search replace substitute\nlex: vim sed command :%s\nlex: vim find replace regex"}
+{"input": "vim search replace only: vec", "output": "vec: how to search and replace text in vim using the substitute command\nvec: what is the syntax for vim search and replace with regular expressions and flags"}
+{"input": "vim search replace only: hyde", "output": "hyde: Use :%s/old/new/g to replace all occurrences in the file. % means all lines, g means global (all matches per line). Add c for confirmation: :%s/old/new/gc. Use \\< and \\> for word boundaries. & in replacement refers to the matched text. Use :s for current line only."}
+{"input": "http status codes meaning only: lex", "output": "lex: http status codes list\nlex: http 200 400 500 codes\nlex: rest api status codes"}
+{"input": "http status codes meaning only: vec", "output": "vec: what do the common http status codes mean and when should you use each\nvec: how do you choose the right http status code for api responses"}
+{"input": "http status codes meaning only: hyde", "output": "hyde: 200 OK success, 201 Created for POST, 204 No Content for DELETE. 400 Bad Request for invalid input, 401 Unauthorized for auth required, 403 Forbidden for insufficient permissions, 404 Not Found. 500 Internal Server Error for unexpected failures, 503 Service Unavailable for temporary issues."}
+{"input": "binary search algorithm only: lex", "output": "lex: binary search algorithm\nlex: binary search sorted array\nlex: binary search time complexity"}
+{"input": "binary search algorithm only: vec", "output": "vec: how does the binary search algorithm work and what is its time complexity\nvec: how do you implement binary search to find an element in a sorted array"}
+{"input": "binary search algorithm only: hyde", "output": "hyde: Binary search halves the search space each iteration. Compare target with middle element: if smaller, search left half; if larger, search right. O(log n) time complexity. Requires sorted input. Watch for integer overflow in mid calculation: use low + (high - low) / 2 instead of (low + high) / 2."}
+{"input": "git rebase interactive only: lex", "output": "lex: git rebase interactive squash\nlex: git rebase -i edit commits\nlex: git squash commits rebase"}
+{"input": "git rebase interactive only: vec", "output": "vec: how to use git interactive rebase to edit, squash, and reorder commits\nvec: what are the commands available in git rebase interactive mode"}
+{"input": "git rebase interactive only: hyde", "output": "hyde: Run git rebase -i HEAD~5 to edit the last 5 commits. In the editor, change 'pick' to: squash (s) to combine with previous, reword (r) to edit message, edit (e) to amend, drop (d) to remove. Save and follow prompts. Never rebase commits already pushed to shared branches."}
+{"input": "environment variables docker only: lex", "output": "lex: docker environment variables\nlex: docker env file compose\nlex: docker run -e env vars"}
+{"input": "environment variables docker only: vec", "output": "vec: how to pass environment variables to docker containers\nvec: what are the different ways to set environment variables in docker and docker compose"}
+{"input": "environment variables docker only: hyde", "output": "hyde: Use -e flag: docker run -e DB_HOST=localhost myapp. In docker-compose.yml: environment: - DB_HOST=localhost or env_file: - .env. For secrets, prefer docker secrets or mount files. Variables in Dockerfile with ENV persist in the image; runtime -e overrides them."}
+{"input": "rate limiting algorithms only: lex", "output": "lex: rate limiting algorithm api\nlex: token bucket leaky bucket\nlex: rate limit sliding window"}
+{"input": "rate limiting algorithms only: vec", "output": "vec: what algorithms are used for api rate limiting and how do they differ\nvec: how do token bucket and sliding window rate limiting algorithms work"}
+{"input": "rate limiting algorithms only: hyde", "output": "hyde: Token bucket: bucket fills at fixed rate, requests consume tokens, rejected when empty\u2014allows bursts. Leaky bucket: requests queue, processed at fixed rate\u2014smooths traffic. Sliding window: count requests in rolling time window. Fixed window has boundary issues; sliding window log is precise but memory-heavy."}
+{"input": "blue green deployment only: lex", "output": "lex: blue green deployment strategy\nlex: zero downtime deployment\nlex: blue green kubernetes rollout"}
+{"input": "blue green deployment only: vec", "output": "vec: what is blue green deployment and how does it enable zero downtime releases\nvec: how do you implement blue green deployments in kubernetes or cloud environments"}
+{"input": "blue green deployment only: hyde", "output": "hyde: Blue-green runs two identical environments. Blue is live, green has the new version. Test green thoroughly, then switch the load balancer. Instant rollback by switching back to blue. In Kubernetes, use two deployments with a service selector update, or Argo Rollouts for automated blue-green."}
+{"input": "memory leak debugging only: lex", "output": "lex: memory leak debug profiler\nlex: memory leak detection tools\nlex: heap dump memory analysis"}
+{"input": "memory leak debugging only: vec", "output": "vec: how to find and fix memory leaks in applications\nvec: what tools and techniques help identify memory leaks in different programming languages"}
+{"input": "memory leak debugging only: hyde", "output": "hyde: Use heap profilers: Chrome DevTools for JavaScript, VisualVM or MAT for Java, Valgrind for C/C++, tracemalloc for Python. Take heap snapshots before and after operations, compare retained objects. Common causes: forgotten event listeners, closures holding references, unbounded caches, circular references."}
+{"input": "Stripe webhook verification only: lex", "output": "lex: stripe webhook signature verify\nlex: stripe webhook endpoint secret\nlex: stripe event verification"}
+{"input": "Stripe webhook verification only: vec", "output": "vec: how to verify stripe webhook signatures to ensure events are authentic\nvec: what is the correct way to handle and validate incoming stripe webhook events"}
+{"input": "Stripe webhook verification only: hyde", "output": "hyde: Stripe signs webhooks with your endpoint secret. Verify using stripe.webhooks.constructEvent(body, sig, endpointSecret). Use the raw request body, not parsed JSON. Return 200 quickly, process async. Handle event types like checkout.session.completed. Store endpoint secret securely, rotate if compromised."}
+{"input": "React context vs Redux only: lex", "output": "lex: react context redux comparison\nlex: useContext vs redux state\nlex: react state management choice"}
+{"input": "React context vs Redux only: vec", "output": "vec: when should you use react context versus redux for state management\nvec: what are the tradeoffs between react context api and redux for global state"}
+{"input": "React context vs Redux only: hyde", "output": "hyde: Context is built-in, simple for low-frequency updates like themes and auth. Redux adds boilerplate but provides devtools, middleware, time-travel debugging, predictable updates. Context re-renders all consumers on any change; Redux allows granular subscriptions. Use Context for simple cases, Redux for complex state logic."}
+{"input": "DNS records explained only: lex", "output": "lex: dns records types a cname mx\nlex: dns configuration records\nlex: domain name system records"}
+{"input": "DNS records explained only: vec", "output": "vec: what are the different types of dns records and what does each one do\nvec: how do you configure dns records for a domain including a, cname, mx, and txt records"}
+{"input": "DNS records explained only: hyde", "output": "hyde: A record maps domain to IPv4 address. AAAA for IPv6. CNAME aliases one domain to another (can't be on root domain). MX for mail servers with priority. TXT for verification and SPF/DKIM. NS delegates to nameservers. TTL controls caching duration. Changes propagate based on previous TTL."}
+{"input": "tmux session management only: lex", "output": "lex: tmux session window pane\nlex: tmux attach detach session\nlex: tmux commands shortcuts"}
+{"input": "tmux session management only: vec", "output": "vec: how to create and manage tmux sessions for persistent terminal workflows\nvec: what are the essential tmux commands for session, window, and pane management"}
+{"input": "tmux session management only: hyde", "output": "hyde: Start session: tmux new -s name. Detach: Ctrl-b d. Reattach: tmux attach -t name. New window: Ctrl-b c. Split pane: Ctrl-b % (vertical), Ctrl-b \" (horizontal). Navigate panes: Ctrl-b arrow. List sessions: tmux ls. Kill session: tmux kill-session -t name. Sessions persist after disconnect."}
+{"input": "utf-8 encoding explained only: lex", "output": "lex: utf-8 unicode encoding\nlex: utf8 character encoding bytes\nlex: unicode utf-8 ascii difference"}
+{"input": "utf-8 encoding explained only: vec", "output": "vec: how does utf-8 encoding work and why is it the standard for text\nvec: what is the relationship between unicode and utf-8 and how are characters encoded as bytes"}
+{"input": "utf-8 encoding explained only: hyde", "output": "hyde: UTF-8 encodes Unicode code points as 1-4 bytes. ASCII characters (0-127) use 1 byte, compatible with ASCII. Higher code points use more bytes with leading bits indicating length. UTF-8 is self-synchronizing and space-efficient for Latin text. Always specify encoding explicitly when reading/writing files."}
+{"input": "microservices communication patterns only: lex", "output": "lex: microservices communication patterns\nlex: sync async microservice calls\nlex: event driven microservices"}
+{"input": "microservices communication patterns only: vec", "output": "vec: what are the common communication patterns between microservices\nvec: when should microservices use synchronous rest calls versus asynchronous messaging"}
+{"input": "microservices communication patterns only: hyde", "output": "hyde: Sync (REST/gRPC): simple, immediate response, but creates coupling and cascade failures. Async (message queues, events): decoupled, resilient, eventual consistency. Use sync for queries needing immediate response. Use async for commands, notifications, cross-service workflows. Event sourcing and CQRS for complex domains."}
+{"input": "shell script best practices only: lex", "output": "lex: bash script best practices\nlex: shell script error handling\nlex: bash scripting guidelines"}
+{"input": "shell script best practices only: vec", "output": "vec: what are the best practices for writing reliable and maintainable shell scripts\nvec: how do you handle errors and edge cases properly in bash scripts"}
+{"input": "shell script best practices only: hyde", "output": "hyde: Start with #!/usr/bin/env bash and set -euo pipefail. Use shellcheck for linting. Quote variables: \"$var\". Use [[ ]] for tests. Handle errors with trap. Use functions for reusability. Avoid parsing ls output\u2014use globs. Prefer printf over echo. Use local variables in functions. Add -- before filenames from user input."}
+{"input": "load balancer health checks only: lex", "output": "lex: load balancer health check\nlex: health check endpoint liveness\nlex: lb health probe configuration"}
+{"input": "load balancer health checks only: vec", "output": "vec: how do load balancer health checks work and why are they important\nvec: what should a health check endpoint return and how do you configure health check intervals"}
+{"input": "load balancer health checks only: hyde", "output": "hyde: Load balancers probe backend instances to route traffic only to healthy ones. Health endpoint should check critical dependencies (database, cache) and return 200 if healthy, 503 if not. Configure interval (10-30s), timeout (5s), and threshold (2-3 failures). Include /health and /ready endpoints for Kubernetes liveness and readiness."}
+{"input": "certificate ssl tls renewal only: lex", "output": "lex: ssl tls certificate renewal\nlex: lets encrypt certbot renew\nlex: https certificate expiration"}
+{"input": "certificate ssl tls renewal only: vec", "output": "vec: how to renew ssl tls certificates before they expire\nvec: what is the process for automated certificate renewal with lets encrypt and certbot"}
+{"input": "certificate ssl tls renewal only: hyde", "output": "hyde: Let's Encrypt certificates expire in 90 days. Certbot auto-renews via cron or systemd timer: certbot renew runs twice daily, renews within 30 days of expiry. Test with --dry-run. For other CAs, set calendar reminders. Check expiration: openssl s_client -connect domain:443 | openssl x509 -noout -dates."}
+{"input": "python decorators explained only: lex", "output": "lex: python decorator function\nlex: python @ decorator syntax\nlex: python wrapper decorator"}
+{"input": "python decorators explained only: vec", "output": "vec: how do python decorators work and what is the syntax for creating them\nvec: what are common use cases for decorators in python like logging, caching, and authentication"}
+{"input": "python decorators explained only: hyde", "output": "hyde: Decorators wrap functions to extend behavior. @decorator before def is syntactic sugar for func = decorator(func). A decorator is a function taking a function and returning a new function. Use functools.wraps to preserve metadata. Common uses: @lru_cache for memoization, @login_required for auth, timing/logging wrappers."}
+{"input": "cap theorem database only: lex", "output": "lex: cap theorem distributed database\nlex: consistency availability partition tolerance\nlex: cap theorem tradeoffs"}
+{"input": "cap theorem database only: vec", "output": "vec: what is the cap theorem and how does it apply to distributed database design\nvec: how do different databases choose between consistency and availability during network partitions"}
+{"input": "cap theorem database only: hyde", "output": "hyde: CAP theorem: distributed systems can guarantee only 2 of 3\u2014Consistency (all nodes see same data), Availability (requests get responses), Partition tolerance (survives network splits). During partitions, choose CP (reject requests for consistency, like MongoDB) or AP (serve potentially stale data, like Cassandra). PACELC extends CAP for normal operation tradeoffs."}
+{"input": "garbage collection tuning only: lex", "output": "lex: garbage collection gc tuning\nlex: jvm gc heap memory\nlex: gc pause time optimization"}
+{"input": "garbage collection tuning only: vec", "output": "vec: how to tune garbage collection for better application performance\nvec: what gc algorithms are available and how do you choose gc settings for low latency"}
+{"input": "garbage collection tuning only: hyde", "output": "hyde: For JVM, G1GC is default, good balance of throughput and pause times. ZGC and Shenandoah offer sub-millisecond pauses for low-latency needs. Tune heap size: -Xms and -Xmx same to avoid resizing. Monitor with gc logs: -Xlog:gc*. Reduce allocation rate by reusing objects and avoiding unnecessary autoboxing."}
+{"input": "feature flags implementation only: lex", "output": "lex: feature flags toggles\nlex: feature flag implementation\nlex: gradual rollout feature flags"}
+{"input": "feature flags implementation only: vec", "output": "vec: how to implement feature flags for gradual rollouts and a/b testing\nvec: what are the best practices for managing feature flags in production"}
+{"input": "feature flags implementation only: hyde", "output": "hyde: Feature flags decouple deployment from release. Simple: if (featureEnabled('new-checkout')) { ... }. Store flags in config, database, or services like LaunchDarkly. Use for gradual rollout (1% -> 10% -> 100%), A/B tests, kill switches. Clean up old flags to prevent technical debt. Log flag evaluations for debugging."}
+{"input": "apache kafka partitions only: lex", "output": "lex: kafka partitions topics\nlex: kafka partition key ordering\nlex: kafka partition count scaling"}
+{"input": "apache kafka partitions only: vec", "output": "vec: how do kafka partitions work and how do they affect scalability and message ordering\nvec: how do you choose the right number of partitions for a kafka topic"}
+{"input": "apache kafka partitions only: hyde", "output": "hyde: Partitions enable parallelism\u2014each partition is consumed by one consumer in a group. Messages with same key go to same partition, preserving order per key. More partitions = more throughput but more overhead. Start with partitions = max(expected throughput / partition throughput, consumer count). Can't reduce partitions, only increase."}
+{"input": "cron job syntax only: lex", "output": "lex: cron job syntax schedule\nlex: crontab expression format\nlex: cron schedule examples"}
+{"input": "cron job syntax only: vec", "output": "vec: how to write cron expressions to schedule jobs at specific times\nvec: what does each field in a crontab entry mean and what are common scheduling patterns"}
+{"input": "cron job syntax only: hyde", "output": "hyde: Cron format: minute hour day-of-month month day-of-week command. */5 * * * * runs every 5 minutes. 0 2 * * * runs daily at 2 AM. 0 0 * * 0 runs weekly on Sunday. Use crontab -e to edit. Tools like crontab.guru help build expressions. Consider timezone\u2014cron uses system time."}
+{"input": "GPG key signing only: lex", "output": "lex: gpg key sign verify\nlex: gpg signature git commits\nlex: pgp key signing encryption"}
+{"input": "GPG key signing only: vec", "output": "vec: how to use gpg keys for signing and verifying files and git commits\nvec: what is the process for creating gpg keys and configuring git to sign commits"}
+{"input": "GPG key signing only: hyde", "output": "hyde: Generate key: gpg --full-generate-key. List keys: gpg --list-keys. Sign file: gpg --sign file.txt. Verify: gpg --verify file.txt.gpg. For git: git config --global user.signingkey KEYID, git config --global commit.gpgsign true. Export public key for GitHub: gpg --armor --export KEYID."}
+{"input": "api versioning strategies only: lex", "output": "lex: api versioning strategy\nlex: rest api version url header\nlex: api backward compatibility"}
+{"input": "api versioning strategies only: vec", "output": "vec: what are the different strategies for versioning rest apis\nvec: how do you maintain backward compatibility when evolving an api"}
+{"input": "api versioning strategies only: hyde", "output": "hyde: URL versioning (/v1/users) is explicit, easy to route. Header versioning (Accept: application/vnd.api+json;version=1) keeps URLs clean. Query param (?version=1) is simple but pollutes URLs. Prefer additive changes\u2014new fields don't break clients. Deprecate gracefully with sunset headers and migration guides."}
+{"input": "mutex vs semaphore only: lex", "output": "lex: mutex semaphore difference\nlex: mutex lock synchronization\nlex: semaphore counting binary"}
+{"input": "mutex vs semaphore only: vec", "output": "vec: what is the difference between a mutex and a semaphore in concurrent programming\nvec: when should you use a mutex versus a semaphore for thread synchronization"}
+{"input": "mutex vs semaphore only: hyde", "output": "hyde: Mutex is a binary lock owned by one thread\u2014used for mutual exclusion protecting shared resources. Semaphore is a counter allowing N concurrent accesses\u2014used for limiting concurrency (connection pools, rate limiting). Mutex has ownership (same thread must unlock), semaphore doesn't. Use mutex for critical sections, semaphore for resource counting."}
+{"input": "json schema validation only: lex", "output": "lex: json schema validation\nlex: jsonschema validator python\nlex: json schema types required"}
+{"input": "json schema validation only: vec", "output": "vec: how to use json schema to validate the structure of json data\nvec: what are the common json schema keywords for defining types, required fields, and constraints"}
+{"input": "json schema validation only: hyde", "output": "hyde: JSON Schema defines expected structure. Key properties: type (string, number, object, array), properties for object fields, required array for mandatory fields, items for array elements. Validators: ajv (JS), jsonschema (Python). Use for API request validation, config file validation, documentation generation."}
+{"input": "CI CD pipeline stages only: lex", "output": "lex: ci cd pipeline stages\nlex: continuous integration deployment\nlex: build test deploy pipeline"}
+{"input": "CI CD pipeline stages only: vec", "output": "vec: what are the typical stages in a ci cd pipeline\nvec: how do you design a continuous integration and deployment pipeline for reliable releases"}
+{"input": "CI CD pipeline stages only: hyde", "output": "hyde: Typical stages: 1) Source\u2014trigger on commit, 2) Build\u2014compile, bundle, create artifacts, 3) Test\u2014unit, integration, e2e tests, 4) Security scan\u2014SAST, dependency audit, 5) Deploy to staging, 6) Acceptance tests, 7) Deploy to production. Use parallelization for speed. Gate deployments on test pass. Implement rollback mechanisms."}
+{"input": "event sourcing pattern only: lex", "output": "lex: event sourcing pattern\nlex: event store append only log\nlex: cqrs event sourcing"}
+{"input": "event sourcing pattern only: vec", "output": "vec: what is event sourcing and how does it differ from traditional crud data storage\nvec: how do you implement event sourcing and what are its benefits and challenges"}
+{"input": "event sourcing pattern only: hyde", "output": "hyde: Event sourcing stores state changes as immutable events rather than current state. Account balance is sum of all Deposit and Withdrawal events. Benefits: full audit trail, time travel, replay for debugging. Challenges: eventual consistency, event schema evolution, increased complexity. Often paired with CQRS\u2014separate read models built from event stream."}
+{"input": "IPv4 vs IPv6 only: lex", "output": "lex: ipv4 ipv6 difference\nlex: ipv6 address format\nlex: ipv4 exhaustion ipv6 transition"}
+{"input": "IPv4 vs IPv6 only: vec", "output": "vec: what are the key differences between ipv4 and ipv6 addressing\nvec: why is ipv6 necessary and how does the transition from ipv4 work"}
+{"input": "IPv4 vs IPv6 only: hyde", "output": "hyde: IPv4 uses 32-bit addresses (4 billion), exhausted in 2011. IPv6 uses 128-bit addresses (340 undecillion), formatted as eight hex groups: 2001:0db8::1. IPv6 eliminates NAT need, has built-in IPsec. Transition via dual-stack (both protocols) or tunneling. Check IPv6 support: curl -6 ipv6.google.com."}
+{"input": "dependency injection benefits only: lex", "output": "lex: dependency injection di pattern\nlex: di inversion of control ioc\nlex: dependency injection testing"}
+{"input": "dependency injection benefits only: vec", "output": "vec: what is dependency injection and why does it improve code maintainability\nvec: how does dependency injection make unit testing easier"}
+{"input": "dependency injection benefits only: hyde", "output": "hyde: Dependency injection provides dependencies from outside rather than creating them internally. Class receives DatabaseService via constructor instead of instantiating it. Benefits: loose coupling, easy testing with mocks, flexible configuration. Instead of new EmailService(), inject interface IEmailService\u2014swap implementations without changing consumer code."}
+{"input": "S3 bucket policy only: lex", "output": "lex: s3 bucket policy permissions\nlex: aws s3 iam policy json\nlex: s3 bucket access control"}
+{"input": "S3 bucket policy only: vec", "output": "vec: how to write an s3 bucket policy to control access permissions\nvec: what is the difference between s3 bucket policies and iam policies for access control"}
+{"input": "S3 bucket policy only: hyde", "output": "hyde: S3 bucket policies are resource-based JSON policies attached to buckets. Grant public read: {\"Statement\":[{\"Effect\":\"Allow\",\"Principal\":\"*\",\"Action\":\"s3:GetObject\",\"Resource\":\"arn:aws:s3:::bucket/*\"}]}. IAM policies attach to users/roles. Use bucket policies for cross-account access, IAM for user-specific permissions. Block public access settings override policies."}
+{"input": "idempotency api design only: lex", "output": "lex: idempotency api design\nlex: idempotent request key\nlex: api retry safety idempotency"}
+{"input": "idempotency api design only: vec", "output": "vec: what is idempotency in api design and why is it important for reliability\nvec: how do you implement idempotent endpoints to handle duplicate requests safely"}
+{"input": "idempotency api design only: hyde", "output": "hyde: Idempotent operations produce the same result regardless of how many times called. GET, PUT, DELETE are naturally idempotent. POST needs idempotency keys: client sends unique key, server stores result, returns cached result on retry. Store keys with TTL (24h). Critical for payment APIs\u2014prevents double charges on network retry."}
+{"input": "awk command examples only: lex", "output": "lex: awk command examples\nlex: awk print column field\nlex: awk text processing"}
+{"input": "awk command examples only: vec", "output": "vec: how to use awk for text processing and extracting columns from files\nvec: what are common awk patterns and commands for parsing structured text"}
+{"input": "awk command examples only: hyde", "output": "hyde: awk processes text line by line, splitting into fields. Print second column: awk '{print $2}' file. Custom delimiter: awk -F',' '{print $1}'. Pattern match: awk '/error/ {print}'. Sum column: awk '{sum+=$3} END {print sum}'. Variables: awk -v threshold=100 '$3 > threshold'. Built-in vars: NF (fields), NR (line number)."}
+{"input": "database sharding strategies only: lex", "output": "lex: database sharding horizontal\nlex: shard key partition strategy\nlex: database horizontal scaling"}
+{"input": "database sharding strategies only: vec", "output": "vec: what is database sharding and what strategies exist for partitioning data\nvec: how do you choose a shard key and what are the tradeoffs of different sharding approaches"}
+{"input": "database sharding strategies only: hyde", "output": "hyde: Sharding distributes data across multiple databases. Strategies: range-based (user IDs 1-1M on shard 1), hash-based (consistent hashing), directory-based (lookup table). Choose shard key with high cardinality, even distribution, query locality. Avoid hot spots\u2014don't shard by timestamp. Cross-shard queries are expensive. Consider sharding only after vertical scaling exhausted."}
+{"input": "jq json parsing only: lex", "output": "lex: jq json parsing command\nlex: jq filter select query\nlex: jq command line json"}
+{"input": "jq json parsing only: vec", "output": "vec: how to use jq to parse and transform json data from the command line\nvec: what are the common jq filters for extracting and manipulating json fields"}
+{"input": "jq json parsing only: hyde", "output": "hyde: jq is a command-line JSON processor. Extract field: jq '.name' file.json. Array element: jq '.[0]'. Nested: jq '.users[].email'. Filter: jq '.items[] | select(.price > 100)'. Transform: jq '{name: .title, count: .items | length}'. Raw output: jq -r. Pipe curl output: curl api | jq '.data'."}
+{"input": "compile time vs runtime errors only: lex", "output": "lex: compile time runtime error difference\nlex: static dynamic type checking\nlex: compilation errors vs exceptions"}
+{"input": "compile time vs runtime errors only: vec", "output": "vec: what is the difference between compile time and runtime errors in programming\nvec: why are compile time errors generally preferable to runtime errors for code reliability"}
+{"input": "compile time vs runtime errors only: hyde", "output": "hyde: Compile time errors occur during compilation before code runs\u2014syntax errors, type mismatches in statically typed languages. Runtime errors occur during execution\u2014null pointer, division by zero, file not found. Compile time errors are caught early, cheaper to fix. Static typing and linters catch more at compile time. TypeScript catches errors that JavaScript defers to runtime."}
+{"input": "content delivery network cdn only: lex", "output": "lex: cdn content delivery network\nlex: cdn caching edge servers\nlex: cloudflare cdn setup"}
+{"input": "content delivery network cdn only: vec", "output": "vec: how does a content delivery network cdn improve website performance\nvec: what content should you serve through a cdn and how do you configure cache headers"}
+{"input": "content delivery network cdn only: hyde", "output": "hyde: CDN caches content at edge servers geographically close to users, reducing latency. Serve static assets (images, CSS, JS) through CDN. Set Cache-Control headers: max-age=31536000 for versioned assets, shorter for dynamic content. Configure origin pulls, purge cache on deploys. Popular CDNs: Cloudflare, CloudFront, Fastly, Akamai."}
+{"input": "circuit breaker pattern only: lex", "output": "lex: circuit breaker pattern\nlex: circuit breaker resilience\nlex: hystrix resilience4j circuit"}
+{"input": "circuit breaker pattern only: vec", "output": "vec: what is the circuit breaker pattern and how does it improve system resilience\nvec: how do you implement circuit breakers to prevent cascade failures in distributed systems"}
+{"input": "circuit breaker pattern only: hyde", "output": "hyde: Circuit breaker prevents repeated calls to failing services. States: Closed (normal), Open (failing, reject calls immediately), Half-Open (test recovery). After N failures, opens circuit. After timeout, allows test request. If succeeds, closes. Prevents cascade failures, provides fallbacks. Libraries: resilience4j (Java), polly (.NET), opossum (Node.js)."}
+{"input": "mac address vs ip address only: lex", "output": "lex: mac address ip address difference\nlex: mac address layer 2 hardware\nlex: ip vs mac network address"}
+{"input": "mac address vs ip address only: vec", "output": "vec: what is the difference between a mac address and an ip address in networking\nvec: how do mac addresses and ip addresses work together for network communication"}
+{"input": "mac address vs ip address only: hyde", "output": "hyde: MAC address is hardware identifier burned into NIC, 48 bits (AA:BB:CC:DD:EE:FF), used in Layer 2 (local network). IP address is logical, assigned by network, used in Layer 3 (routing). ARP maps IP to MAC on local network. IP gets packets between networks, MAC delivers within a network segment. MAC is permanent, IP changes with network."}
+{"input": "unit test vs integration test only: lex", "output": "lex: unit test integration test difference\nlex: testing pyramid unit integration e2e\nlex: unit test isolation mocking"}
+{"input": "unit test vs integration test only: vec", "output": "vec: what is the difference between unit tests and integration tests\nvec: how should you balance unit tests and integration tests in the testing pyramid"}
+{"input": "unit test vs integration test only: hyde", "output": "hyde: Unit tests verify single functions or classes in isolation using mocks for dependencies. Fast, many of them. Integration tests verify components working together with real dependencies. Slower, fewer of them. Testing pyramid: many unit tests at base, fewer integration tests in middle, few e2e tests at top. Unit tests catch logic bugs, integration tests catch interface mismatches."}
+{"input": "base64 encoding decoding only: lex", "output": "lex: base64 encoding decoding\nlex: base64 encode decode string\nlex: base64 binary to text"}
+{"input": "base64 encoding decoding only: vec", "output": "vec: what is base64 encoding and when should you use it\nvec: how do you encode and decode base64 strings in different programming languages"}
+{"input": "base64 encoding decoding only: hyde", "output": "hyde: Base64 encodes binary data as ASCII text using 64 characters (A-Z, a-z, 0-9, +, /). Increases size by ~33%. Use for embedding binary in JSON/XML, data URLs, email attachments. Not encryption\u2014easily decoded. In shell: echo -n 'text' | base64. Decode: echo 'dGV4dA==' | base64 -d. In JS: btoa('text'), atob('dGV4dA==')."}
+{"input": "tail recursion optimization only: lex", "output": "lex: tail recursion optimization\nlex: tail call optimization tco\nlex: recursive function stack overflow"}
+{"input": "tail recursion optimization only: vec", "output": "vec: what is tail recursion and how does tail call optimization prevent stack overflow\nvec: how do you convert a recursive function to tail recursive form"}
+{"input": "tail recursion optimization only: hyde", "output": "hyde: Tail recursion: recursive call is the last operation, no work after it returns. TCO reuses stack frame instead of adding new one\u2014prevents stack overflow. Convert by passing accumulated result as parameter: factorial(n, acc=1) { return n <= 1 ? acc : factorial(n-1, n*acc); }. Not all languages implement TCO\u2014JavaScript in strict mode, Scheme yes, Python no."}
+{"input": "nginx location block only: lex", "output": "lex: nginx location block config\nlex: nginx location regex prefix\nlex: nginx location matching order"}
+{"input": "nginx location block only: vec", "output": "vec: how do nginx location blocks work and in what order are they matched\nvec: what is the syntax for nginx location directives including prefix and regex matching"}
+{"input": "nginx location block only: hyde", "output": "hyde: Location matching order: 1) Exact match (= /path), 2) Preferential prefix (^~ /path), 3) Regex in config order (~* case-insensitive, ~ case-sensitive), 4) Longest prefix match. Example: location /api { proxy_pass http://backend; }. Regex: location ~ \\.php$ { fastcgi_pass; }. Use = for exact matches to skip regex evaluation."}
+{"input": "oop encapsulation abstraction only: lex", "output": "lex: oop encapsulation abstraction\nlex: object oriented principles\nlex: encapsulation data hiding"}
+{"input": "oop encapsulation abstraction only: vec", "output": "vec: what are encapsulation and abstraction in object oriented programming\nvec: how do encapsulation and abstraction differ and why are they important for software design"}
+{"input": "oop encapsulation abstraction only: hyde", "output": "hyde: Encapsulation bundles data and methods, restricting direct access via private fields and public getters/setters. Protects internal state, enables validation. Abstraction hides implementation complexity, exposing only essential interface. Car has accelerate() method\u2014you don't need to know engine internals. Encapsulation is how you hide, abstraction is what you hide."}
+{"input": "webhook vs api polling only: lex", "output": "lex: webhook vs polling api\nlex: push vs pull api pattern\nlex: webhook callback http"}
+{"input": "webhook vs api polling only: vec", "output": "vec: what are the differences between webhooks and api polling for receiving updates\nvec: when should you use webhooks instead of polling an api for changes"}
+{"input": "webhook vs api polling only: hyde", "output": "hyde: Polling: client repeatedly asks server for updates. Simple but wastes bandwidth if nothing changed, may miss events between polls. Webhooks: server pushes updates to client endpoint when events occur. Real-time, efficient, but requires public endpoint and handling failures. Use webhooks when available (Stripe, GitHub), fall back to polling for systems without webhook support."}
+{"input": "database transaction isolation levels only: lex", "output": "lex: database transaction isolation levels\nlex: read committed serializable\nlex: sql isolation dirty read phantom"}
+{"input": "database transaction isolation levels only: vec", "output": "vec: what are the different database transaction isolation levels and their tradeoffs\nvec: how do isolation levels prevent anomalies like dirty reads and phantom reads"}
+{"input": "database transaction isolation levels only: hyde", "output": "hyde: Isolation levels from weakest to strongest: Read Uncommitted (dirty reads possible), Read Committed (sees only committed data, default in PostgreSQL), Repeatable Read (no non-repeatable reads), Serializable (no phantom reads, full isolation). Higher isolation = more locking = lower concurrency. Choose based on consistency needs vs performance."}
+{"input": "hash table collision resolution only: lex", "output": "lex: hash table collision resolution\nlex: hash map chaining open addressing\nlex: hash collision handling"}
+{"input": "hash table collision resolution only: vec", "output": "vec: how do hash tables handle collisions when multiple keys hash to the same bucket\nvec: what are the differences between chaining and open addressing for collision resolution"}
+{"input": "hash table collision resolution only: hyde", "output": "hyde: Chaining: each bucket holds a linked list of entries with same hash. Simple, handles high load well. Open addressing: on collision, probe for next empty slot. Linear probing (check next slot), quadratic probing, double hashing. Better cache locality but degrades at high load factors. Most implementations use chaining (Java HashMap) or open addressing with good probing (Python dict)."}
+{"input": "yaml vs json config only: lex", "output": "lex: yaml json config comparison\nlex: yaml vs json syntax\nlex: configuration file format"}
+{"input": "yaml vs json config only: vec", "output": "vec: what are the differences between yaml and json for configuration files\nvec: when should you choose yaml over json for application configuration"}
+{"input": "yaml vs json config only: hyde", "output": "hyde: JSON: strict syntax, no comments, explicit quotes, universal parsing. YAML: superset of JSON, allows comments, cleaner for humans, indentation-based. Use JSON for data interchange, APIs, when strict parsing needed. Use YAML for configs (Docker Compose, Kubernetes, CI/CD) where human editing is common. YAML gotchas: Norway problem (NO parsed as false), inconsistent indentation."}
+{"input": "Kubernetes ingress controller only: lex", "output": "lex: kubernetes ingress controller\nlex: k8s ingress nginx traefik\nlex: ingress rules path host"}
+{"input": "Kubernetes ingress controller only: vec", "output": "vec: what is a kubernetes ingress controller and how does it route external traffic to services\nvec: how do you configure ingress rules for path-based and host-based routing in kubernetes"}
+{"input": "Kubernetes ingress controller only: hyde", "output": "hyde: Ingress controller implements Ingress resources, routing external HTTP/HTTPS to services. Popular controllers: nginx-ingress, Traefik, HAProxy. Ingress resource defines rules: host (foo.com), paths (/api -> api-service, / -> frontend). Annotations configure TLS, rate limiting, auth. Install controller first, then create Ingress resources."}
+{"input": "docker layer caching only: lex", "output": "lex: docker layer caching build\nlex: dockerfile cache optimization\nlex: docker build cache layers"}
+{"input": "docker layer caching only: vec", "output": "vec: how does docker layer caching work and how do you optimize dockerfiles for faster builds\nvec: what dockerfile practices maximize cache hits when building docker images"}
+{"input": "docker layer caching only: hyde", "output": "hyde: Docker caches each instruction as a layer. Cache invalidates when instruction or context changes, invalidating all subsequent layers. Optimization: order from least to most frequently changing. Copy package.json and install deps before copying source code. Use .dockerignore. Multi-stage builds discard intermediate layers. COPY --from for selective extraction."}
+{"input": "ssh tunnel port forwarding only: lex", "output": "lex: ssh tunnel port forwarding\nlex: ssh local remote forward\nlex: ssh -L -R tunnel"}
+{"input": "ssh tunnel port forwarding only: vec", "output": "vec: how to set up ssh tunnels for local and remote port forwarding\nvec: what is the difference between ssh local port forwarding and remote port forwarding"}
+{"input": "ssh tunnel port forwarding only: hyde", "output": "hyde: Local forwarding (-L): access remote service through local port. ssh -L 8080:localhost:3000 server\u2014localhost:8080 reaches server's port 3000. Remote forwarding (-R): expose local service through remote port. ssh -R 8080:localhost:3000 server\u2014server:8080 reaches your port 3000. Use for accessing databases behind firewalls, exposing dev servers temporarily."}
+{"input": "rest api pagination only: lex", "output": "lex: rest api pagination\nlex: api pagination offset cursor\nlex: paginated response next page"}
+{"input": "rest api pagination only: vec", "output": "vec: what are the different approaches to implementing pagination in rest apis\nvec: how do offset-based and cursor-based pagination compare for api design"}
+{"input": "rest api pagination only: hyde", "output": "hyde: Offset pagination: ?page=2&limit=20 or ?offset=20&limit=20. Simple but slow for deep pages, inconsistent with real-time inserts. Cursor pagination: ?cursor=abc123&limit=20, cursor encodes position. Consistent, efficient, better for infinite scroll. Return next_cursor in response. Use Link headers or response body for pagination URLs."}
+{"input": "solid principles explained only: lex", "output": "lex: solid principles oop\nlex: single responsibility open closed\nlex: solid design principles"}
+{"input": "solid principles explained only: vec", "output": "vec: what are the solid principles in object oriented design\nvec: how do the solid principles improve code maintainability and flexibility"}
+{"input": "solid principles explained only: hyde", "output": "hyde: SOLID: Single Responsibility (one reason to change), Open/Closed (open for extension, closed for modification), Liskov Substitution (subtypes substitutable for base types), Interface Segregation (many specific interfaces over one general), Dependency Inversion (depend on abstractions not concretions). Following SOLID produces loosely coupled, testable, maintainable code."}
+{"input": "protobuf vs json only: lex", "output": "lex: protobuf json comparison\nlex: protocol buffers serialization\nlex: grpc protobuf format"}
+{"input": "protobuf vs json only: vec", "output": "vec: what are the differences between protocol buffers and json for data serialization\nvec: when should you use protobuf instead of json for api communication"}
+{"input": "protobuf vs json only: hyde", "output": "hyde: JSON: human-readable, self-describing, universal support, larger payload. Protobuf: binary format, 3-10x smaller, faster serialization, requires schema (.proto files), strong typing. Use JSON for public APIs, debugging, human interaction. Use Protobuf for internal microservices, high-throughput systems, gRPC. Schema evolution with field numbers enables backward compatibility."}
+{"input": "linux namespaces containers only: lex", "output": "lex: linux namespaces containers\nlex: container isolation namespace cgroup\nlex: docker linux namespaces"}
+{"input": "linux namespaces containers only: vec", "output": "vec: how do linux namespaces enable container isolation\nvec: what kernel features do docker and containers use for process isolation"}
+{"input": "linux namespaces containers only: hyde", "output": "hyde: Containers use Linux namespaces for isolation: PID (process tree), NET (network stack), MNT (filesystem mounts), UTS (hostname), IPC (inter-process communication), USER (user IDs). Cgroups limit resource usage (CPU, memory). Together they isolate processes without full VM overhead. Containers share host kernel but see isolated views of system resources."}
+{"input": "GraphQL subscriptions websocket only: lex", "output": "lex: graphql subscriptions websocket\nlex: graphql realtime subscriptions\nlex: graphql subscription server"}
+{"input": "GraphQL subscriptions websocket only: vec", "output": "vec: how do graphql subscriptions work for real-time data updates\nvec: what is the underlying protocol for graphql subscriptions and how do you implement them"}
+{"input": "GraphQL subscriptions websocket only: hyde", "output": "hyde: GraphQL subscriptions enable real-time updates via persistent connections. Client subscribes: subscription { messageAdded { text } }. Server pushes when events occur. Typically uses WebSocket with graphql-ws protocol. Server maintains subscription registry, publishes events through PubSub. Apollo Server and Relay support subscriptions natively."}
+{"input": "stateless vs stateful services only: lex", "output": "lex: stateless stateful service\nlex: stateless api design\nlex: session state storage"}
+{"input": "stateless vs stateful services only: vec", "output": "vec: what is the difference between stateless and stateful services in application architecture\nvec: why are stateless services easier to scale and how do you handle state when needed"}
+{"input": "stateless vs stateful services only: hyde", "output": "hyde: Stateless services don't store client state between requests\u2014any instance can handle any request. Scale by adding instances, no session affinity needed. Stateful services maintain client state, requiring sticky sessions or shared storage. Make services stateless by storing session in JWT tokens, Redis, or databases. Stateless is preferred for horizontal scaling and resilience."}
+{"input": "git bisect debugging only: lex", "output": "lex: git bisect bug finding\nlex: git bisect good bad\nlex: binary search git commit"}
+{"input": "git bisect debugging only: vec", "output": "vec: how to use git bisect to find the commit that introduced a bug\nvec: what is the git bisect workflow for binary search debugging through commit history"}
+{"input": "git bisect debugging only: hyde", "output": "hyde: git bisect does binary search through commits to find where bug was introduced. Start: git bisect start, git bisect bad (current has bug), git bisect good v1.0 (known good commit). Git checks out middle commit\u2014test and mark git bisect good or git bisect bad. Repeat until found. Automate with git bisect run ./test.sh. End with git bisect reset."}
+{"input": "dns propagation time only: lex", "output": "lex: dns propagation time\nlex: dns ttl propagation delay\nlex: dns changes not working"}
+{"input": "dns propagation time only: vec", "output": "vec: why do dns changes take time to propagate and how can you speed it up\nvec: what is dns propagation and how does ttl affect how quickly changes are visible"}
+{"input": "dns propagation time only: hyde", "output": "hyde: DNS propagation is time for changes to spread through cached resolvers worldwide. TTL (Time To Live) controls cache duration. High TTL (86400s) means up to 24h wait. Before changes, lower TTL to 300s, wait for old TTL, make change, then restore TTL. Use dig @8.8.8.8 domain.com to check Google's view. Full propagation can take 24-48h for high-TTL records."}
+{"input": "fall of the Roman Empire only: lex", "output": "lex: roman empire fall causes\nlex: decline of rome 476 AD\nlex: western roman empire collapse"}
+{"input": "fall of the Roman Empire only: vec", "output": "vec: what were the main causes of the fall of the western roman empire\nvec: how did economic, military, and political factors contribute to rome's collapse"}
+{"input": "fall of the Roman Empire only: hyde", "output": "hyde: The Western Roman Empire fell in 476 AD when Odoacer deposed Romulus Augustulus. Contributing factors included economic troubles, military overextension, political instability with rapid emperor turnover, pressure from Germanic tribes, and the division of the empire. The Eastern Roman Empire (Byzantine) survived until 1453."}
+{"input": "causes of World War I only: lex", "output": "lex: world war 1 causes\nlex: ww1 assassination archduke franz ferdinand\nlex: causes great war 1914"}
+{"input": "causes of World War I only: vec", "output": "vec: what were the main causes and triggers of world war one\nvec: how did the assassination of archduke franz ferdinand lead to a global war"}
+{"input": "causes of World War I only: hyde", "output": "hyde: WWI was caused by MAIN: Militarism, Alliances, Imperialism, Nationalism. The assassination of Archduke Franz Ferdinand on June 28, 1914 in Sarajevo triggered a chain reaction through alliance systems. Austria-Hungary declared war on Serbia, pulling in Russia, Germany, France, and Britain within weeks."}
+{"input": "ancient Egypt pyramids construction only: lex", "output": "lex: egyptian pyramids how built\nlex: pyramid construction ancient egypt\nlex: great pyramid giza building"}
+{"input": "ancient Egypt pyramids construction only: vec", "output": "vec: how were the ancient egyptian pyramids constructed without modern technology\nvec: what techniques and labor did ancient egyptians use to build the pyramids at giza"}
+{"input": "ancient Egypt pyramids construction only: hyde", "output": "hyde: The pyramids were built using ramps, levers, and organized labor forces of tens of thousands of workers. Limestone blocks weighing 2.5 tons average were quarried nearby and transported on sledges. Workers were not slaves but paid laborers housed in nearby villages. The Great Pyramid took approximately 20 years to complete around 2560 BC."}
+{"input": "French Revolution timeline only: lex", "output": "lex: french revolution timeline events\nlex: french revolution 1789 bastille\nlex: reign of terror robespierre"}
+{"input": "French Revolution timeline only: vec", "output": "vec: what were the major events of the french revolution in chronological order\nvec: how did the french revolution progress from the storming of the bastille to napoleon"}
+{"input": "French Revolution timeline only: hyde", "output": "hyde: 1789: Estates-General convenes, Bastille stormed July 14. 1791: Constitutional monarchy established. 1792: Republic declared, king executed. 1793-94: Reign of Terror under Robespierre, 17,000 guillotined. 1794: Thermidorian Reaction ends Terror. 1799: Napoleon's coup establishes Consulate."}
+{"input": "Ottoman Empire history only: lex", "output": "lex: ottoman empire history\nlex: ottoman sultanate 1299 1922\nlex: turkish ottoman empire rise fall"}
+{"input": "Ottoman Empire history only: vec", "output": "vec: what was the history of the ottoman empire from its founding to its dissolution\nvec: how did the ottoman empire rise to become a major world power and eventually decline"}
+{"input": "Ottoman Empire history only: hyde", "output": "hyde: Founded by Osman I around 1299, the Ottoman Empire conquered Constantinople in 1453, ending the Byzantine Empire. At its peak under Suleiman the Magnificent (1520-1566), it controlled Southeast Europe, Western Asia, and North Africa. Gradual decline through the 18th-19th centuries culminated in dissolution after WWI in 1922."}
+{"input": "American Civil War battles only: lex", "output": "lex: american civil war battles\nlex: civil war gettysburg antietam\nlex: union confederate battles 1861"}
+{"input": "American Civil War battles only: vec", "output": "vec: what were the major battles of the american civil war\nvec: which battles were turning points in the civil war between union and confederate forces"}
+{"input": "American Civil War battles only: hyde", "output": "hyde: Major battles: Fort Sumter (1861, war begins), Bull Run (Confederate victory), Antietam (1862, bloodiest single day, led to Emancipation Proclamation), Gettysburg (1863, Union turning point), Vicksburg (Union controls Mississippi), Sherman's March (1864), Appomattox (1865, Lee surrenders). Total casualties exceeded 600,000."}
+{"input": "Ming Dynasty China only: lex", "output": "lex: ming dynasty china history\nlex: ming dynasty 1368 1644\nlex: chinese ming emperors"}
+{"input": "Ming Dynasty China only: vec", "output": "vec: what were the major achievements and characteristics of the ming dynasty in china\nvec: how did the ming dynasty rise to power and what led to its eventual fall"}
+{"input": "Ming Dynasty China only: hyde", "output": "hyde: The Ming Dynasty (1368-1644) was founded by Zhu Yuanzhang after overthrowing Mongol Yuan rule. Notable achievements: construction of the Forbidden City, voyages of Zheng He, restoration of the Great Wall, and flourishing arts and porcelain. Fell to the Manchu Qing after peasant rebellions weakened central authority."}
+{"input": "Viking Age exploration only: lex", "output": "lex: viking age exploration\nlex: vikings norse exploration america\nlex: viking raids settlements"}
+{"input": "Viking Age exploration only: vec", "output": "vec: where did the vikings explore and settle during the viking age\nvec: what routes did norse explorers take and what lands did they discover"}
+{"input": "Viking Age exploration only: hyde", "output": "hyde: The Viking Age (793-1066 AD) saw Norse expansion across Europe and beyond. Vikings raided British Isles and France, settled Iceland (874), Greenland (985), and reached North America (Vinland, c.1000) under Leif Erikson. They also traveled east through Russia to Constantinople and served as Varangian Guard."}
+{"input": "Industrial Revolution inventions only: lex", "output": "lex: industrial revolution inventions\nlex: industrial revolution steam engine\nlex: 18th century industrial innovations"}
+{"input": "Industrial Revolution inventions only: vec", "output": "vec: what were the key inventions that drove the industrial revolution\nvec: how did the steam engine and textile machinery transform manufacturing in the 18th century"}
+{"input": "Industrial Revolution inventions only: hyde", "output": "hyde: Key inventions: Spinning Jenny (1764), Water Frame (1769), Steam Engine improved by James Watt (1769), Power Loom (1785), Cotton Gin (1793), Steam Locomotive (1804). These enabled factory production, mass manufacturing, and transformed society from agricultural to industrial. Britain led the revolution starting around 1760."}
+{"input": "Byzantine Empire Constantinople only: lex", "output": "lex: byzantine empire constantinople\nlex: eastern roman empire byzantium\nlex: fall of constantinople 1453"}
+{"input": "Byzantine Empire Constantinople only: vec", "output": "vec: what was the byzantine empire and how long did it last after rome fell\nvec: how did constantinople serve as the capital of the byzantine empire until 1453"}
+{"input": "Byzantine Empire Constantinople only: hyde", "output": "hyde: The Byzantine Empire was the continuation of the Eastern Roman Empire, lasting from 330 AD (Constantinople founded) to 1453. At its peak under Justinian I, it reconquered much of the western Mediterranean. Constantinople was the largest and wealthiest European city for centuries until falling to Ottoman Turks under Mehmed II on May 29, 1453."}
+{"input": "Aztec Empire civilization only: lex", "output": "lex: aztec empire civilization\nlex: aztec tenochtitlan mexico\nlex: aztec history mesoamerica"}
+{"input": "Aztec Empire civilization only: vec", "output": "vec: what was the aztec empire and how did their civilization develop in mesoamerica\nvec: how did the aztecs build tenochtitlan and what led to the fall of their empire"}
+{"input": "Aztec Empire civilization only: hyde", "output": "hyde: The Aztec Empire (1428-1521) dominated central Mexico from their capital Tenochtitlan, built on an island in Lake Texcoco (modern Mexico City). Population reached 200,000+. Known for pyramids, human sacrifice, chinampas (floating gardens), and tribute system. Conquered by Hern\u00e1n Cort\u00e9s in 1521 with help from rival indigenous groups and smallpox."}
+{"input": "Renaissance Italy Florence only: lex", "output": "lex: renaissance italy florence\nlex: italian renaissance medici\nlex: florence renaissance art"}
+{"input": "Renaissance Italy Florence only: vec", "output": "vec: why did the renaissance begin in italy particularly in florence\nvec: how did the medici family and florence become the center of the italian renaissance"}
+{"input": "Renaissance Italy Florence only: hyde", "output": "hyde: The Renaissance began in Florence around 1400 due to wealth from banking and trade, political stability, and classical heritage. The Medici family, especially Lorenzo the Magnificent, patronized artists like Leonardo, Michelangelo, and Botticelli. Florence's guilds, humanism from rediscovered Greek texts, and competition among city-states drove cultural innovation."}
+{"input": "Cold War Berlin Wall only: lex", "output": "lex: cold war berlin wall\nlex: berlin wall 1961 1989\nlex: east west germany division"}
+{"input": "Cold War Berlin Wall only: vec", "output": "vec: what was the significance of the berlin wall during the cold war\nvec: why was the berlin wall built and what led to its fall in 1989"}
+{"input": "Cold War Berlin Wall only: hyde", "output": "hyde: The Berlin Wall was built overnight on August 13, 1961 by East Germany to stop emigration to the West\u20143.5 million had fled since 1945. It divided Berlin for 28 years, symbolizing the Iron Curtain. Fell November 9, 1989 after Hungary opened its border and East German protests grew. Germany reunified October 3, 1990."}
+{"input": "Mongol Empire Genghis Khan only: lex", "output": "lex: mongol empire genghis khan\nlex: mongol conquests 13th century\nlex: genghis khan mongol history"}
+{"input": "Mongol Empire Genghis Khan only: vec", "output": "vec: how did genghis khan build the mongol empire into the largest contiguous land empire\nvec: what territories did the mongol empire conquer and how did they administer such vast lands"}
+{"input": "Mongol Empire Genghis Khan only: hyde", "output": "hyde: Genghis Khan united Mongol tribes by 1206 and conquered from Korea to Poland by his death in 1227. The empire peaked under his grandsons, spanning 24 million km\u00b2\u2014largest contiguous empire ever. Success came from cavalry tactics, meritocracy, religious tolerance, and the Yam relay system. Divided into khanates after 1260."}
+{"input": "ancient Greece democracy Athens only: lex", "output": "lex: ancient greece democracy athens\nlex: athenian democracy 5th century bc\nlex: greek democracy origins"}
+{"input": "ancient Greece democracy Athens only: vec", "output": "vec: how did democracy develop in ancient athens and how did it function\nvec: what were the key institutions and practices of athenian democracy"}
+{"input": "ancient Greece democracy Athens only: hyde", "output": "hyde: Athenian democracy emerged under Cleisthenes (508 BC) and peaked under Pericles (461-429 BC). Citizens (adult male non-slaves) voted directly in the Assembly (Ekklesia) on laws and policy. The Council of 500, chosen by lot, set the agenda. Jury courts had hundreds of jurors. About 30,000 of 300,000 residents were citizens."}
+{"input": "Protestant Reformation Martin Luther only: lex", "output": "lex: protestant reformation luther\nlex: martin luther 95 theses\nlex: reformation 1517 catholic church"}
+{"input": "Protestant Reformation Martin Luther only: vec", "output": "vec: what started the protestant reformation and what were its main ideas\nvec: how did martin luther's 95 theses challenge the catholic church and spread across europe"}
+{"input": "Protestant Reformation Martin Luther only: hyde", "output": "hyde: Martin Luther posted his 95 Theses on October 31, 1517 in Wittenberg, criticizing indulgences and papal authority. Key ideas: salvation by faith alone, scripture as sole authority, priesthood of all believers. The printing press spread his ideas rapidly. Luther was excommunicated in 1521. The Reformation split Western Christianity and sparked religious wars across Europe."}
+{"input": "Silk Road trade routes only: lex", "output": "lex: silk road trade route\nlex: silk road ancient trade china\nlex: silk road history commerce"}
+{"input": "Silk Road trade routes only: vec", "output": "vec: what was the silk road and how did it connect east and west\nvec: what goods and ideas were exchanged along the ancient silk road trade routes"}
+{"input": "Silk Road trade routes only: hyde", "output": "hyde: The Silk Road was a network of trade routes connecting China to the Mediterranean from around 130 BC to 1450s AD. Goods traded: silk, spices, porcelain from East; gold, glass, horses from West. Also spread Buddhism, Islam, technologies like paper and gunpowder, and unfortunately, the Black Death. Named by German geographer Ferdinand von Richthofen in 1877."}
+{"input": "Napoleonic Wars Europe only: lex", "output": "lex: napoleonic wars europe\nlex: napoleon bonaparte campaigns\nlex: napoleonic era 1803 1815"}
+{"input": "Napoleonic Wars Europe only: vec", "output": "vec: what were the major campaigns and outcomes of the napoleonic wars\nvec: how did napoleon's military conquests reshape europe and lead to his downfall"}
+{"input": "Napoleonic Wars Europe only: hyde", "output": "hyde: The Napoleonic Wars (1803-1815) saw France under Napoleon dominate continental Europe through brilliant campaigns at Austerlitz, Jena, and Wagram. His empire stretched from Spain to Poland. The failed 1812 Russian invasion (600,000 troops, 100,000 returned) began his decline. Exiled to Elba 1814, returned for Hundred Days, finally defeated at Waterloo June 18, 1815."}
+{"input": "ancient Mesopotamia civilizations only: lex", "output": "lex: ancient mesopotamia civilizations\nlex: mesopotamia sumer babylon\nlex: cradle of civilization tigris euphrates"}
+{"input": "ancient Mesopotamia civilizations only: vec", "output": "vec: what civilizations arose in ancient mesopotamia and what were their achievements\nvec: why is mesopotamia called the cradle of civilization and what did sumerians invent"}
+{"input": "ancient Mesopotamia civilizations only: hyde", "output": "hyde: Mesopotamia (modern Iraq) between Tigris and Euphrates rivers hosted the world's first civilizations. Sumerians (4500-1900 BC) invented writing (cuneiform), the wheel, sailboat, and plow. Akkadian Empire under Sargon was first empire. Babylon produced Hammurabi's Code. Assyrians and Persians followed. Agriculture surplus enabled cities, specialization, and complex society."}
+{"input": "Meiji Restoration Japan only: lex", "output": "lex: meiji restoration japan\nlex: meiji era modernization 1868\nlex: japan meiji emperor reform"}
+{"input": "Meiji Restoration Japan only: vec", "output": "vec: what was the meiji restoration and how did it transform japan\nvec: how did japan modernize so rapidly during the meiji period from 1868 to 1912"}
+{"input": "Meiji Restoration Japan only: hyde", "output": "hyde: The Meiji Restoration (1868) ended 250 years of Tokugawa shogunate rule, restoring imperial power under Emperor Meiji. Japan rapidly industrialized and westernized: abolished feudalism, created national army, built railways, established constitution (1889). Slogan: 'Rich country, strong army.' Japan defeated China (1895) and Russia (1905), becoming a world power within 50 years."}
+{"input": "Black Death plague Europe only: lex", "output": "lex: black death plague europe\nlex: bubonic plague 1347 medieval\nlex: black death medieval europe"}
+{"input": "Black Death plague Europe only: vec", "output": "vec: what was the black death and how did it impact medieval europe\nvec: how did the bubonic plague spread across europe and what were its consequences"}
+{"input": "Black Death plague Europe only: hyde", "output": "hyde: The Black Death (1347-1351) killed 75-200 million people, 30-60% of Europe's population. Caused by Yersinia pestis bacteria spread by fleas on rats, it arrived via Genoese ships from Crimea. Symptoms: buboes, fever, death within days. Consequences: labor shortages raised wages, weakened feudalism, sparked religious movements and persecution of Jews."}
+{"input": "Spanish Conquest Americas only: lex", "output": "lex: spanish conquest americas\nlex: conquistadors cortez pizarro\nlex: spanish colonization new world"}
+{"input": "Spanish Conquest Americas only: vec", "output": "vec: how did spanish conquistadors conquer the aztec and inca empires\nvec: what factors enabled spain to colonize the americas so rapidly in the 16th century"}
+{"input": "Spanish Conquest Americas only: hyde", "output": "hyde: Hern\u00e1n Cort\u00e9s conquered the Aztec Empire (1519-1521) with 500 soldiers, allying with Tlaxcalans and exploiting Montezuma's hesitation. Francisco Pizarro conquered the Inca Empire (1532-1533) capturing Atahualpa during civil war. Spanish advantages: steel weapons, horses, gunpowder, and crucially, Old World diseases like smallpox that killed 90% of indigenous populations."}
+{"input": "World War II D-Day only: lex", "output": "lex: world war 2 d-day normandy\nlex: d-day june 6 1944 invasion\nlex: operation overlord ww2"}
+{"input": "World War II D-Day only: vec", "output": "vec: what happened on d-day and why was the normandy invasion a turning point in world war two\nvec: how was the d-day invasion of normandy planned and executed by allied forces"}
+{"input": "World War II D-Day only: hyde", "output": "hyde: D-Day, June 6, 1944, was the largest amphibious invasion in history. Operation Overlord landed 156,000 Allied troops on five Normandy beaches (Utah, Omaha, Gold, Juno, Sword). Despite 10,000+ casualties, it established a Western Front, leading to Paris liberation (August 1944) and Germany's surrender (May 1945). Supreme Commander: Dwight D. Eisenhower."}
+{"input": "Han Dynasty China achievements only: lex", "output": "lex: han dynasty china achievements\nlex: han dynasty 206 bc history\nlex: ancient china han empire"}
+{"input": "Han Dynasty China achievements only: vec", "output": "vec: what were the major achievements and contributions of the han dynasty in china\nvec: why is the han dynasty considered a golden age in chinese history"}
+{"input": "Han Dynasty China achievements only: hyde", "output": "hyde: The Han Dynasty (206 BC - 220 AD) is considered China's golden age. Achievements: Silk Road trade established, paper invented (105 AD), civil service exams introduced, Confucianism became state ideology. Population reached 60 million. So influential that ethnic Chinese still call themselves 'Han people.' Collapsed due to court intrigue, eunuch power, and Yellow Turban Rebellion."}

+ 1498 - 1000
finetune/data/qmd_expansion_v2.jsonl

@@ -1,1000 +1,1498 @@
-{"input": "how tourism affects local cultures", "output": "hyde: Tourism often leads to cultural commodification, where traditional dances, crafts, and rituals are adapted to meet tourist expectations. In Bali, temple ceremonies have been shortened and repackaged as entertainment, diluting their spiritual significance for locals.\nlex: tourism impact local culture\nlex: cultural effects mass tourism communities\nlex: tourist influence indigenous traditions\nvec: what are the positive and negative effects of tourism on local cultural traditions and communities\nvec: how does mass tourism change the customs, language, and daily life of host communities"}
-{"input": "how to ferment foods at home", "output": "hyde: To ferment vegetables at home, submerge them in a 2-3% salt brine in a mason jar. Keep at room temperature (65-75\u00b0F) for 3-7 days, burping the jar daily to release CO2. Taste after day 3 and refrigerate once the tanginess is to your liking.\nlex: home fermentation vegetables guide\nlex: lacto fermentation salt brine method\nlex: homemade sauerkraut kimchi ferment\nvec: what is the step-by-step process for fermenting vegetables at home using salt brine\nvec: how do you safely ferment foods like sauerkraut and kimchi in your kitchen"}
-{"input": "how to mix modern and vintage decor", "output": "hyde: Pair a vintage wooden dresser with a sleek modern mirror. Use neutral wall colors as a backdrop and let one statement antique piece anchor each room. Mix textures\u2014a velvet mid-century sofa with clean-lined metal side tables creates visual contrast without clashing.\nlex: modern vintage decor mix interior design\nlex: combining antique furniture contemporary style\nvec: how do you blend vintage furniture and antique pieces with modern interior design elements\nvec: what are effective ways to combine mid-century or antique decor with contemporary minimalist style"}
-{"input": "how to perform a scientific experiment", "output": "hyde: Step 1: Define your research question. Step 2: Formulate a testable hypothesis. Step 3: Identify independent, dependent, and controlled variables. Step 4: Design your procedure with a control group. Step 5: Collect and record data systematically. Step 6: Analyze results and draw conclusions.\nlex: scientific experiment steps procedure\nlex: scientific method hypothesis variables control\nlex: lab experiment design methodology\nvec: what are the steps to design and carry out a controlled scientific experiment\nvec: how do you formulate a hypothesis, set up controls, and collect data in a scientific experiment"}
-{"input": "web mail", "output": "hyde: Webmail allows you to access your email through a web browser without installing a desktop client. Popular services include Gmail (mail.google.com), Outlook.com, Yahoo Mail, and ProtonMail. Log in with your credentials to read, compose, and manage messages from any device.\nlex: webmail client email browser\nlex: web-based email service provider\nlex: online email login inbox access\nvec: how to access and use web-based email services like Gmail, Outlook, or Yahoo Mail through a browser\nvec: what are the most popular webmail providers and how do their features compare"}
-{"input": "what does the quran cover", "output": "hyde: The Quran covers topics including monotheism (tawhid), the Day of Judgment, stories of prophets from Adam to Muhammad, ethical conduct, family law, dietary rules, charity (zakat), prayer, and the relationship between God and humanity. It contains 114 surahs organized roughly by length.\nlex: quran topics contents themes\nlex: quran teachings subjects covered\nvec: what are the main topics and themes discussed in the Quran\nvec: what subjects does the Quran address including theology, law, morality, and prophetic stories"}
-{"input": "web config", "output": "hyde: The web.config file is an XML configuration file used by IIS and ASP.NET. It controls settings such as authentication, authorization, custom errors, connection strings, and HTTP handlers. Place it in the root of your application directory. Example: <configuration><system.web><compilation debug=\"true\"/></system.web></configuration>\nlex: web.config file IIS ASP.NET\nlex: web server configuration settings\nlex: web.config XML settings authentication\nvec: how to configure a web.config file for IIS and ASP.NET applications\nvec: what settings and sections are available in a web.config file for web server configuration"}
-{"input": "how to choose farm equipment", "output": "hyde: Match tractor horsepower to your acreage: 25-45 HP for under 50 acres, 45-85 HP for 50-200 acres, and 100+ HP for large operations. Consider PTO power for running implements like mowers and tillers. Evaluate whether two-wheel or four-wheel drive suits your terrain. Used equipment can save 40-60% over new.\nlex: farm equipment selection tractor implements\nlex: agricultural machinery buying guide\nlex: choosing tractor size horsepower acreage\nvec: what factors should you consider when selecting farm equipment like tractors and implements for your land\nvec: how do you match the right agricultural machinery to your farm size, crop type, and budget"}
-{"input": "how do thought experiments aid philosophical reasoning", "output": "hyde: Thought experiments isolate specific variables in complex problems by constructing hypothetical scenarios. Judith Jarvis Thomson's violinist argument tests bodily autonomy intuitions, while the trolley problem probes deontological vs. consequentialist reasoning. They help philosophers identify hidden assumptions and clarify conceptual boundaries.\nlex: thought experiments philosophy reasoning\nlex: philosophical thought experiment trolley problem examples\nvec: how do philosophers use thought experiments like the trolley problem to test moral and logical intuitions\nvec: what role do hypothetical scenarios play in advancing philosophical arguments and theories"}
-{"input": "what is the significance of logic in philosophy", "output": "hyde: Logic provides the structural framework for all philosophical reasoning. Aristotle's syllogistic logic established rules for valid deduction. Modern formal logic, including propositional and predicate calculus, allows philosophers to precisely evaluate argument validity, identify fallacies, and construct rigorous proofs.\nlex: logic philosophy significance role\nlex: formal logic philosophical argument validity\nvec: why is logic considered foundational to philosophical inquiry and argumentation\nvec: how does formal and informal logic help philosophers evaluate the validity of arguments"}
-{"input": "how to train for a 5k run", "output": "hyde: An 8-week 5K training plan for beginners: Weeks 1-2, alternate 1 min running and 2 min walking for 20 minutes, 3 days per week. Weeks 3-4, run 3 min, walk 1 min. Weeks 5-6, run 5 min, walk 1 min. Weeks 7-8, run continuously for 25-30 minutes. Include rest days between runs.\nlex: 5k run training plan beginner\nlex: couch to 5k running program schedule\nvec: what is a good beginner training plan to prepare for running a 5k race\nvec: how many weeks does it take to train for a 5k and what should each week look like"}
-{"input": "how to engage with political dialogues", "output": "hyde: Start by listening actively and asking clarifying questions rather than immediately countering. Use \"I\" statements instead of accusations. Acknowledge shared values before addressing disagreements. Avoid strawmanning\u2014restate the other person's position accurately before responding. Focus on specific policies rather than party labels.\nlex: political dialogue conversation civil discourse\nlex: discussing politics constructively disagreement\nvec: how can you have productive political conversations with people who hold different views\nvec: what techniques help maintain respectful and constructive political dialogue across ideological divides"}
-{"input": "what is competitive analysis", "output": "hyde: Competitive analysis is the process of identifying competitors and evaluating their strategies, strengths, and weaknesses relative to your own. Key frameworks include Porter's Five Forces, SWOT analysis, and competitor profiling. Analyze pricing, product features, market share, marketing channels, and customer reviews.\nlex: competitive analysis business strategy\nlex: competitor analysis market research framework\nvec: what is competitive analysis in business and how do companies use it to inform strategy\nvec: what frameworks and methods are used to conduct a competitive analysis of rival companies"}
-{"input": "how does the united nations operate", "output": "hyde: The UN operates through six principal organs: the General Assembly (all 193 members, one vote each), the Security Council (15 members, 5 permanent with veto power), the Secretariat, the International Court of Justice, ECOSOC, and the Trusteeship Council. Resolutions require majority votes; Security Council decisions need 9 of 15 votes with no P5 veto.\nlex: united nations structure operations governance\nlex: UN general assembly security council agencies\nvec: how is the United Nations structured and what are the roles of its main bodies like the General Assembly and Security Council\nvec: how does the UN make decisions, enforce resolutions, and coordinate international action"}
-{"input": "what are the crusades?", "output": "hyde: The Crusades were a series of religious wars between 1096 and 1291, initiated by the Latin Church to recapture the Holy Land from Muslim rule. The First Crusade (1096-1099) captured Jerusalem. Subsequent crusades had mixed results, and the last Crusader stronghold at Acre fell in 1291.\nlex: crusades medieval holy wars Jerusalem\nlex: crusades history 1096 Christian Muslim\nvec: what were the Crusades and why did European Christians launch military campaigns to the Holy Land\nvec: what were the major Crusades, their outcomes, and their lasting impact on Europe and the Middle East"}
-{"input": "what is a literary theme?", "output": "hyde: A literary theme is the underlying message or central idea explored in a work of fiction. Unlike the subject (what the story is about), the theme is what the story says about that subject. For example, a novel's subject might be war, while its theme could be \"war dehumanizes both victors and victims.\"\nlex: literary theme definition examples\nlex: theme in literature central idea meaning\nvec: what is a literary theme and how does it differ from the subject or plot of a story\nvec: how do authors develop and convey themes throughout a work of literature"}
-{"input": "what is the ethical significance of consent", "output": "hyde: Consent is ethically significant because it respects individual autonomy\u2014the right of persons to make decisions about their own bodies and lives. In medical ethics, informed consent requires that patients understand the risks, benefits, and alternatives before agreeing to treatment. Without valid consent, actions become coercive regardless of their intent.\nlex: consent ethics moral significance\nlex: informed consent autonomy medical ethics\nvec: why is consent considered ethically important in medical, legal, and interpersonal contexts\nvec: how does the concept of informed consent protect individual autonomy and human dignity"}
-{"input": "paint mix", "output": "hyde: Start with the three primary colors: red, blue, and yellow. Mix red and blue for purple, blue and yellow for green, red and yellow for orange. Add white to lighten (tint) and black to darken (shade). Mix small amounts gradually\u2014it takes less dark paint to shift a light color than the reverse.\nlex: paint color mixing guide ratios\nlex: acrylic oil paint mixing technique\nlex: paint color chart combinations blending\nvec: how do you mix paint colors to achieve specific shades and hues\nvec: what are the basic color mixing ratios and techniques for acrylic and oil paints"}
-{"input": "how to conserve energy in the office?", "output": "hyde: Switch to LED lighting and install occupancy sensors in conference rooms and restrooms. Set computers to sleep mode after 10 minutes of inactivity. Use smart power strips to eliminate phantom loads. Set thermostats to 68\u00b0F in winter and 76\u00b0F in summer. These measures typically reduce office energy use by 20-30%.\nlex: office energy conservation tips\nlex: reduce electricity workplace energy saving\nvec: what are practical ways to reduce energy consumption in an office or workplace\nvec: how can offices save electricity through lighting, HVAC, and equipment management"}
-{"input": "how to test soil ph?", "output": "hyde: Insert a soil pH meter probe 4-6 inches into moist soil for a quick reading. For more accuracy, use a chemical test kit: mix one part soil with one part distilled water, let settle, then add the indicator solution. Compare the color to the chart. Most garden plants prefer pH 6.0-7.0.\nlex: soil pH test kit method\nlex: test soil acidity alkalinity garden\nvec: how do you test the pH level of garden soil using a home test kit or meter\nvec: what methods are available for measuring soil pH and interpreting the results for gardening"}
-{"input": "navigating sustainable building certifications", "output": "hyde: LEED (Leadership in Energy and Environmental Design) awards points across categories: energy, water, materials, indoor quality, and site selection. Projects need 40-49 points for Certified, 50-59 for Silver, 60-79 for Gold, and 80+ for Platinum. BREEAM is more common in Europe and uses a percentage-based scoring system.\nlex: sustainable building certification LEED BREEAM\nlex: green building standards certification process\nvec: what are the main sustainable building certifications like LEED, BREEAM, and WELL, and how do you achieve them\nvec: how do you navigate the requirements and application process for green building certifications"}
-{"input": "what is the role of religious leaders?", "output": "hyde: Religious leaders serve as spiritual guides, interpreters of sacred texts, and community organizers. A parish priest administers sacraments, leads worship, and provides pastoral care. An imam leads prayers, delivers Friday sermons (khutbah), and offers religious guidance. Rabbis teach Torah, arbitrate Jewish law, and counsel congregants.\nlex: religious leaders role function community\nlex: clergy priests imams rabbis duties responsibilities\nvec: what roles do religious leaders like priests, imams, and rabbis play in their communities\nvec: how do religious leaders guide spiritual practice, provide counsel, and serve their congregations"}
-{"input": "how to maintain a balanced diet", "output": "hyde: A balanced diet includes roughly 45-65% carbohydrates, 20-35% fats, and 10-35% protein. Fill half your plate with fruits and vegetables, a quarter with whole grains, and a quarter with lean protein. Aim for 25-30g of fiber daily. Limit added sugars to under 25g and sodium to under 2300mg per day.\nlex: balanced diet nutrition food groups\nlex: healthy eating meal plan macronutrients\nvec: how do you maintain a balanced diet with the right proportions of proteins, carbohydrates, fats, and vitamins\nvec: what does a daily balanced meal plan look like for an average adult"}
-{"input": "what is moral philosophy", "output": "hyde: Moral philosophy, or ethics, is the branch of philosophy concerned with questions of right and wrong conduct. It includes three main branches: metaethics (the nature of moral judgments), normative ethics (frameworks like utilitarianism, deontology, and virtue ethics), and applied ethics (specific issues like abortion or euthanasia).\nlex: moral philosophy ethics definition branches\nlex: ethics normative metaethics applied\nvec: what is moral philosophy and what are its main branches including normative ethics and metaethics\nvec: how does moral philosophy address questions of right and wrong, virtue, and duty"}
-{"input": "how to use a light meter", "output": "hyde: Point an incident light meter at the camera from the subject's position with the dome facing the lens. It reads the light falling on the subject, giving accurate exposure regardless of subject brightness. For reflected metering, point the meter at the subject from the camera position. Set the ISO first, then read the recommended aperture and shutter speed.\nlex: light meter photography exposure reading\nlex: incident reflected light meter settings\nvec: how do you use a handheld light meter to measure exposure for photography\nvec: what is the difference between incident and reflected light metering and when should you use each"}
-{"input": "what is the significance of creative writing?", "output": "hyde: Creative writing allows individuals to explore complex emotions, construct meaning, and communicate experiences that resist straightforward exposition. Through fiction, poetry, and memoir, writers develop empathy by inhabiting other perspectives. Studies show that reading literary fiction improves theory of mind and emotional intelligence.\nlex: creative writing significance purpose value\nlex: creative writing literary expression storytelling\nvec: why is creative writing significant as a form of artistic expression and communication\nvec: how does creative writing contribute to culture, self-expression, and empathy"}
-{"input": "what are the key principles of confucianism?", "output": "hyde: The key principles of Confucianism include Ren (benevolence/humaneness), Li (ritual propriety), Xiao (filial piety), Yi (righteousness), and Zhi (wisdom). The Five Relationships define social bonds: ruler-subject, parent-child, husband-wife, elder-younger sibling, and friend-friend. Each relationship carries reciprocal obligations.\nlex: confucianism key principles ren li xiao\nlex: confucian philosophy five relationships virtues\nvec: what are the core principles and virtues of Confucianism such as ren, li, and filial piety\nvec: how do the five key relationships in Confucianism structure social and moral order"}
-{"input": "what is agile project management", "output": "hyde: Agile project management is an iterative approach that delivers work in short cycles called sprints (typically 1-4 weeks). Teams hold daily standups, plan sprint backlogs, and conduct retrospectives. Key frameworks include Scrum (with defined roles: Product Owner, Scrum Master, Team) and Kanban (continuous flow with WIP limits).\nlex: agile project management scrum kanban\nlex: agile methodology sprints iterative development\nvec: what is agile project management and how does it differ from traditional waterfall approaches\nvec: how do agile frameworks like Scrum and Kanban organize work into sprints and iterations"}
-{"input": "what is the significance of the harlem renaissance", "output": "hyde: The Harlem Renaissance (1920s-1930s) was a cultural explosion centered in Harlem, New York, that transformed African American literature, music, and art. Langston Hughes, Zora Neale Hurston, and Claude McKay produced groundbreaking literary works. Jazz and blues flourished at the Cotton Club. The movement asserted Black identity and challenged racial stereotypes.\nlex: Harlem Renaissance significance African American culture\nlex: Harlem Renaissance 1920s literature art music\nvec: what was the Harlem Renaissance and why was it significant for African American culture and arts\nvec: which writers, artists, and musicians defined the Harlem Renaissance and what impact did they have"}
-{"input": "what triggered world war i", "output": "hyde: The assassination of Archduke Franz Ferdinand of Austria-Hungary on June 28, 1914, in Sarajevo triggered WWI. Austria-Hungary issued an ultimatum to Serbia. The alliance system pulled in Russia (allied with Serbia), Germany (allied with Austria-Hungary), France (allied with Russia), and Britain (allied with France and Belgium).\nlex: World War I causes triggers assassination\nlex: WWI outbreak 1914 Franz Ferdinand alliances\nvec: what events and conditions triggered the start of World War I in 1914\nvec: how did the assassination of Archduke Franz Ferdinand lead to a full-scale world war through the alliance system"}
-{"input": "how to improve drawing skills?", "output": "hyde: Practice gesture drawing daily: set a timer for 30-60 seconds and sketch the overall pose of a figure or object without lifting your pencil. Draw from life, not just photos. Study basic forms\u2014spheres, cylinders, boxes\u2014and learn to see complex objects as combinations of these shapes. Fill a sketchbook page every day.\nlex: improve drawing skills practice techniques\nlex: learn to draw exercises sketching\nvec: what exercises and practice routines help improve drawing and sketching skills for beginners\nvec: how can you develop better hand-eye coordination and observational skills for drawing"}
-{"input": "what is international relations", "output": "hyde: International relations (IR) is a subfield of political science that studies interactions between states, international organizations, and non-state actors. Major theoretical frameworks include realism (states pursue power in an anarchic system), liberalism (institutions and cooperation reduce conflict), and constructivism (social norms shape state behavior).\nlex: international relations definition political science\nlex: IR theory realism liberalism diplomacy\nvec: what is the field of international relations and what theories explain how states interact\nvec: how does international relations study diplomacy, conflict, trade, and cooperation between nations"}
-{"input": "what is the human genome project", "output": "hyde: The Human Genome Project (1990-2003) was an international research effort to sequence all 3.2 billion base pairs of human DNA and identify approximately 20,500 genes. Completed in April 2003, it cost $2.7 billion and has enabled advances in personalized medicine, genetic testing, and understanding of hereditary diseases.\nlex: Human Genome Project HGP DNA sequencing\nlex: human genome mapping genes 2003 completed\nvec: what was the Human Genome Project and what did it accomplish in mapping human DNA\nvec: how has the Human Genome Project influenced genetics, medicine, and our understanding of human biology"}
-{"input": "how to assess a neighborhood safety", "output": "hyde: Check crime maps on sites like CrimeMapping.com or SpotCrime using the ZIP code. Walk the neighborhood at different times of day and night. Look for signs of community investment: maintained properties, street lighting, and active businesses. Talk to residents and visit the local police precinct for crime statistics.\nlex: neighborhood safety assessment crime check\nlex: evaluate neighborhood crime rate walkability\nvec: how do you assess whether a neighborhood is safe before moving there\nvec: what factors and data sources help evaluate neighborhood safety including crime statistics and local conditions"}
-{"input": "what are the characteristics of a just society", "output": "hyde: John Rawls argued a just society is one where principles are chosen behind a \"veil of ignorance\"\u2014not knowing your own position. His two principles: (1) equal basic liberties for all, and (2) social and economic inequalities are arranged to benefit the least advantaged (difference principle) with fair equality of opportunity.\nlex: just society characteristics principles fairness\nlex: social justice equality Rawls distributive justice\nvec: what are the defining characteristics of a just society according to political philosophy\nvec: how do philosophers like John Rawls define justice and the principles of a fair society"}
-{"input": "what is the significance of the narrative arc?", "output": "hyde: The narrative arc structures a story's progression from exposition through rising action to climax, then falling action and resolution. Gustav Freytag formalized this as a five-act pyramid. A strong arc creates tension, develops characters through conflict, and delivers emotional payoff, keeping readers engaged from beginning to end.\nlex: narrative arc significance story structure\nlex: narrative arc exposition climax resolution\nvec: what is a narrative arc and why is it significant in storytelling and fiction writing\nvec: how do the stages of a narrative arc\u2014exposition, rising action, climax, falling action, resolution\u2014shape a story"}
-{"input": "what is bioethics", "output": "hyde: Bioethics is an interdisciplinary field that examines ethical issues arising from advances in biology and medicine. Core principles include autonomy (patient choice), beneficence (do good), non-maleficence (do no harm), and justice (fair distribution). It addresses topics such as end-of-life care, genetic editing (CRISPR), stem cell research, and clinical trial ethics.\nlex: bioethics definition medical ethics biology\nlex: bioethics issues euthanasia cloning genetic engineering\nvec: what is bioethics and what moral questions does it address in medicine and biological science\nvec: how does bioethics evaluate issues like genetic engineering, euthanasia, and organ transplantation"}
-{"input": "what is the significance of reincarnation in hinduism", "output": "hyde: In Hinduism, reincarnation (samsara) is the cycle of death and rebirth of the atman (soul). Karma\u2014the accumulated results of actions\u2014determines the conditions of each rebirth. The ultimate goal is moksha: liberation from the cycle of samsara, achieved through jnana (knowledge), bhakti (devotion), or karma yoga (selfless action).\nlex: reincarnation hinduism samsara karma\nlex: Hindu rebirth cycle moksha atman\nvec: what role does reincarnation play in Hindu belief and how is it connected to karma and moksha\nvec: how does the concept of samsara and the cycle of rebirth shape Hindu spiritual practice"}
-{"input": "learn code", "output": "hyde: Start with Python or JavaScript\u2014both have gentle learning curves and wide applications. Free resources include freeCodeCamp.org, Codecademy, and CS50 on edX. Begin with variables, loops, and functions, then build small projects. Practice daily on coding challenges at sites like LeetCode or Codewars.\nlex: learn programming coding beginner\nlex: learn to code online courses tutorials\nlex: programming language beginner Python JavaScript\nvec: how can a beginner start learning to code and which programming language should they learn first\nvec: what are the best free resources and online courses for learning programming from scratch"}
-{"input": "what is the significance of the enlightenment?", "output": "hyde: The Enlightenment (c. 1685-1815) emphasized reason, individual liberty, and scientific inquiry over tradition and religious authority. Thinkers like John Locke (natural rights), Voltaire (freedom of speech), and Kant (\"dare to know\") laid the intellectual foundations for democratic revolutions, constitutional government, and the separation of church and state.\nlex: Enlightenment significance 18th century philosophy\nlex: Age of Enlightenment reason science liberty\nvec: what was the Enlightenment and why is it considered a turning point in Western intellectual history\nvec: how did Enlightenment thinkers like Voltaire, Locke, and Kant influence modern democracy and science"}
-{"input": "google docs", "output": "hyde: Google Docs is a free cloud-based word processor at docs.google.com. It supports real-time collaboration\u2014multiple users can edit simultaneously with changes tracked by color. Share documents via link or email with view, comment, or edit permissions. It auto-saves to Google Drive and supports export to .docx, .pdf, and other formats.\nlex: Google Docs word processor cloud\nlex: Google Docs collaboration editing sharing\nlex: Google Docs templates formatting features\nvec: how do you use Google Docs to create, edit, and collaborate on documents online\nvec: what features does Google Docs offer for real-time collaboration, formatting, and sharing"}
-{"input": "how to perform statistical analysis in research", "output": "hyde: Choose your statistical test based on your data type and research question. Use t-tests for comparing two group means, ANOVA for three or more groups, chi-square for categorical data, and regression for predicting outcomes. Check assumptions: normality (Shapiro-Wilk test), homogeneity of variance (Levene's test), and independence of observations.\nlex: statistical analysis research methods\nlex: statistical tests t-test ANOVA regression research\nvec: how do researchers choose and perform appropriate statistical analyses for their data\nvec: what are the common statistical methods used in academic research and when should each be applied"}
-{"input": "what is the role of physics in engineering", "output": "hyde: Physics underpins all engineering disciplines. Mechanical engineers apply Newton's laws and thermodynamics to design engines and machines. Electrical engineers use Maxwell's equations and semiconductor physics to build circuits. Civil engineers rely on statics and material strength calculations to design buildings and bridges that withstand loads.\nlex: physics role engineering applications\nlex: physics principles mechanical electrical civil engineering\nvec: how do physics principles apply to engineering disciplines like mechanical, electrical, and civil engineering\nvec: what fundamental physics concepts are essential for engineers to understand and apply"}
-{"input": "how to read a topographic map?", "output": "hyde: Contour lines connect points of equal elevation. Lines close together indicate steep terrain; lines far apart indicate gentle slopes. The contour interval (stated in the legend) is the elevation difference between adjacent lines. Every fifth line is an index contour, drawn thicker with the elevation labeled. Brown lines show terrain, blue shows water.\nlex: topographic map reading contour lines\nlex: topo map elevation contour interval legend\nvec: how do you read contour lines and elevation data on a topographic map\nvec: what do the symbols, contour lines, and colors on a USGS topographic map represent"}
-{"input": "how to choose car speakers?", "output": "hyde: Check your car's speaker sizes (common: 6.5\", 6x9\", 5.25\") using a fitment guide. Coaxial speakers are all-in-one replacements\u2014easy to install with tweeter built in. Component speakers separate the woofer, tweeter, and crossover for better sound staging but require more installation work. Look for sensitivity (85+ dB) and RMS power handling matching your head unit or amp.\nlex: car speakers choosing size type\nlex: car audio speakers coaxial component upgrade\nvec: how do you choose aftermarket car speakers that fit your vehicle and sound preferences\nvec: what is the difference between coaxial and component car speakers and which should you buy"}
-{"input": "where to buy organic seeds?", "output": "hyde: Trusted organic seed suppliers include Johnny's Selected Seeds, High Mowing Organic Seeds, Seed Savers Exchange, and Baker Creek Heirloom Seeds. Look for USDA Certified Organic labels and non-GMO verification. Order in January-February for spring planting. Many offer sampler packs for beginners.\nlex: buy organic seeds online garden\nlex: organic seed suppliers heirloom non-GMO\nvec: where can you buy certified organic and heirloom seeds for a home garden\nvec: which online seed companies sell high-quality organic and non-GMO vegetable and flower seeds"}
-{"input": "challenges of digital transformation", "output": "hyde: Common digital transformation challenges include resistance to change from employees, integrating legacy systems with new platforms, data silos across departments, cybersecurity risks during migration, and shortage of skilled talent. McKinsey reports that 70% of digital transformation initiatives fail, often due to organizational culture rather than technology.\nlex: digital transformation challenges obstacles\nlex: enterprise digital transformation barriers legacy systems\nvec: what are the main challenges organizations face when undergoing digital transformation\nvec: how do legacy systems, culture resistance, and skill gaps hinder digital transformation efforts"}
-{"input": "what makes a good thriller novel?", "output": "hyde: A great thriller has a high-stakes central conflict, a ticking clock, and a protagonist under escalating pressure. Pacing is crucial\u2014short chapters and cliffhanger endings drive momentum. Plant red herrings and misdirection, then deliver a twist that recontextualizes earlier clues. The antagonist should be intelligent and formidable, making the hero's victory feel earned.\nlex: thriller novel elements writing techniques\nlex: good thriller pacing suspense plot twists\nvec: what elements make a thriller novel compelling including pacing, suspense, and plot structure\nvec: how do successful thriller writers build tension and keep readers turning pages"}
-{"input": "what is the composition of the earth's atmosphere", "output": "hyde: Earth's atmosphere is composed of 78.09% nitrogen (N\u2082), 20.95% oxygen (O\u2082), 0.93% argon (Ar), and 0.04% carbon dioxide (CO\u2082). Trace gases include neon, helium, methane, krypton, and water vapor (0-4% depending on humidity). The atmosphere extends roughly 480 km above the surface and is divided into five layers: troposphere, stratosphere, mesosphere, thermosphere, and exosphere.\nlex: earth atmosphere composition gases percentages\nlex: atmospheric gases nitrogen oxygen argon CO2\nvec: what gases make up the Earth's atmosphere and in what proportions\nvec: what is the chemical composition of Earth's atmosphere including trace gases"}
-{"input": "how to file a petition to government", "output": "hyde: To file a petition, clearly state your request and supporting reasons. Collect signatures from eligible constituents\u2014most jurisdictions require a minimum number based on population. File the petition with the appropriate government office (city clerk, state legislature, or Congress). Online platforms like Change.org can amplify support but may not satisfy legal petition requirements.\nlex: file petition government civic action\nlex: government petition create submit signatures\nvec: how do you create and file a formal petition to a government body or elected representative\nvec: what is the process for submitting a petition to local, state, or federal government"}
-{"input": "how to grow rhododendrons?", "output": "hyde: Rhododendrons require acidic soil (pH 4.5-6.0), partial shade, and consistent moisture. Plant in well-drained soil amended with peat moss or composted pine bark. Mulch with 2-3 inches of pine needles. Water deeply once a week\u2014they have shallow root systems sensitive to drought. Avoid planting too deep; keep the root ball crown at soil level.\nlex: grow rhododendrons planting care soil\nlex: rhododendron acidic soil shade watering\nvec: how do you plant and care for rhododendrons including soil, light, and watering requirements\nvec: what soil pH and growing conditions do rhododendrons need to thrive"}
-{"input": "what is the ethics of surveillance", "output": "hyde: Mass surveillance raises fundamental questions about the balance between security and privacy. Critics argue programs like the NSA's PRISM violate Fourth Amendment protections against unreasonable search. Proponents claim surveillance prevents terrorism. The chilling effect\u2014self-censorship by citizens who know they're watched\u2014threatens free expression and democratic participation.\nlex: surveillance ethics privacy government\nlex: mass surveillance civil liberties Fourth Amendment\nvec: what are the ethical issues surrounding government and corporate surveillance of citizens\nvec: how do privacy rights conflict with security justifications for mass surveillance programs"}
-{"input": "regex match", "output": "hyde: A regex (regular expression) matches text patterns. Common syntax: `.` matches any character, `*` means zero or more, `+` means one or more, `?` means optional. `[a-z]` matches lowercase letters. `\\d` matches digits. Capture groups use parentheses: `(\\d{3})-(\\d{4})` matches and captures phone number parts. Use `^` for start and `$` for end of line.\nlex: regex match pattern regular expression\nlex: regex syntax matching groups capture\nlex: regular expression examples tutorial\nvec: how do you write and use regular expressions to match patterns in text\nvec: what is the syntax for regex pattern matching including groups, quantifiers, and character classes"}
-{"input": "what is the ethics of research", "output": "hyde: Research ethics are governed by the Belmont Report's three principles: respect for persons (informed consent), beneficence (minimize harm, maximize benefit), and justice (fair selection of subjects). Institutional Review Boards (IRBs) review all human subjects research. Key requirements include voluntary participation, confidentiality, right to withdraw, and risk-benefit assessment.\nlex: research ethics principles IRB\nlex: ethical research human subjects informed consent\nvec: what ethical principles govern scientific and academic research involving human subjects\nvec: how do institutional review boards ensure ethical standards in research studies"}
-{"input": "how to set intentions for the day?", "output": "hyde: Each morning, sit quietly for 2-3 minutes and ask yourself: \"How do I want to feel today?\" and \"What matters most today?\" Write one to three intentions in a journal\u2014e.g., \"I will be present in conversations\" or \"I will approach challenges with curiosity.\" Intentions focus on how you show up, not on tasks to complete. Review them at midday and evening.\nlex: set daily intentions morning routine\nlex: intention setting mindfulness journaling\nvec: how do you set meaningful daily intentions as part of a morning routine\nvec: what is the practice of setting intentions and how does it differ from goal-setting"}
-{"input": "what is the role of sacred music in worship?", "output": "hyde: Sacred music serves multiple functions in worship: it creates a contemplative atmosphere, unifies the congregation through shared singing, reinforces theological themes through lyrics, and marks liturgical transitions. Gregorian chant in Catholic Mass, bhajans in Hindu puja, and the Islamic adhan each use distinct musical forms to invoke the sacred and facilitate prayer.\nlex: sacred music worship role function\nlex: religious hymns chants liturgical music\nvec: what role does sacred music play in religious worship services across different faiths\nvec: how do hymns, chants, and liturgical music enhance the experience of communal worship"}
-{"input": "what are the features of ancient roman society?", "output": "hyde: Roman society was divided into patricians (aristocratic families), plebeians (common citizens), freedmen, and slaves. Citizens had legal rights including voting and property ownership. The Senate held political power, though plebeians gained representation through tribunes. Roman law (Twelve Tables, 450 BC) codified legal principles still influential today. The paterfamilias held authority over extended households.\nlex: ancient Roman society features structure\nlex: Roman social classes patricians plebeians republic\nvec: what were the defining features of ancient Roman society including social classes, government, and daily life\nvec: how was ancient Roman society structured in terms of class hierarchy, citizenship, and law"}
-{"input": "what is the role of family in society", "output": "hyde: The family is society's primary unit of socialization, teaching children language, norms, and values. Functionalist sociologists identify four key roles: socialization of children, economic cooperation, emotional support, and regulation of sexual behavior. Families also transmit cultural identity, religious traditions, and social status across generations.\nlex: family role society function socialization\nlex: family structure social institution support\nvec: what roles does the family unit play in society including socialization, support, and cultural transmission\nvec: how do families function as the primary social institution for raising children and maintaining social order"}
-{"input": "what is quantitative easing explained", "output": "hyde: Quantitative easing (QE) is an unconventional monetary policy where a central bank buys government bonds and other securities to inject money into the economy. When the Fed buys bonds, it increases bank reserves, lowers long-term interest rates, and encourages lending. The Fed used QE after 2008 and during COVID-19, expanding its balance sheet to over $8 trillion.\nlex: quantitative easing QE monetary policy\nlex: quantitative easing central bank bond buying\nvec: what is quantitative easing and how do central banks use it to stimulate the economy\nvec: how does the Federal Reserve's quantitative easing program work and what are its effects on inflation and interest rates"}
-{"input": "what is guerrilla marketing", "output": "hyde: Guerrilla marketing uses unconventional, low-cost tactics to create memorable brand experiences in unexpected places. Examples include flash mobs, street art installations, viral stunts, and ambient advertising placed in surprising locations. Jay Conrad Levinson coined the term in 1984. Success depends on creativity, surprise, and shareability rather than large advertising budgets.\nlex: guerrilla marketing unconventional low-cost\nlex: guerrilla marketing examples campaigns street\nvec: what is guerrilla marketing and how do businesses use unconventional tactics to promote products\nvec: what are examples of successful guerrilla marketing campaigns and what makes them effective"}
-{"input": "what is the study of geology", "output": "hyde: Geology is the scientific study of the Earth's structure, composition, and processes. Geologists examine rocks, minerals, fossils, and landforms to understand Earth's 4.5-billion-year history. Major branches include mineralogy (minerals), petrology (rocks), stratigraphy (rock layers), paleontology (fossils), and tectonics (plate movement and earthquakes).\nlex: geology study earth science rocks minerals\nlex: geology branches mineralogy tectonics stratigraphy\nvec: what is geology and what do geologists study about the Earth's structure, materials, and history\nvec: what are the main branches of geology including mineralogy, petrology, and plate tectonics"}
-{"input": "how to photograph artwork?", "output": "hyde: Use two identical lights at 45-degree angles to the artwork to eliminate glare and ensure even illumination. Mount the camera on a tripod, centered and parallel to the surface. Shoot in RAW at ISO 100, f/8 for sharpness. Include a color checker card in one frame for accurate white balance. Use a remote shutter to avoid camera shake.\nlex: photograph artwork lighting camera setup\nlex: art photography reproduction color accuracy\nvec: how do you photograph paintings and artwork with accurate color and minimal glare\nvec: what camera settings, lighting, and techniques produce high-quality photographs of artwork"}
-{"input": "what are smart home technologies", "output": "hyde: Smart home technologies connect devices via Wi-Fi, Zigbee, Z-Wave, or Matter protocol to a central hub or voice assistant. Common categories include smart lighting (Philips Hue), thermostats (Nest, Ecobee), security cameras (Ring, Arlo), locks (August, Yale), and speakers (Amazon Echo, Google Nest). Automations trigger actions based on time, location, or sensor data.\nlex: smart home technologies devices IoT\nlex: smart home automation hub Alexa Google Home\nvec: what smart home technologies are available for automating lighting, security, climate, and entertainment\nvec: how do smart home devices and IoT platforms like Alexa, Google Home, and HomeKit work together"}
-{"input": "how sports influence youth development", "output": "hyde: Research shows youth sports participation improves physical fitness, teaches teamwork and leadership, and builds self-esteem. A 2019 study in the Journal of Sport and Health Science found that adolescents who play organized sports report lower rates of depression and anxiety. However, excessive pressure and early specialization can lead to burnout and injury.\nlex: sports youth development influence benefits\nlex: youth athletics child development teamwork discipline\nvec: how does participation in sports influence the physical, social, and emotional development of young people\nvec: what benefits do organized sports provide for youth including teamwork, discipline, and mental health"}
-{"input": "how to build self-confidence", "output": "hyde: Start by setting small, achievable goals and completing them\u2014each success builds evidence of competence. Practice self-compassion: replace harsh self-criticism with the tone you'd use with a friend. Keep a \"wins\" journal and review it weekly. Gradually expand your comfort zone by doing one slightly uncomfortable thing each day. Confidence grows from accumulated experience, not positive thinking alone.\nlex: build self-confidence techniques self-esteem\nlex: improve confidence self-worth mindset\nvec: what are practical strategies for building self-confidence and overcoming self-doubt\nvec: how can someone develop greater self-confidence through daily habits and mindset shifts"}
-{"input": "how to plan a family field trip?", "output": "hyde: Choose an age-appropriate destination: museums, nature centers, farms, or historical sites. Check hours, admission costs, and accessibility online. Pack snacks, water, sunscreen, and a first-aid kit. Plan for shorter attention spans\u2014schedule breaks every 60-90 minutes. Involve kids in planning by letting them choose one activity. Bring a scavenger hunt list to keep them engaged.\nlex: family field trip planning kids activities\nlex: family outing day trip educational fun\nvec: how do you plan an enjoyable and educational family field trip with children\nvec: what are tips for organizing a family day trip including choosing destinations, packing, and budgeting"}
-{"input": "what is a scientific model", "output": "hyde: A scientific model is a simplified representation of a system or phenomenon used to explain observations and make predictions. Models can be physical (a globe representing Earth), mathematical (equations describing gravity), or computational (climate simulations). All models are approximations\u2014George Box wrote, \"All models are wrong, but some are useful.\"\nlex: scientific model definition types examples\nlex: scientific models simulation representation theory\nvec: what is a scientific model and how do scientists use models to explain and predict natural phenomena\nvec: what are the different types of scientific models including physical, mathematical, and computational models"}
-{"input": "io file", "output": "hyde: File I/O involves opening a file, reading or writing data, and closing it. In Python: `with open('file.txt', 'r') as f: data = f.read()` for reading, and `with open('file.txt', 'w') as f: f.write('hello')` for writing. The `with` statement ensures the file is properly closed. Use 'a' mode to append, 'rb'/'wb' for binary files.\nlex: file I/O input output operations\nlex: file read write programming IO\nlex: file handling open close stream\nvec: how do you perform file input and output operations in programming languages\nvec: what are the common methods for reading from and writing to files in Python, Java, or C"}
-{"input": "what are creative portrait ideas?", "output": "hyde: Try shooting through prisms or crystal balls for rainbow light effects. Use fairy lights wrapped around the subject for warm bokeh. Photograph through rain-covered glass for a moody feel. Use dramatic side lighting with one bare bulb for chiaroscuro portraits. Shoot reflections in puddles, mirrors, or sunglasses. Double exposure combining portraits with textures or nature works well in-camera or in post.\nlex: creative portrait photography ideas techniques\nlex: portrait photo ideas poses lighting creative\nvec: what are unique and creative portrait photography ideas for interesting and artistic results\nvec: how can you use lighting, props, angles, and locations for creative portrait photography"}
-{"input": "fix hair", "output": "hyde: For damaged hair, use a deep conditioning mask with keratin or argan oil once a week. Trim split ends every 6-8 weeks. Reduce heat styling\u2014if you must, use a heat protectant spray at 300\u00b0F max. For a quick bad hair day fix, try dry shampoo at the roots, a slicked-back bun, or braids. Sleep on a silk pillowcase to reduce friction and breakage.\nlex: fix hair repair damaged broken\nlex: hair repair treatment dry frizzy damaged\nlex: hairstyle fix bad hair day\nvec: how do you fix and repair damaged, dry, or frizzy hair\nvec: what are quick fixes for a bad hair day and long-term solutions for hair damage"}
-{"input": "build up", "output": "hyde: To build up strength, follow progressive overload: gradually increase weight, reps, or sets each week. A beginner program like Starting Strength adds 5 lbs to compound lifts every session. Eat adequate protein (0.7-1g per pound bodyweight). Rest 48 hours between training the same muscle group. Consistency over 8-12 weeks produces measurable strength gains.\nlex: build up strength fitness training\nlex: build up muscle mass exercise\nlex: buildup gradual increase accumulation\nvec: how do you progressively build up strength and muscle through a structured training program\nvec: what does it mean to build up endurance, skills, or resources gradually over time"}
-{"input": "how to participate in a protest", "output": "hyde: Know your rights: the First Amendment protects peaceful assembly on public property. Bring water, snacks, a phone charger, and ID. Write an emergency contact number on your arm. Stay with a buddy and agree on a meeting point. Wear comfortable shoes and weather-appropriate clothing. If tear gas is used, move upwind. Document police interactions by filming at a safe distance.\nlex: participate protest rally demonstration rights\nlex: protest safety tips First Amendment rights\nvec: how do you safely and effectively participate in a protest or public demonstration\nvec: what should you know about your legal rights and safety precautions when attending a protest"}
-{"input": "what is the principle of utility?", "output": "hyde: The principle of utility, formulated by Jeremy Bentham, states that the morally right action is the one that produces the greatest happiness for the greatest number. Bentham's felicific calculus measured pleasure by intensity, duration, certainty, and extent. John Stuart Mill refined this, distinguishing higher (intellectual) pleasures from lower (bodily) pleasures.\nlex: principle of utility utilitarianism Bentham Mill\nlex: utility principle greatest happiness greatest number\nvec: what is the principle of utility in utilitarian ethics as defined by Bentham and Mill\nvec: how does the utilitarian principle of utility evaluate actions based on their consequences for overall happiness"}
-{"input": "how to create a brand logo", "output": "hyde: Start by researching the brand's values, target audience, and competitors. Sketch 20-30 rough concepts on paper before going digital. A strong logo works in black and white, at small sizes (favicon), and large formats (billboard). Limit to 2-3 colors and one typeface. Test on business cards, websites, and merchandise. Tools: Adobe Illustrator, Figma, or Affinity Designer for vector-based design.\nlex: brand logo design create process\nlex: logo design principles typography color branding\nvec: how do you design an effective brand logo from concept to final design\nvec: what principles of logo design ensure a brand mark is memorable, scalable, and versatile"}
-{"input": "how to check tire pressure?", "output": "hyde: Check tire pressure when tires are cold (before driving or 3+ hours after). Remove the valve cap, press a tire gauge firmly onto the valve stem, and read the PSI. Compare to the recommended pressure on the driver's door jamb sticker (not the tire sidewall\u2014that's the maximum). Add air at a gas station if low. Check all four tires plus the spare monthly.\nlex: check tire pressure gauge PSI\nlex: tire pressure TPMS correct level car\nvec: how do you check and adjust tire pressure using a tire gauge\nvec: what is the correct tire pressure for a car and how often should it be checked"}
-{"input": "how to cook quinoa", "output": "hyde: Rinse 1 cup quinoa in a fine mesh strainer to remove bitter saponins. Combine with 2 cups water and a pinch of salt in a saucepan. Bring to a boil, reduce to low, cover, and simmer for 15 minutes. Remove from heat and let steam with the lid on for 5 minutes. Fluff with a fork. Yields about 3 cups cooked quinoa.\nlex: cook quinoa recipe instructions stovetop\nlex: quinoa cooking ratio water time\nvec: what is the correct method for cooking quinoa on the stovetop with the right water ratio\nvec: how do you cook fluffy quinoa and what is the water to quinoa ratio"}
-{"input": "how to prevent identity theft", "output": "hyde: Freeze your credit at all three bureaus (Equifax, Experian, TransUnion)\u2014it's free and prevents unauthorized accounts. Use unique passwords with a password manager. Enable two-factor authentication on all financial accounts. Shred documents with personal information. Monitor bank statements weekly and check your credit report annually at AnnualCreditReport.com.\nlex: prevent identity theft protection tips\nlex: identity theft prevention credit freeze monitor\nvec: what steps can you take to protect yourself from identity theft and fraud\nvec: how do credit freezes, strong passwords, and monitoring help prevent identity theft"}
-{"input": "how to start a blog", "output": "hyde: Choose a platform: WordPress.org for full control (needs hosting), or Substack/Ghost for simplicity. Pick a niche you can write about consistently. Register a domain name ($10-15/year). Write 5-10 posts before launching so visitors find content immediately. Optimize for SEO with clear titles and headers. Share on social media and engage with other bloggers in your niche.\nlex: start blog setup hosting platform\nlex: blogging beginners WordPress Substack setup\nvec: how do you start a blog from scratch including choosing a platform, domain, and writing your first posts\nvec: what are the steps to launch a successful blog and attract readers"}
-{"input": "documentary photography", "output": "hyde: Documentary photography aims to chronicle real events, conditions, or people over time to create a truthful narrative. Unlike photojournalism's focus on breaking news, documentary work unfolds over weeks, months, or years. Key practitioners include Dorothea Lange (Great Depression), Sebasti\u00e3o Salgado (workers, migration), and James Nachtwey (conflict). Shoot with available light, build trust with subjects, and caption extensively.\nlex: documentary photography style techniques\nlex: documentary photojournalism storytelling long-term\nvec: what is documentary photography and how does it differ from photojournalism and street photography\nvec: what techniques and approaches do documentary photographers use to tell stories through images"}
-{"input": "what causes tides", "output": "hyde: Tides are primarily caused by the gravitational pull of the Moon on Earth's oceans. The side of Earth facing the Moon experiences a direct gravitational pull creating a tidal bulge (high tide). A second bulge forms on the opposite side due to inertial forces. The Sun's gravity also contributes\u2014spring tides (highest) occur during full and new moons when Sun and Moon align.\nlex: tides causes moon gravitational pull\nlex: tidal forces moon sun earth gravity\nvec: what causes ocean tides and how do the gravitational forces of the moon and sun create them\nvec: how does the moon's gravitational pull create high and low tides on Earth"}
-{"input": "what is the history of christianity?", "output": "hyde: Christianity originated in 1st-century Judea with the teachings of Jesus of Nazareth. After his crucifixion (c. 30 AD), apostles like Paul spread the faith across the Roman Empire. Constantine legalized it in 313 AD (Edict of Milan). The Great Schism (1054) split Eastern Orthodox and Roman Catholic churches. The Protestant Reformation began in 1517 with Martin Luther.\nlex: history Christianity origins spread timeline\nlex: Christianity history Jesus apostles church development\nvec: what is the history of Christianity from its origins with Jesus to the modern era\nvec: how did Christianity spread from a small Jewish sect to a global religion over two millennia"}
-{"input": "what is the industrial revolution", "output": "hyde: The Industrial Revolution began in Britain around 1760-1840, transforming agrarian economies into industrial ones. Key innovations included the steam engine (James Watt), spinning jenny (textile production), and iron smelting with coke. Factories replaced cottage industries. Urbanization accelerated as workers moved to cities. It brought economic growth but also child labor, pollution, and harsh working conditions.\nlex: Industrial Revolution history manufacturing 18th century\nlex: Industrial Revolution steam engine factories Britain\nvec: what was the Industrial Revolution and how did it transform manufacturing, society, and the economy\nvec: when and where did the Industrial Revolution begin and what were its major innovations and consequences"}
-{"input": "what is sustainable forestry?", "output": "hyde: Sustainable forestry manages forests to meet current timber needs without compromising future generations' resources. Practices include selective logging (harvesting individual trees rather than clearcutting), replanting harvested areas, maintaining buffer zones near waterways, and preserving biodiversity corridors. The Forest Stewardship Council (FSC) certifies sustainably managed forests.\nlex: sustainable forestry management practices\nlex: sustainable logging forest stewardship FSC\nvec: what is sustainable forestry and how does it balance timber harvesting with forest ecosystem health\nvec: what practices and certifications like FSC ensure forests are managed sustainably"}
-{"input": "what is character arc?", "output": "hyde: A character arc is the transformation a character undergoes from the beginning to the end of a story. In a positive arc, the character overcomes a flaw or false belief (e.g., Scrooge in A Christmas Carol). In a negative arc, they descend (Walter White in Breaking Bad). In a flat arc, the character's beliefs remain constant but they change the world around them.\nlex: character arc definition types fiction\nlex: character arc development flat dynamic transformation\nvec: what is a character arc in fiction and how do characters change throughout a story\nvec: what are the different types of character arcs including positive, negative, and flat arcs"}
-{"input": "how to address ethical dilemmas in research", "output": "hyde: When facing an ethical dilemma in research, consult your IRB or ethics committee immediately. Common dilemmas include conflicts between maximizing data quality and minimizing participant burden, handling incidental findings, and balancing confidentiality with mandatory reporting obligations. Document your reasoning and decisions. The Belmont Report provides foundational guidance: respect for persons, beneficence, and justice.\nlex: ethical dilemmas research handling IRB\nlex: research ethics conflict resolution informed consent\nvec: how should researchers identify and address ethical dilemmas that arise during scientific studies\nvec: what frameworks and procedures help resolve ethical conflicts in academic and clinical research"}
-{"input": "how to manage stress effectively", "output": "hyde: Effective stress management combines multiple approaches. Exercise 30 minutes daily\u2014even walking reduces cortisol. Practice diaphragmatic breathing: inhale 4 counts, hold 4, exhale 6. Limit caffeine after noon. Maintain consistent sleep and wake times. Cognitive reframing: identify catastrophic thoughts and replace them with realistic assessments. Social connection is protective\u2014schedule regular time with supportive people.\nlex: manage stress effectively coping techniques\nlex: stress management relaxation anxiety reduction\nvec: what are evidence-based techniques for managing stress and reducing anxiety in daily life\nvec: how can you manage chronic stress through exercise, mindfulness, and lifestyle changes"}
-{"input": "how does the philosophy of science address scientific change", "output": "hyde: Thomas Kuhn argued science progresses through paradigm shifts: periods of \"normal science\" within an accepted framework are punctuated by revolutionary crises when anomalies accumulate. Karl Popper proposed that science advances through falsification\u2014theories must be testable and those that survive rigorous attempts at refutation are provisionally accepted. Lakatos offered a middle ground with his research programme methodology.\nlex: philosophy of science scientific change paradigm shift\nlex: Kuhn paradigm revolution Popper falsification Lakatos\nvec: how do philosophers of science like Kuhn, Popper, and Lakatos explain scientific revolutions and theory change\nvec: what does the philosophy of science say about how scientific knowledge evolves and paradigms shift"}
-{"input": "what are the rituals of judaism", "output": "hyde: Key Jewish rituals include Shabbat (weekly rest from Friday sunset to Saturday night with candle lighting, kiddush, and challah), the Passover seder (retelling the Exodus), Yom Kippur fasting, circumcision (brit milah) on the 8th day, bar/bat mitzvah at 13/12, and daily prayer (Shacharit, Mincha, Ma'ariv). Keeping kosher governs dietary laws separating meat and dairy.\nlex: Judaism rituals practices observances\nlex: Jewish rituals Shabbat Passover bar mitzvah kosher\nvec: what are the major rituals and religious observances in Judaism\nvec: how do Jewish rituals like Shabbat, Passover, and bar/bat mitzvah mark life and calendar events"}
-{"input": "how do scientists communicate their findings", "output": "hyde: Scientists communicate findings through peer-reviewed journal articles (the gold standard), conference presentations (talks and posters), and preprint servers like arXiv and bioRxiv for rapid dissemination. The publication process involves writing a manuscript, submitting to a journal, peer review by 2-3 experts, revision, and acceptance. Increasingly, scientists also use social media and press releases to reach the public.\nlex: scientists communicate findings publications\nlex: scientific communication peer review journal conference\nvec: how do scientists share and publish their research findings with the scientific community and public\nvec: what are the channels scientists use to communicate results including journals, conferences, and preprints"}
-{"input": "mock test", "output": "hyde: Mock tests simulate real exam conditions\u2014same time limits, question types, and format. Take full-length practice tests under timed conditions every 1-2 weeks during preparation. Review every wrong answer to identify weak areas. Free mock tests are available on Khan Academy (SAT), ETS (GRE), and official certification body websites. Score trends across mock tests predict actual performance.\nlex: mock test practice exam preparation\nlex: mock exam sample questions test prep\nlex: practice test online free exam\nvec: how do you use mock tests and practice exams to prepare for standardized tests and certifications\nvec: where can you find free mock tests and practice exams for tests like SAT, GRE, or professional certifications"}
-{"input": "what is the purpose of foreshadowing?", "output": "hyde: Foreshadowing plants clues or hints about future events in a narrative, building suspense and making plot developments feel earned rather than arbitrary. Chekhov's gun principle\u2014if a gun appears in Act 1, it must fire by Act 3\u2014is a classic example. Effective foreshadowing is subtle enough to miss on first reading but obvious in retrospect, rewarding rereading.\nlex: foreshadowing purpose literary device fiction\nlex: foreshadowing examples narrative technique\nvec: what is the purpose of foreshadowing in literature and how do authors use it to build suspense\nvec: how does foreshadowing create anticipation and cohesion in a story's plot"}
-{"input": "what is trail running?", "output": "hyde: Trail running is running on unpaved surfaces\u2014dirt paths, mountain trails, forest tracks, and rocky terrain. Unlike road running, it requires navigating elevation changes, uneven footing, and obstacles. Use trail shoes with aggressive lugs for grip and rock plates for protection. Shorten your stride on technical terrain. Popular distances range from 5K to ultramarathons (50+ miles).\nlex: trail running off-road terrain\nlex: trail running shoes gear technique\nvec: what is trail running and how does it differ from road running\nvec: what gear, technique, and training do you need for trail running on off-road terrain"}
-{"input": "what was the impact of the cold war?", "output": "hyde: The Cold War (1947-1991) divided the world into Western (NATO) and Eastern (Warsaw Pact) blocs. Its impacts include the nuclear arms race (peaking at 70,000+ warheads), proxy wars in Korea, Vietnam, and Afghanistan, the Space Race, decolonization movements influenced by superpower competition, and the eventual collapse of the Soviet Union in 1991 leading to U.S. unipolarity.\nlex: Cold War impact consequences effects\nlex: Cold War legacy geopolitics nuclear arms race\nvec: what were the major political, social, and economic impacts of the Cold War on the world\nvec: how did the Cold War shape international relations, the nuclear arms race, and proxy conflicts"}
-{"input": "street photography ethics", "output": "hyde: In most countries, photographing people in public spaces is legally permitted since there is no expectation of privacy. However, ethical street photographers follow principles: avoid exploiting vulnerable people, don't photograph children without parental awareness, respect requests to delete images, and consider whether the image dignifies or demeans the subject. Some photographers adopt a \"golden rule\" approach.\nlex: street photography ethics legal rights\nlex: street photography consent privacy public space\nvec: what are the ethical considerations and legal rights involved in street photography\nvec: is it ethical to photograph strangers in public and what are the legal rules around street photography"}
-{"input": "vitosha mountain", "output": "hyde: Vitosha is a mountain massif on the outskirts of Sofia, Bulgaria, reaching 2,290m at Cherni Vrah (Black Peak). Vitosha Nature Park offers hiking trails, ski runs at Aleko, and the Boyana Waterfall. The golden bridges stone river is a popular landmark. Access from Sofia takes 30 minutes by car or bus. The mountain is a popular day trip for Sofia residents year-round.\nlex: Vitosha mountain Sofia Bulgaria\nlex: Vitosha hiking trails Cherni Vrah peak\nvec: what are the hiking trails and attractions on Vitosha mountain near Sofia, Bulgaria\nvec: what is Vitosha mountain and what outdoor activities are available in Vitosha Nature Park"}
-{"input": "what is an anthology?", "output": "hyde: An anthology is a curated collection of literary works\u2014short stories, poems, essays, or excerpts\u2014by various authors, assembled around a common theme, genre, or time period. Editors select and arrange pieces to create a coherent reading experience. Examples include The Norton Anthology of English Literature and Best American Short Stories, published annually.\nlex: anthology definition literary collection\nlex: anthology book short stories poems collected works\nvec: what is an anthology and how are literary anthologies compiled and organized\nvec: what types of works are typically collected in an anthology such as short stories, poems, or essays"}
-{"input": "what is the significance of the yom kippur?", "output": "hyde: Yom Kippur (Day of Atonement) is the holiest day in Judaism, falling on the 10th of Tishrei. Observers fast for 25 hours from sunset to sunset, abstaining from food, water, leather shoes, and bathing. The day is spent in synagogue prayer, including the Kol Nidre service and the Neilah closing prayer. It is a day of repentance (teshuvah) for sins against God, concluding the ten Days of Awe.\nlex: Yom Kippur significance Jewish holy day\nlex: Yom Kippur Day of Atonement fasting prayer\nvec: what is Yom Kippur and why is it the most significant holy day in Judaism\nvec: how do Jewish people observe Yom Kippur through fasting, prayer, and repentance"}
-{"input": "what is clean camping?", "output": "hyde: Clean camping follows Leave No Trace principles: plan ahead, travel on durable surfaces, dispose of waste properly, leave what you find, minimize campfire impact, respect wildlife, and be considerate of others. Pack out all trash including food scraps. Use biodegradable soap 200 feet from water sources. Dig catholes 6-8 inches deep for human waste. Leave campsites cleaner than you found them.\nlex: clean camping Leave No Trace principles\nlex: clean camping eco-friendly minimal impact\nvec: what is clean camping and how do you minimize your environmental impact while camping outdoors\nvec: what are the Leave No Trace principles and how do they apply to clean camping practices"}
-{"input": "how to evaluate scientific claims critically", "output": "hyde: Check the source: is it published in a peer-reviewed journal? Look for sample size, control groups, and statistical significance (p < 0.05). Distinguish correlation from causation. Check if results have been replicated by independent researchers. Evaluate conflicts of interest and funding sources. Be skeptical of single studies\u2014look for systematic reviews and meta-analyses that synthesize multiple studies.\nlex: evaluate scientific claims critical thinking\nlex: scientific literacy evidence evaluation peer review\nvec: how do you critically evaluate scientific claims and distinguish credible research from misinformation\nvec: what criteria should you use to assess whether a scientific study's conclusions are reliable"}
-{"input": "what is the significance of song in worship?", "output": "hyde: Singing in worship engages the whole person\u2014body, mind, and emotions\u2014in ways that spoken word alone cannot. Neuroscience shows group singing synchronizes heart rates and releases oxytocin, fostering communal bonding. In Christian worship, hymns reinforce theology through memorable lyrics. The Psalms themselves are songs, and Paul urged believers to address one another \"in psalms, hymns, and spiritual songs\" (Ephesians 5:19).\nlex: song worship significance religious singing\nlex: worship music congregational singing hymns praise\nvec: what role does congregational singing and worship music play in religious services\nvec: why is song considered a significant form of spiritual expression and communal worship across faiths"}
-{"input": "what is the significance of algae in ecosystems", "output": "hyde: Algae produce approximately 50% of the world's oxygen through photosynthesis and form the base of aquatic food chains. Phytoplankton, a type of microalgae, supports marine ecosystems by providing energy to zooplankton, fish, and larger organisms.\nlex: algae ecosystem role food chain\nlex: algae oxygen production aquatic ecosystems\nlex: algae photosynthesis carbon cycle\nvec: what role do algae play in aquatic and marine ecosystems\nvec: how do algae contribute to oxygen production and food webs"}
-{"input": "how to train for a marathon", "output": "hyde: A typical 16-week marathon training plan starts with a base of 15-20 miles per week, gradually increasing the long run by 1-2 miles each week. Include easy runs, tempo runs at marathon pace, and one rest day. Taper volume 2-3 weeks before race day.\nlex: marathon training plan schedule\nlex: long distance running program beginner\nlex: marathon race preparation mileage\nvec: what is a good training plan for running a first marathon\nvec: how to build weekly mileage for marathon race preparation"}
-{"input": "how to handle a child's tantrum in public?", "output": "hyde: When your child has a tantrum in public, stay calm and speak in a low, steady voice. Get down to their eye level, acknowledge their feelings, and offer simple choices. If needed, move to a quieter spot and wait for the intensity to pass before addressing the behavior.\nlex: child tantrum public calm techniques\nlex: toddler meltdown coping strategies\nvec: what are effective ways to calm a toddler having a tantrum in a public place\nvec: how should parents respond when their child has a meltdown in a store or restaurant"}
-{"input": "how to invest in index funds", "output": "hyde: To invest in index funds, open a brokerage account with a provider like Vanguard, Fidelity, or Schwab. Choose a broad market index fund such as VTSAX or an S&P 500 ETF like VOO. Set up automatic contributions and reinvest dividends for compound growth.\nlex: index fund investing brokerage account\nlex: S&P 500 index fund buy shares\nlex: passive investing index ETF\nvec: how to open a brokerage account and buy index funds for long-term investing\nvec: what are the steps to start investing in S&P 500 or total market index funds"}
-{"input": "what is data science", "output": "hyde: Data science is an interdisciplinary field that uses statistical methods, machine learning algorithms, and programming to extract insights from structured and unstructured data. Practitioners typically work with Python or R, use tools like pandas and scikit-learn, and apply techniques such as regression, classification, and clustering.\nlex: data science statistics machine learning\nlex: data science analysis programming Python R\nvec: what does data science involve and what skills are needed to work in the field\nvec: how does data science combine statistics, programming, and domain knowledge"}
-{"input": "how to improve concentration skills?", "output": "hyde: To improve concentration, try the Pomodoro technique: work for 25 minutes, then take a 5-minute break. Eliminate distractions by silencing notifications and using website blockers. Regular exercise, adequate sleep, and mindfulness meditation have all been shown to increase sustained attention.\nlex: improve focus concentration techniques\nlex: attention span exercises deep work\nvec: what are practical techniques to improve focus and concentration during work or study\nvec: how can I train my brain to maintain attention for longer periods"}
-{"input": "how to participate in earth hour?", "output": "hyde: Earth Hour takes place on the last Saturday of March each year. To participate, turn off all non-essential lights for one hour starting at 8:30 PM local time. You can also share your participation on social media using #EarthHour and organize community events.\nlex: Earth Hour participation lights off event\nlex: Earth Hour date 2026 how to join\nvec: how do I participate in the annual Earth Hour lights-off event\nvec: what can individuals and businesses do during Earth Hour to show support"}
-{"input": "what are nanotechnologies", "output": "hyde: Nanotechnology involves manipulating matter at the nanoscale, typically between 1 and 100 nanometers. Applications include targeted drug delivery using nanoparticles, carbon nanotube transistors in electronics, and nanocoatings that repel water and resist corrosion.\nlex: nanotechnology nanomaterials nanoscale engineering\nlex: nanotech applications medicine electronics\nvec: what is nanotechnology and how are nanoscale materials used in different industries\nvec: what are the main applications of nanotechnology in medicine and electronics"}
-{"input": "how to create a color palette for painting?", "output": "hyde: Start with a limited palette of 4-6 colors: a warm and cool version of each primary (e.g., cadmium yellow, lemon yellow, ultramarine blue, cerulean blue, alizarin crimson, cadmium red). Mix swatches to map out your range. Use complementary colors for contrast and analogous colors for harmony.\nlex: color palette painting color theory\nlex: mixing paint colors warm cool complementary\nvec: how do artists create a cohesive color palette for a painting using color theory\nvec: what techniques help choose harmonious paint colors for an artwork"}
-{"input": "how to make homemade pasta", "output": "hyde: Combine 2 cups of 00 flour with 3 large eggs on a clean surface. Knead the dough for 8-10 minutes until smooth and elastic. Wrap in plastic and rest for 30 minutes. Roll out thin with a rolling pin or pasta machine, then cut into desired shapes like fettuccine or tagliatelle.\nlex: homemade pasta recipe dough eggs flour\nlex: fresh pasta making rolling cutting\nvec: what is the recipe and technique for making fresh pasta dough from scratch\nvec: how to roll and cut homemade pasta without a pasta machine"}
-{"input": "how to reduce stress", "output": "hyde: Regular physical activity releases endorphins that naturally reduce stress. Practice deep breathing: inhale for 4 counts, hold for 4, exhale for 6. Other effective strategies include progressive muscle relaxation, journaling, limiting caffeine, and maintaining a consistent sleep schedule of 7-9 hours.\nlex: stress reduction techniques relaxation\nlex: manage stress exercise meditation breathing\nvec: what are effective daily habits for reducing stress and improving mental health\nvec: how can breathing exercises and physical activity help lower stress levels"}
-{"input": "how to develop a research hypothesis", "output": "hyde: A research hypothesis is a specific, testable prediction about the relationship between variables. Start by identifying your research question, then review existing literature. Formulate the hypothesis as an if-then or directional statement, clearly defining the independent and dependent variables.\nlex: research hypothesis formulation testable\nlex: hypothesis writing independent dependent variable\nvec: how do you write a clear and testable research hypothesis for a study\nvec: what are the steps to develop a hypothesis from a research question"}
-{"input": "what is social contract theory", "output": "hyde: Social contract theory proposes that individuals consent, either explicitly or tacitly, to surrender some freedoms to a governing authority in exchange for social order. Hobbes argued for an absolute sovereign, Locke emphasized natural rights and limited government, and Rousseau stressed the general will of the people.\nlex: social contract theory Hobbes Locke Rousseau\nlex: social contract political philosophy government legitimacy\nvec: what is social contract theory and how did Hobbes, Locke, and Rousseau differ in their views\nvec: how does social contract theory explain the legitimacy of government authority"}
-{"input": "code share", "output": "hyde: CodeShare.io is a free online editor for sharing code in real time. Paste or type your code, share the generated URL, and others can view or edit simultaneously. For permanent sharing, GitHub Gists let you create public or secret snippets with syntax highlighting and version history.\nlex: code sharing platform snippet pastebin\nlex: codeshare live collaborative editor\nlex: share code online GitHub Gist\nvec: what are the best platforms for sharing code snippets with others online\nvec: how to share code collaboratively in real time with another developer"}
-{"input": "what is the significance of the american revolution", "output": "hyde: The American Revolution (1775-1783) established the United States as an independent nation and introduced a constitutional republic based on Enlightenment principles. The Declaration of Independence asserted natural rights, and the resulting Constitution created a framework of representative government that influenced the French Revolution and Latin American independence movements.\nlex: American Revolution significance independence 1776\nlex: American Revolution impact democracy constitutional government\nvec: why was the American Revolution historically significant for democracy and self-governance\nvec: how did the American Revolution influence other independence movements worldwide"}
-{"input": "how to understand political ideologies", "output": "hyde: Political ideologies are organized systems of beliefs about governance and society. The left-right spectrum places socialism and progressivism on the left, emphasizing equality and collective action, while conservatism and libertarianism sit on the right, prioritizing individual freedom and tradition. Each ideology has distinct views on the role of government, economics, and social policy.\nlex: political ideologies left right spectrum\nlex: liberalism conservatism socialism political theory\nvec: how can someone learn about different political ideologies and where they fall on the spectrum\nvec: what are the main differences between liberalism, conservatism, socialism, and libertarianism"}
-{"input": "how to build confidence in social situations?", "output": "hyde: Start small: make eye contact and greet one new person at each event. Prepare a few open-ended questions in advance. Focus on listening rather than performing. After each interaction, note what went well. Gradual exposure reduces anxiety over time\u2014the more you practice, the more natural conversations become.\nlex: social confidence building shyness overcome\nlex: social anxiety tips conversation skills\nvec: what are practical steps to feel more confident when talking to people at social events\nvec: how can someone overcome social anxiety and build self-confidence in group settings"}
-{"input": "what to pack for a day hike", "output": "hyde: Day hike essentials: 2 liters of water, trail snacks (nuts, bars, fruit), map or GPS device, sun protection (hat, sunscreen, sunglasses), first aid kit, rain layer, extra warm layer, headlamp, and a fully charged phone. Wear moisture-wicking layers and broken-in hiking boots.\nlex: day hike packing list gear essentials\nlex: hiking backpack water food first aid\nvec: what should I bring in my backpack for a day hike in the mountains\nvec: what are the essential items to pack for a full-day hiking trip"}
-{"input": "what is digital collage art?", "output": "hyde: Digital collage art combines photographs, illustrations, textures, and graphic elements assembled in software like Photoshop, Procreate, or Canva. Artists layer, mask, blend, and transform images to create surreal or thematic compositions. Unlike physical collage, digital tools allow non-destructive editing and infinite experimentation with scale and color.\nlex: digital collage art Photoshop mixed media\nlex: digital collage techniques layers composition\nvec: what is digital collage art and how is it created using software\nvec: what tools and techniques do artists use to make digital collages"}
-{"input": "how to fix a car radiator leak?", "output": "hyde: For a small radiator leak, a stop-leak product like Bar's Leaks can provide a temporary fix. Add it to the coolant reservoir and run the engine. For permanent repair, locate the leak by pressurizing the cooling system, then either solder the radiator, replace the damaged hose, or install a new radiator if the damage is severe.\nlex: car radiator leak repair fix sealant\nlex: radiator hose replacement coolant leak\nvec: how to diagnose and fix a leaking car radiator or radiator hose\nvec: can radiator stop-leak sealant permanently fix a small coolant leak"}
-{"input": "where to buy saffron", "output": "hyde: Buy saffron from reputable spice retailers like Penzeys, Burlap & Barrel, or specialty grocery stores. Look for grade 1 (Sargol or Negin) Iranian or Spanish saffron. Expect to pay $8-15 per gram. Avoid suspiciously cheap saffron\u2014it may be dyed safflower or corn silk.\nlex: buy saffron threads online spice shop\nlex: saffron purchase quality grade price\nvec: where is the best place to buy high-quality saffron threads online or in stores\nvec: how to find genuine saffron and avoid counterfeit or adulterated products"}
-{"input": "what is mahayana buddhism", "output": "hyde: Mahayana Buddhism, the \"Great Vehicle,\" emerged around the 1st century CE and emphasizes the bodhisattva ideal\u2014the aspiration to attain enlightenment for the benefit of all sentient beings, not just oneself. Key texts include the Heart Sutra and Lotus Sutra. Major traditions include Zen, Pure Land, and Tibetan Buddhism.\nlex: Mahayana Buddhism bodhisattva teachings\nlex: Mahayana vs Theravada Buddhism sutras\nvec: what are the core beliefs and practices of Mahayana Buddhism\nvec: how does Mahayana Buddhism differ from Theravada Buddhism"}
-{"input": "what is utilitarianism in ethics", "output": "hyde: Utilitarianism is a consequentialist ethical theory holding that the morally right action is the one that produces the greatest happiness for the greatest number. Jeremy Bentham proposed a quantitative \"felicific calculus,\" while John Stuart Mill distinguished between higher and lower pleasures, arguing quality of happiness matters as much as quantity.\nlex: utilitarianism ethics greatest happiness principle\nlex: utilitarianism Bentham Mill consequentialism\nvec: what is utilitarianism and how does it determine right and wrong actions\nvec: how did Jeremy Bentham and John Stuart Mill develop utilitarian ethics"}
-{"input": "what is climate change?", "output": "hyde: Climate change refers to long-term shifts in global temperatures and weather patterns. Since the Industrial Revolution, burning fossil fuels has released carbon dioxide and methane, trapping heat in the atmosphere. This has caused average global temperatures to rise by about 1.1\u00b0C, leading to melting ice caps, rising sea levels, and more extreme weather events.\nlex: climate change global warming greenhouse gases\nlex: climate change causes effects CO2 emissions\nvec: what causes climate change and what are its effects on the planet\nvec: how do greenhouse gas emissions from human activity drive global warming"}
-{"input": "what is the difference between positive and negative rights", "output": "hyde: Negative rights require others to refrain from interfering\u2014examples include freedom of speech, the right to privacy, and freedom from torture. Positive rights require others to provide something\u2014examples include the right to education, healthcare, or a minimum standard of living. The distinction is central to debates between libertarians and welfare-state advocates.\nlex: positive rights negative rights difference\nlex: positive negative rights examples entitlements liberties\nvec: what is the distinction between positive and negative rights in political philosophy\nvec: can you explain positive rights versus negative rights with examples"}
-{"input": "what causes migraines", "output": "hyde: Migraines involve abnormal brain activity affecting nerve signals, chemicals, and blood vessels. Cortical spreading depression\u2014a wave of electrical activity across the cortex\u2014triggers the trigeminal nerve, releasing inflammatory peptides. Common triggers include stress, hormonal changes, certain foods (aged cheese, alcohol), sleep disruption, and bright lights.\nlex: migraine causes triggers brain\nlex: migraine headache serotonin vascular nerve\nvec: what are the biological causes and common triggers of migraine headaches\nvec: why do some people get migraines and what happens in the brain during one"}
-{"input": "how to talk to kids about bullying?", "output": "hyde: Start the conversation calmly by asking open-ended questions: \"Has anyone at school been mean to you or someone else?\" Listen without overreacting. Teach your child to say \"Stop, I don't like that\" firmly, walk away, and tell a trusted adult. Role-play scenarios so they can practice responses.\nlex: talk children bullying conversation advice\nlex: kids bullying prevention parent discussion\nvec: how should parents talk to their children about bullying at school\nvec: what are age-appropriate ways to discuss bullying with kids and help them respond"}
-{"input": "when to replace windshield wipers?", "output": "hyde: Replace windshield wipers every 6-12 months or when you notice streaking, skipping, squeaking, or smearing. Inspect the rubber edge for cracks, tears, or stiffness. If wipers leave unwiped areas or chatter across the glass, it's time for new blades. Extreme heat and cold accelerate deterioration.\nlex: replace windshield wipers signs worn\nlex: wiper blade replacement frequency lifespan\nvec: how often should windshield wipers be replaced and what are signs they need changing\nvec: what are the signs that windshield wiper blades are worn out and need replacement"}
-{"input": "how to aerate lawn manually?", "output": "hyde: To aerate manually, push a garden fork or manual core aerator into the soil every 4-6 inches, rocking it slightly to loosen the earth. Work in rows across the lawn. The best time to aerate is early fall for cool-season grasses or late spring for warm-season grasses. Water the lawn the day before to soften the soil.\nlex: aerate lawn manually core aeration fork\nlex: lawn aeration by hand spike tool\nvec: how to aerate a lawn by hand without a machine using a garden fork or manual aerator\nvec: what is the best technique for manually aerating compacted soil in a yard"}
-{"input": "how to improve business communication", "output": "hyde: Effective business communication starts with clarity: state the purpose in the first sentence, use short paragraphs, and include a clear call to action. In meetings, summarize key points and assign action items. Avoid jargon when possible. Active listening\u2014paraphrasing what others say\u2014builds rapport and reduces misunderstandings.\nlex: business communication skills effective workplace\nlex: professional email writing clear messaging\nvec: how can employees improve their written and verbal communication skills at work\nvec: what techniques make business emails and presentations clearer and more effective"}
-{"input": "how to manage anxiety naturally", "output": "hyde: Natural anxiety management includes regular aerobic exercise (30 minutes, 5 days a week), diaphragmatic breathing, progressive muscle relaxation, and limiting caffeine and alcohol. Cognitive behavioral techniques like thought journaling help identify and challenge anxious thinking patterns. Herbal supplements such as chamomile and ashwagandha show some evidence of benefit.\nlex: manage anxiety natural remedies without medication\nlex: anxiety relief breathing exercise meditation\nvec: what are natural ways to manage anxiety without medication\nvec: how can exercise, breathing techniques, and lifestyle changes reduce anxiety symptoms"}
-{"input": "how to draft a lease agreement", "output": "hyde: A residential lease agreement should include: names of landlord and tenant, property address, lease term (start/end dates), monthly rent amount and due date, security deposit amount and return conditions, maintenance responsibilities, pet policy, late fee terms, and termination/renewal clauses. Both parties should sign and retain copies.\nlex: lease agreement draft template rental\nlex: residential lease contract terms clauses\nvec: what should be included when drafting a residential lease agreement\nvec: how to write a legally sound rental lease agreement between landlord and tenant"}
-{"input": "what is burnout?", "output": "hyde: Burnout is a state of chronic physical and emotional exhaustion caused by prolonged stress, typically work-related. The WHO classifies it by three dimensions: energy depletion, increased mental distance or cynicism toward one's job, and reduced professional efficacy. Symptoms include fatigue, insomnia, irritability, and difficulty concentrating.\nlex: burnout syndrome workplace exhaustion\nlex: burnout symptoms causes recovery\nvec: what is burnout and what are its symptoms, causes, and effects on health\nvec: how does chronic work stress lead to burnout and what does it feel like"}
-{"input": "how to let go of negative thoughts?", "output": "hyde: To let go of negative thoughts, practice cognitive defusion: observe the thought without engaging it, label it (\"I'm having the thought that...\"), and let it pass like a cloud. Mindfulness meditation trains this skill. Write recurring worries in a journal, then close it\u2014this externalizes them. Challenge distortions by asking: \"Is this thought based on facts or assumptions?\"\nlex: let go negative thoughts techniques\nlex: negative thinking patterns CBT mindfulness\nvec: how to stop dwelling on negative thoughts and break rumination cycles\nvec: what mindfulness or cognitive techniques help release negative thinking"}
-{"input": "how to brew the perfect cup of tea", "output": "hyde: Water temperature and steep time vary by tea type. Black tea: 200-212\u00b0F for 3-5 minutes. Green tea: 160-180\u00b0F for 2-3 minutes. White tea: 160-185\u00b0F for 4-5 minutes. Oolong: 185-205\u00b0F for 3-5 minutes. Use 1 teaspoon of loose leaf per 8 oz cup. Pre-warm the teapot with hot water for consistent extraction.\nlex: brew tea temperature steep time\nlex: tea brewing method loose leaf\nvec: what are the correct water temperatures and steeping times for different types of tea\nvec: how to brew loose leaf tea properly for the best flavor"}
-{"input": "what is anarchism", "output": "hyde: Anarchism is a political philosophy that rejects involuntary, coercive hierarchy\u2014particularly the state\u2014and advocates for voluntary, cooperative social organization. Major branches include anarcho-communism (Kropotkin), which envisions communal ownership, anarcho-syndicalism, which organizes through labor unions, and individualist anarchism, which emphasizes personal autonomy.\nlex: anarchism political philosophy anti-state\nlex: anarchism theory Kropotkin Bakunin mutual aid\nvec: what is anarchism as a political philosophy and what do anarchists believe\nvec: how do different branches of anarchism envision a society without government"}
-{"input": "how to stay motivated daily?", "output": "hyde: Set one clear priority each morning rather than a long to-do list. Break large goals into small daily tasks. Track streaks\u2014visual progress reinforces consistency. Pair difficult tasks with rewards. On low-motivation days, commit to just 5 minutes; starting is the hardest part, and momentum usually follows.\nlex: daily motivation habits discipline routine\nlex: stay motivated goals productivity tips\nvec: what are practical strategies to stay motivated and productive every day\nvec: how to maintain motivation when working toward long-term goals"}
-{"input": "list sort", "output": "hyde: In Python, sort a list in-place with list.sort() or return a new sorted list with sorted(). Use key= for custom sorting: sorted(items, key=lambda x: x.name). In Java, use Collections.sort() or List.sort(). Common algorithms include quicksort (O(n log n) average), mergesort (stable, O(n log n)), and timsort (Python/Java default).\nlex: sort list programming algorithm\nlex: list sort Python Java ascending descending\nlex: array sorting methods comparison\nvec: how to sort a list or array in different programming languages\nvec: what sorting algorithms are used for lists and how do they compare in performance"}
-{"input": "what was the renaissance period", "output": "hyde: The Renaissance (14th-17th century) was a cultural movement that began in Florence, Italy, marking the transition from the medieval period to modernity. It saw a revival of classical Greek and Roman art and philosophy. Key figures include Leonardo da Vinci, Michelangelo, and Galileo. The invention of the printing press accelerated the spread of new ideas across Europe.\nlex: Renaissance period 14th-17th century Europe\nlex: Renaissance art culture Florence rebirth\nvec: what was the Renaissance period and why was it significant in European history\nvec: how did the Renaissance transform art, science, and culture in Europe"}
-{"input": "what is a smart thermostat?", "output": "hyde: A smart thermostat connects to WiFi and can be controlled via a smartphone app. Models like the Nest Learning Thermostat and Ecobee use sensors and machine learning to build a schedule based on your habits. They adjust heating and cooling automatically, reducing energy use by 10-15% on average compared to standard programmable thermostats.\nlex: smart thermostat WiFi programmable Nest Ecobee\nlex: smart thermostat energy savings features\nvec: what is a smart thermostat and how does it save energy compared to a regular thermostat\nvec: how do smart thermostats like Nest and Ecobee learn and control home temperature"}
-{"input": "what is the great barrier reef", "output": "hyde: The Great Barrier Reef, off the coast of Queensland, Australia, is the world's largest coral reef system, stretching over 2,300 kilometers. It comprises nearly 3,000 individual reef systems and supports over 1,500 fish species, 400 coral species, and 30 species of whales and dolphins. Coral bleaching from rising ocean temperatures is its greatest threat.\nlex: Great Barrier Reef Australia coral ecosystem\nlex: Great Barrier Reef marine biodiversity coral bleaching\nvec: what is the Great Barrier Reef and why is it important for marine biodiversity\nvec: where is the Great Barrier Reef located and what threats does it face"}
-{"input": "what is the significance of the sacred heart?", "output": "hyde: The Sacred Heart is a devotional image in Catholicism representing Jesus Christ's divine love for humanity. Popularized by St. Margaret Mary Alacoque's 17th-century visions, it depicts Christ's heart surrounded by a crown of thorns, flames, and a cross. The feast of the Sacred Heart is celebrated 19 days after Pentecost.\nlex: Sacred Heart Jesus Catholic devotion\nlex: Sacred Heart significance symbolism Christianity\nvec: what does the Sacred Heart of Jesus symbolize in Catholic tradition\nvec: what is the history and religious significance of devotion to the Sacred Heart"}
-{"input": "what is survival camping?", "output": "hyde: Survival camping means spending time outdoors with minimal or no modern gear, relying on wilderness skills. Core skills include building a debris shelter, starting fire with a ferro rod or bow drill, purifying water by boiling or filtering, navigating with a map and compass, and foraging or trapping for food.\nlex: survival camping wilderness skills bushcraft\nlex: survival camping gear shelter fire water\nvec: what is survival camping and what skills do you need to camp with minimal gear\nvec: how to prepare for a survival camping trip in the wilderness"}
-{"input": "how to fix wifi connection dropping", "output": "hyde: If your WiFi keeps dropping, try these steps: 1) Restart your router and modem by unplugging for 30 seconds. 2) Move closer to the router or remove obstructions. 3) Change the WiFi channel in router settings to reduce interference. 4) Update router firmware. 5) Check for driver updates on your device. 6) Disable power-saving mode for your wireless adapter.\nlex: WiFi dropping connection fix troubleshoot\nlex: WiFi disconnecting frequently router reset\nvec: how to troubleshoot a WiFi connection that keeps dropping or disconnecting\nvec: why does my WiFi keep cutting out and how do I fix it"}
-{"input": "what are the key elements of horror writing?", "output": "hyde: Effective horror writing relies on atmosphere, pacing, and the unknown. Build dread through setting\u2014dark, isolated, claustrophobic spaces. Use sensory details to ground the reader. Withhold information: what the reader imagines is scarier than what you show. Escalate tension gradually, then release it with a shock. Relatable characters make the stakes feel real.\nlex: horror writing elements techniques atmosphere\nlex: horror fiction suspense tension dread\nvec: what literary elements and techniques make horror writing effective\nvec: how do horror authors create suspense, tension, and fear in their stories"}
-{"input": "what is the importance of free press", "output": "hyde: A free press serves as a watchdog on government and powerful institutions, exposing corruption, fraud, and abuse. The First Amendment protects press freedom in the United States. Without it, citizens lack access to independent information needed to make informed decisions. Countries with restricted press freedoms consistently rank lower on democracy indices.\nlex: free press importance democracy journalism\nlex: freedom of press First Amendment accountability\nvec: why is a free press important for democracy and holding governments accountable\nvec: what role does press freedom play in protecting civil liberties and public information"}
-{"input": "what are the best national parks?", "output": "hyde: Top US national parks include Yellowstone (geysers, wildlife), Yosemite (granite cliffs, waterfalls), Grand Canyon (layered red rock), Zion (slot canyons, river hikes), Glacier (pristine alpine lakes), and Acadia (Atlantic coastline). Visit during shoulder season (May or September) for fewer crowds and pleasant weather.\nlex: best national parks USA visit\nlex: top national parks Yellowstone Yosemite Zion\nvec: what are the most popular and scenic national parks to visit in the United States\nvec: which national parks offer the best hiking, scenery, and wildlife experiences"}
-{"input": "what is deconstruction", "output": "hyde: Deconstruction, associated with Jacques Derrida, is a method of critical analysis that examines how meaning in texts is constructed through binary oppositions (speech/writing, presence/absence). Derrida argued that meaning is never fixed; it is always deferred through a chain of signifiers. Deconstruction reveals the internal contradictions and assumptions hidden within texts.\nlex: deconstruction Derrida literary theory philosophy\nlex: deconstruction meaning binary oppositions text\nvec: what is deconstruction in philosophy and literary theory as developed by Jacques Derrida\nvec: how does deconstructionist analysis challenge fixed meaning in texts"}
-{"input": "how to repair a leaky faucet", "output": "hyde: Turn off the water supply valves under the sink. Remove the faucet handle by unscrewing the decorative cap and handle screw. Pull out the stem or cartridge. For compression faucets, replace the rubber washer and O-ring. For cartridge faucets, replace the entire cartridge. Reassemble, turn the water back on, and test for leaks.\nlex: leaky faucet repair fix dripping\nlex: faucet washer O-ring cartridge replacement\nvec: how to fix a dripping faucet by replacing the washer or cartridge\nvec: what are the step-by-step instructions for repairing a leaky kitchen or bathroom faucet"}
-{"input": "what is the significance of the ganges river in hinduism?", "output": "hyde: The Ganges (Ganga) is Hinduism's holiest river, personified as the goddess Ganga. Hindus believe bathing in the Ganges washes away sins and that immersing ashes of the dead in the river frees the soul from the cycle of rebirth. The cities of Varanasi and Haridwar along the Ganges host major pilgrimage sites and cremation ghats.\nlex: Ganges River Hinduism sacred significance\nlex: Ganga river Hindu rituals purification\nvec: why is the Ganges River considered sacred in Hinduism\nvec: what religious rituals and beliefs are associated with the Ganges in Hindu tradition"}
-{"input": "best places to buy bonsai trees", "output": "hyde: Reputable bonsai retailers include Bonsai Boy of New York, Brussel's Bonsai, and Eastern Leaf (online). Local bonsai nurseries and Japanese garden shops often carry better-quality specimens. For beginners, start with hardy species like Chinese elm, ficus, or juniper. Expect to pay $30-80 for a quality starter tree.\nlex: buy bonsai trees online nursery shop\nlex: bonsai tree purchase quality species\nvec: where are the best places to buy bonsai trees online or at local nurseries\nvec: which online retailers and nurseries sell high-quality bonsai trees for beginners"}
-{"input": "what are the principles of physics", "output": "hyde: The fundamental principles of physics include Newton's three laws of motion, the law of universal gravitation, the laws of thermodynamics (energy conservation, entropy), Maxwell's equations for electromagnetism, Einstein's special and general relativity, and quantum mechanics. These describe how matter, energy, space, and time interact at all scales.\nlex: physics principles fundamental laws\nlex: Newton's laws thermodynamics relativity quantum\nvec: what are the fundamental principles and laws of physics\nvec: how do Newton's laws, thermodynamics, and quantum mechanics form the foundations of physics"}
-{"input": "how to optimize website for seo", "output": "hyde: On-page SEO: use target keywords in title tags, H1 headings, and meta descriptions. Write unique, high-quality content over 1,000 words. Optimize images with alt text and compression. Technical SEO: ensure fast page load times (under 3 seconds), mobile responsiveness, HTTPS, clean URL structure, and an XML sitemap submitted to Google Search Console.\nlex: SEO optimization website search engine ranking\nlex: on-page SEO meta tags keywords content\nvec: what are the key steps to optimize a website for search engine rankings\nvec: how to improve on-page and technical SEO for better Google search results"}
-{"input": "what are the sacred texts of buddhism", "output": "hyde: The primary Buddhist scripture is the Tripitaka (Pali Canon), composed of three \"baskets\": the Vinaya Pitaka (monastic rules), Sutta Pitaka (discourses of the Buddha), and Abhidhamma Pitaka (philosophical analysis). Mahayana Buddhism adds texts like the Heart Sutra, Diamond Sutra, and Lotus Sutra, emphasizing the bodhisattva path.\nlex: Buddhist sacred texts scriptures Tripitaka\nlex: Buddhism sutras Pali Canon Mahayana texts\nvec: what are the main sacred texts and scriptures of Buddhism\nvec: how do the Pali Canon and Mahayana sutras differ as Buddhist scriptures"}
-{"input": "how to participate in public hearings", "output": "hyde: To participate in a public hearing, check your local government website for upcoming meetings and agendas. Sign up to speak in advance if required. Prepare a concise statement (usually 2-3 minutes). State your name and address for the record. Focus on facts and personal impact. You can also submit written comments before the deadline.\nlex: public hearing participation attend testify\nlex: public hearing comment speak local government\nvec: how can citizens participate and give testimony at public hearings\nvec: what are the steps to attend and speak at a local government public hearing"}
-{"input": "what is a hypothesis", "output": "hyde: A hypothesis is a testable prediction about the relationship between two or more variables. In the scientific method, it follows observation and research: based on existing knowledge, you propose an explanation that can be tested through experimentation. A hypothesis must be falsifiable\u2014there must be a possible outcome that would prove it wrong.\nlex: hypothesis definition scientific research\nlex: hypothesis testable prediction experiment\nvec: what is a hypothesis in the scientific method and how is one formed\nvec: what makes a good scientific hypothesis and how is it different from a theory"}
-{"input": "what is extreme sports photography?", "output": "hyde: Extreme sports photography captures athletes performing in high-risk activities like surfing, snowboarding, rock climbing, and base jumping. Photographers use fast shutter speeds (1/1000s or faster), continuous autofocus, and burst mode. Key gear includes weather-sealed DSLRs or mirrorless cameras, telephoto lenses (70-200mm), and GoPro-style action cameras for POV shots.\nlex: extreme sports photography action camera\nlex: adventure sports photography techniques shutter speed\nvec: what is extreme sports photography and what equipment and techniques does it require\nvec: how do photographers capture high-speed action shots in extreme sports"}
-{"input": "how to live sustainably?", "output": "hyde: Sustainable living starts with reducing consumption: buy less, choose durable goods, and repair before replacing. Eat more plant-based meals, which have a lower carbon footprint. Use public transit, bike, or walk. Reduce waste through composting and recycling. Switch to renewable energy and use LED lighting. Carry reusable bags, bottles, and containers.\nlex: sustainable living tips eco-friendly lifestyle\nlex: reduce waste carbon footprint daily habits\nvec: what are practical everyday habits for living a more sustainable and eco-friendly life\nvec: how can individuals reduce their carbon footprint and waste in daily living"}
-{"input": "what is epistemological relativism", "output": "hyde: Epistemological relativism holds that knowledge and truth are not absolute but are relative to the social, cultural, or historical context in which they are produced. Different communities may have equally valid but incompatible knowledge systems. Critics argue this leads to self-refutation: the claim that all knowledge is relative is itself presented as an absolute truth.\nlex: epistemological relativism knowledge truth\nlex: epistemological relativism philosophy objectivity\nvec: what is epistemological relativism and how does it challenge objective truth claims\nvec: how does epistemological relativism argue that knowledge is relative to perspective or culture"}
-{"input": "what is mixed media art?", "output": "hyde: Mixed media art combines two or more artistic media in a single work\u2014for example, acrylic paint with collaged paper, fabric, ink, and found objects. Techniques include layering, texturing with gels and paste, image transfers, and assemblage. The combination of materials creates visual depth and tactile richness that single-medium works cannot achieve.\nlex: mixed media art techniques materials\nlex: mixed media collage painting assemblage\nvec: what is mixed media art and what materials and techniques are commonly used\nvec: how do artists combine different media like paint, paper, and found objects in mixed media artwork"}
-{"input": "how to work at microsoft?", "output": "hyde: Apply through Microsoft's careers portal at careers.microsoft.com. Most technical roles require a CS degree or equivalent experience. The interview process typically includes a phone screen, online coding assessment, and an on-site loop of 4-5 interviews covering algorithms, system design, and behavioral questions. Prepare with LeetCode and system design practice.\nlex: Microsoft jobs hiring apply career\nlex: Microsoft interview process software engineer\nvec: how to apply for a job at Microsoft and what is the interview process like\nvec: what qualifications and steps are needed to get hired at Microsoft"}
-{"input": "what are the characteristics of haiku?", "output": "hyde: Haiku is a Japanese poetic form traditionally consisting of three lines with a 5-7-5 syllable pattern (or 17 morae in Japanese). Haiku typically captures a moment in nature and includes a kigo (seasonal word) and a kireji (cutting word) that creates a pause or shift. The poem juxtaposes two images to evoke emotion through suggestion rather than direct statement.\nlex: haiku characteristics syllable structure\nlex: haiku poetry 5-7-5 Japanese nature\nvec: what are the defining characteristics and rules of haiku poetry\nvec: how is a traditional Japanese haiku structured and what themes does it explore"}
-{"input": "what is plato's theory of forms", "output": "hyde: Plato's theory of Forms posits that the physical world is a shadow of a higher, non-material reality consisting of perfect, eternal Forms (Ideas). A beautiful object participates in the Form of Beauty; a just action reflects the Form of Justice. True knowledge comes from understanding these abstract Forms through reason, not through sensory experience of the changeable physical world.\nlex: Plato theory of Forms Ideas philosophy\nlex: Platonic Forms abstract reality idealism\nvec: what is Plato's theory of Forms and how does it explain reality\nvec: how did Plato distinguish between the world of Forms and the physical world"}
-{"input": "what is the law of attraction?", "output": "hyde: The law of attraction is the belief that positive or negative thoughts bring positive or negative experiences into a person's life. Proponents, popularized by the book \"The Secret,\" claim that visualizing desired outcomes and maintaining a positive mindset attracts those outcomes. Scientists generally consider it pseudoscience, though positive thinking can influence motivation and goal-directed behavior.\nlex: law of attraction manifestation positive thinking\nlex: law of attraction belief visualization\nvec: what is the law of attraction and how is it supposed to work\nvec: does the law of attraction have any scientific basis or evidence"}
-{"input": "what is literary parody?", "output": "hyde: Literary parody imitates the style, conventions, or content of a specific work or genre for comedic or critical effect. It exaggerates distinctive features to expose flaws or absurdities. Examples include Don Quixote (parodying chivalric romances), Northanger Abbey (Gothic novels), and The Hitchhiker's Guide to the Galaxy (science fiction tropes).\nlex: literary parody satire imitation genre\nlex: parody literature examples humor exaggeration\nvec: what is literary parody and how does it use imitation for comedic or critical effect\nvec: what are famous examples of parody in literature"}
-{"input": "how to invest in cryptocurrency safely?", "output": "hyde: To invest in crypto safely: use reputable exchanges like Coinbase or Kraken with two-factor authentication. Never invest more than you can afford to lose. Transfer holdings to a hardware wallet (Ledger, Trezor) for long-term storage. Diversify across Bitcoin and Ethereum rather than speculative altcoins. Beware of phishing scams and never share your seed phrase.\nlex: cryptocurrency investing safely beginner\nlex: crypto investment security wallet exchange\nvec: how can beginners invest in cryptocurrency safely and minimize risk of loss\nvec: what security measures should you take when buying and storing cryptocurrency"}
-{"input": "what is a protagonist?", "output": "hyde: The protagonist is the central character of a narrative, the one whose goals and conflicts drive the plot. The story is told from their perspective or follows their journey. Protagonists are not always heroes\u2014they can be antiheroes or morally ambiguous characters. The antagonist opposes the protagonist, creating the central conflict of the story.\nlex: protagonist definition literature main character\nlex: protagonist role story narrative hero\nvec: what is a protagonist in literature and what role do they play in a story\nvec: how does the protagonist differ from the antagonist in narrative fiction"}
-{"input": "how to prepare for a promotion review?", "output": "hyde: Before your promotion review, compile a list of key accomplishments with measurable results (revenue generated, projects delivered, efficiency improvements). Gather positive feedback from colleagues and clients. Align your achievements with the next-level job description. Prepare specific examples demonstrating leadership, initiative, and impact. Practice articulating your case concisely.\nlex: promotion review preparation performance\nlex: job promotion meeting self-assessment achievements\nvec: how should an employee prepare for a promotion review meeting with their manager\nvec: what documentation and evidence should you gather before a promotion discussion"}
-{"input": "how to reduce personal water usage?", "output": "hyde: Install low-flow showerheads (2 GPM or less) and faucet aerators. Fix leaky faucets\u2014a drip wastes up to 3,000 gallons per year. Take shorter showers (5 minutes saves 12 gallons). Run dishwashers and washing machines only with full loads. Water gardens in the early morning to reduce evaporation. Collect rainwater for outdoor use.\nlex: reduce water usage conservation tips home\nlex: save water household low-flow fixtures\nvec: what are practical ways to reduce water consumption at home\nvec: how can individuals conserve water in their daily routines and household"}
-{"input": "sustainable technology", "output": "hyde: Sustainable technologies aim to reduce environmental impact while meeting human needs. Examples include solar panels and wind turbines for clean energy, electric vehicles, energy-efficient building materials, carbon capture systems, biodegradable plastics, precision agriculture that reduces water and pesticide use, and smart grids that optimize energy distribution.\nlex: sustainable technology green tech renewable energy\nlex: sustainable technology clean energy innovation\nvec: what are examples of sustainable technologies that reduce environmental impact\nvec: how is technology being used to promote sustainability and fight climate change"}
-{"input": "how do i vote in person", "output": "hyde: To vote in person, check your registration status and find your polling location at vote.org or your state's election website. Bring a valid photo ID if required by your state. On Election Day, go to your assigned polling place, check in with a poll worker, receive your ballot, mark your choices, and submit your ballot through the scanner or ballot box.\nlex: vote in person polling place Election Day\nlex: in-person voting process ID requirements\nvec: what are the steps to vote in person at a polling place on Election Day\nvec: what do I need to bring and expect when voting in person for the first time"}
-{"input": "what is aquaponics?", "output": "hyde: Aquaponics is a food production system that combines aquaculture (raising fish) with hydroponics (growing plants in water). Fish waste provides natural fertilizer for the plants, and the plants filter the water for the fish, creating a symbiotic cycle. Common setups use tilapia or goldfish with leafy greens, herbs, and tomatoes.\nlex: aquaponics fish plants symbiotic system\nlex: aquaponics setup grow food fish tank\nvec: what is aquaponics and how does it combine fish farming with plant growing\nvec: how does an aquaponics system work and what can you grow with it"}
-{"input": "what is the significance of the hajj in islam?", "output": "hyde: The Hajj is the fifth pillar of Islam, requiring every able-bodied Muslim who can afford it to make the pilgrimage to Mecca at least once in their lifetime. Performed during Dhul Hijjah, the rituals include circling the Kaaba seven times (tawaf), walking between Safa and Marwah, standing at Arafat, and the symbolic stoning of the devil at Mina.\nlex: Hajj Islam pilgrimage Mecca significance\nlex: Hajj pillar Islam Kaaba rituals\nvec: why is the Hajj pilgrimage to Mecca significant in Islam\nvec: what are the rituals and spiritual meaning of the Hajj for Muslims"}
-{"input": "what is a hypothesis testing", "output": "hyde: Hypothesis testing is a statistical method for making decisions using data. You state a null hypothesis (H0, no effect) and an alternative hypothesis (H1, effect exists). Collect data and calculate a test statistic. If the p-value is below the significance level (typically 0.05), reject H0. Common tests include t-test, chi-square, and ANOVA.\nlex: hypothesis testing statistics null alternative\nlex: hypothesis test p-value significance level\nvec: what is hypothesis testing in statistics and how does it work\nvec: how do you perform a hypothesis test using null and alternative hypotheses"}
-{"input": "how to publish a scientific article", "output": "hyde: To publish a scientific article: 1) Write the manuscript following IMRAD format (Introduction, Methods, Results, Discussion). 2) Choose a target journal matching your topic and impact level. 3) Format per the journal's author guidelines. 4) Submit through the journal's online portal. 5) Respond to peer reviewer comments during revision. The process typically takes 3-12 months.\nlex: publish scientific article journal peer review\nlex: scientific paper submission academic journal\nvec: what are the steps to publish a research article in a peer-reviewed scientific journal\nvec: how does the peer review and journal submission process work for scientific papers"}
-{"input": "what are common themes in poetry?", "output": "hyde: Common poetry themes include love and desire, mortality and the passage of time, nature and the seasons, loss and grief, identity and self-discovery, war and conflict, beauty, spirituality, and social justice. These universal themes recur across periods\u2014from Sappho's love lyrics to Keats's meditations on mortality to contemporary poets exploring identity.\nlex: poetry themes common literary motifs\nlex: poetry themes love death nature identity\nvec: what are the most common themes explored in poetry across different periods\nvec: how do poets use recurring themes like love, death, and nature in their work"}
-{"input": "how to write a resume", "output": "hyde: A strong resume includes: contact information, a brief professional summary (2-3 sentences), work experience in reverse chronological order with bullet-point achievements, education, and relevant skills. Use action verbs (\"led,\" \"built,\" \"increased\") and quantify results (\"increased sales by 25%\"). Keep it to one page for under 10 years of experience. Tailor it to each job posting.\nlex: write resume format template job\nlex: resume writing tips work experience skills\nvec: how to write an effective resume that stands out to employers and recruiters\nvec: what should be included in a resume and how should it be formatted"}
-{"input": "what are key performance indicators", "output": "hyde: Key Performance Indicators (KPIs) are measurable values that demonstrate how effectively a company is achieving its objectives. Examples include revenue growth rate, customer acquisition cost, employee retention rate, and net promoter score. Effective KPIs are specific, measurable, achievable, relevant, and time-bound (SMART). They should align directly with strategic goals.\nlex: key performance indicators KPIs metrics\nlex: KPI examples business performance measurement\nvec: what are key performance indicators and how are they used to measure business success\nvec: how do companies choose and track the right KPIs for their goals"}
-{"input": "how to find art inspiration online?", "output": "hyde: Top platforms for art inspiration include Pinterest (curated mood boards), Behance and Dribbble (professional portfolios), ArtStation (digital and concept art), DeviantArt (community art), and Instagram art hashtags. Museums also offer virtual collections: Google Arts & Culture, the Met's Open Access, and the Rijksmuseum's digital archive.\nlex: art inspiration online websites platforms\nlex: art inspiration Pinterest Behance DeviantArt\nvec: where can artists find creative inspiration and references online\nvec: what websites and platforms are best for discovering art inspiration"}
-{"input": "what is the significance of logic in ethics?", "output": "hyde: Logic provides the structural framework for ethical reasoning. Valid arguments require that conclusions follow necessarily from premises. In ethics, logic helps identify fallacies, test the consistency of moral principles, and evaluate whether ethical claims are well-supported. For example, the logical form of universalizability in Kant's categorical imperative tests moral maxims for contradiction.\nlex: logic ethics moral reasoning philosophy\nlex: logical arguments ethical theory validity\nvec: what role does logic play in ethical reasoning and moral philosophy\nvec: how do philosophers use logical arguments to evaluate ethical claims"}
-{"input": "how to engage in sustainable urban living?", "output": "hyde: Sustainable urban living includes using public transit, biking, or walking instead of driving. Choose an energy-efficient apartment, reduce food waste through composting and meal planning, shop at local farmers markets, and support community gardens. Use shared resources like tool libraries and car-sharing services to reduce individual consumption.\nlex: sustainable urban living city eco-friendly\nlex: urban sustainability public transit green housing\nvec: what are practical ways to live sustainably in a city environment\nvec: how can urban residents reduce their environmental footprint in daily life"}
-{"input": "what is the concept of shalom in judaism?", "output": "hyde: Shalom in Judaism means far more than the absence of conflict. Derived from the Hebrew root meaning \"wholeness\" or \"completeness,\" shalom encompasses peace, harmony, welfare, and flourishing. It describes right relationships between people, with God, and with creation. The pursuit of shalom (rodef shalom) is a central ethical obligation in Jewish life.\nlex: shalom Judaism peace concept meaning\nlex: shalom Hebrew wholeness completeness Jewish\nvec: what does the concept of shalom mean in Judaism beyond just peace\nvec: how is shalom understood as wholeness and completeness in Jewish theology"}
-{"input": "how do structuralism and functionalism differ", "output": "hyde: Structuralism, founded by Wilhelm Wundt, sought to break down mental processes into their basic elements through introspection\u2014analyzing the structure of consciousness. Functionalism, led by William James, focused instead on the purpose of mental processes\u2014how the mind helps organisms adapt to their environment. Structuralism asked \"what is consciousness?\" while functionalism asked \"what is consciousness for?\"\nlex: structuralism functionalism differences psychology\nlex: structuralism Wundt functionalism James psychology\nvec: what are the differences between structuralism and functionalism in psychology\nvec: how did Wundt's structuralism differ from William James's functionalism"}
-{"input": "duolingo courses", "output": "hyde: Duolingo offers courses in over 40 languages, including Spanish, French, German, Japanese, Korean, Mandarin, Italian, Portuguese, and Hindi. Each course uses gamified lessons with speaking, listening, reading, and writing exercises. Popular courses include Spanish for English speakers (the most enrolled) and English for Spanish speakers.\nlex: Duolingo language courses available\nlex: Duolingo app languages learn\nvec: what language courses are available on Duolingo and which are the most popular\nvec: how effective is Duolingo for learning a new language and what languages does it offer"}
-{"input": "how to hang artwork without nails", "output": "hyde: Command Strips by 3M hold up to 16 lbs and leave no wall damage\u2014press firmly for 30 seconds and wait 1 hour before hanging. Other nail-free options include adhesive hooks, velcro strips, magnetic frames, and picture hanging wire with adhesive anchors. For heavier pieces, use monkey hooks which require only a tiny hole, no hammer needed.\nlex: hang artwork without nails wall\nlex: picture hanging command strips adhesive hooks\nvec: how to hang pictures and artwork on walls without using nails or drilling holes\nvec: what are the best no-damage methods for hanging frames on walls"}
-{"input": "how augmented reality is applied in different fields", "output": "hyde: Augmented reality overlays digital content onto the real world and is applied across many fields. In healthcare, surgeons use AR to visualize anatomy during procedures. In education, AR apps bring textbook content to life in 3D. Retailers like IKEA use AR to let customers preview furniture in their homes. In manufacturing, AR guides workers through assembly with step-by-step overlays.\nlex: augmented reality applications fields industry\nlex: AR technology healthcare education retail\nvec: how is augmented reality being used in healthcare, education, and retail industries\nvec: what are real-world applications of augmented reality across different fields"}
-{"input": "what are the best soil types for roses", "output": "hyde: Roses thrive in well-draining loamy soil with a pH between 6.0 and 6.5. Amend heavy clay soil with compost and coarse sand to improve drainage. Mix in aged manure or rose-specific fertilizer before planting. Ensure soil holds moisture without becoming waterlogged. Mulch with 2-3 inches of organic material to retain moisture and regulate temperature.\nlex: best soil roses growing type\nlex: rose garden soil pH loam drainage\nvec: what type of soil do roses grow best in and how should it be prepared\nvec: what soil pH and composition are ideal for growing healthy rose bushes"}
-{"input": "how to encourage siblings to get along?", "output": "hyde: Give each child one-on-one time to reduce competition for attention. Avoid comparing siblings or labeling them (\"the smart one\"). Teach conflict resolution: help them express feelings with \"I\" statements and find compromises. Praise cooperation when you see it. Set clear family rules about physical aggression and name-calling.\nlex: siblings get along fighting conflict resolution\nlex: sibling rivalry reduce cooperation strategies\nvec: how can parents encourage their children to get along and reduce sibling rivalry\nvec: what strategies help siblings resolve conflicts and build positive relationships"}
-{"input": "what is the great wall of china?", "output": "hyde: The Great Wall of China is a series of fortifications built over centuries to protect Chinese states and empires from northern invasions. The most well-known sections were built during the Ming Dynasty (1368-1644). The total length, including all branches and sections across dynasties, is approximately 21,196 kilometers (13,171 miles).\nlex: Great Wall China history construction\nlex: Great Wall China length dynasty defense\nvec: what is the Great Wall of China and why was it built\nvec: how long is the Great Wall of China and which dynasties built it"}
-{"input": "how to attend a political rally", "output": "hyde: Find rallies through candidate websites, social media, or event platforms like Eventbrite. Register if required (RSVP is often free). Arrive early as venues fill up. Bring water, sunscreen if outdoors, a charged phone, and valid ID. Wear comfortable shoes. Be aware of your surroundings and know the exit locations. Follow posted rules about signs and bags.\nlex: attend political rally event tips\nlex: political rally preparation safety what to bring\nvec: how to find and attend a political rally or campaign event in your area\nvec: what should you know before attending your first political rally"}
-{"input": "what is the function of a narrative arc?", "output": "hyde: A narrative arc is the structure that shapes a story's progression. It typically follows five stages: exposition (introduces characters and setting), rising action (builds conflict and tension), climax (the turning point), falling action (consequences unfold), and resolution (conflict is resolved). The arc gives readers a satisfying sense of progression and closure.\nlex: narrative arc function story structure\nlex: narrative arc exposition climax resolution plot\nvec: what is a narrative arc and how does it structure a story from beginning to end\nvec: what are the parts of a narrative arc and why is it important in storytelling"}
-{"input": "arg parse", "output": "hyde: Use argparse to handle CLI arguments: parser = argparse.ArgumentParser(); parser.add_argument(\"file\"); args = parser.parse_args(). Supports positional args, optional flags, subcommands, and type validation.\nlex: argparse Python command line arguments\nlex: argument parser CLI Python module\nvec: how to use Python argparse module to parse command line arguments\nvec: how to define positional and optional arguments with argparse"}
-{"input": "how to draw realistic portraits?", "output": "hyde: Start with a lightly sketched oval. Divide the face: eyes sit at the midpoint, the nose halfway between eyes and chin, and the mouth one-third below the nose. Use a grid or Loomis method for proportions. Build tonal values gradually\u2014light layers first, then darker shadows. Blend with a tortillon for smooth skin textures. Pay close attention to the light source direction.\nlex: draw realistic portrait pencil technique\nlex: portrait drawing face proportions shading\nvec: how to draw a realistic human portrait with accurate proportions and shading\nvec: what techniques do artists use to draw lifelike faces with pencil"}
-{"input": "what is the impact of religion on culture?", "output": "hyde: Religion has profoundly shaped cultures worldwide\u2014influencing art (Gothic cathedrals, Islamic calligraphy, Hindu temple sculpture), moral codes, legal systems (Sharia, Canon law), dietary practices, marriage customs, holidays, and music. Religious narratives provide shared identity and meaning. The Protestant work ethic, for example, influenced Western capitalism according to Max Weber.\nlex: religion impact culture society influence\nlex: religion culture art morality traditions\nvec: how has religion shaped culture, art, and social norms throughout history\nvec: what influence does religion have on cultural values, laws, and traditions"}
-{"input": "what is the ethics of war", "output": "hyde: Just war theory establishes criteria for morally permissible warfare. Jus ad bellum (right to go to war) requires just cause, legitimate authority, right intention, last resort, proportionality, and reasonable chance of success. Jus in bello (right conduct in war) requires distinction between combatants and civilians and proportional use of force.\nlex: ethics of war just war theory morality\nlex: just war ethics military conflict jus ad bellum\nvec: what is just war theory and the ethical principles governing warfare\nvec: how do philosophers evaluate whether a war is morally justified"}
-{"input": "how to analyze scientific data statistically", "output": "hyde: Choose your statistical test based on data type and research question. For comparing two group means, use an independent t-test (parametric) or Mann-Whitney U (non-parametric). For three or more groups, use one-way ANOVA. For correlations, use Pearson's r (continuous) or Spearman's rho (ordinal). Report effect sizes and confidence intervals alongside p-values.\nlex: statistical analysis scientific data methods\nlex: statistical tests data analysis research t-test ANOVA\nvec: how to choose and apply the right statistical tests for analyzing scientific research data\nvec: what are the steps for performing statistical analysis on experimental data"}
-{"input": "how to analyze experimental data", "output": "hyde: Start by cleaning the data: remove outliers using predefined criteria and check for missing values. Calculate descriptive statistics (mean, median, standard deviation). Visualize distributions with histograms or box plots. Apply appropriate statistical tests to evaluate hypotheses. Interpret results in context of your research question and note limitations.\nlex: analyze experimental data methods results\nlex: experimental data analysis visualization interpretation\nvec: what are the steps to properly analyze and interpret experimental research data\nvec: how to organize, visualize, and draw conclusions from experimental results"}
-{"input": "climate action", "output": "hyde: Climate action encompasses policies and initiatives to reduce greenhouse gas emissions and adapt to climate change. Key strategies include transitioning to renewable energy, electrifying transportation, improving energy efficiency in buildings, protecting forests, and implementing carbon pricing. The Paris Agreement aims to limit warming to 1.5\u00b0C above pre-industrial levels.\nlex: climate action policy emissions reduction\nlex: climate action carbon neutral renewable energy 2026\nvec: what actions are governments and individuals taking to combat climate change\nvec: what are the most effective climate action strategies for reducing greenhouse gas emissions"}
-{"input": "what are the main teachings of shinto?", "output": "hyde: Shinto, Japan's indigenous religion, centers on the worship of kami\u2014spirits inhabiting natural features, ancestors, and sacred places. Core teachings emphasize purity (physical and spiritual cleanliness), harmony with nature, respect for ancestors, and community ritual. There is no single scripture; practice focuses on shrine worship, seasonal festivals (matsuri), and purification rites (harae).\nlex: Shinto teachings beliefs practices Japan\nlex: Shinto kami nature purity rituals\nvec: what are the core beliefs and teachings of the Shinto religion in Japan\nvec: how does Shinto view nature, purity, and the spiritual world"}
-{"input": "chronic pain management clinics", "output": "hyde: Chronic pain management clinics use a multidisciplinary approach combining medication management, physical therapy, cognitive behavioral therapy, nerve blocks, and interventional procedures like epidural steroid injections. Teams typically include pain medicine physicians, physical therapists, and psychologists. Ask your primary care doctor for a referral or search the American Academy of Pain Medicine directory.\nlex: chronic pain management clinic treatment\nlex: pain clinic multidisciplinary therapy near me\nvec: what services do chronic pain management clinics offer and how do they treat patients\nvec: how to find a reputable chronic pain management clinic for long-term treatment"}
-{"input": "what is a business consultant", "output": "hyde: A business consultant is a professional who advises organizations on strategy, operations, and management. They analyze business problems, identify inefficiencies, and recommend solutions to improve performance and profitability.\nlex: business consultant role responsibilities\nlex: management consulting services\nlex: business advisory consultant\nvec: what does a business consultant do and what services do they provide\nvec: what qualifications and skills are needed to become a business consultant"}
-{"input": "what are the characteristics of classic literature?", "output": "hyde: Classic literature is defined by its enduring relevance, universal themes, and artistic merit. These works explore the human condition through complex characters, moral dilemmas, and language that transcends the era in which they were written.\nlex: classic literature characteristics traits\nlex: literary classics defining features\nvec: what qualities make a work of fiction considered classic literature\nvec: what distinguishes classic literature from other genres or time periods"}
-{"input": "what is blockchain technology", "output": "hyde: Blockchain is a distributed ledger technology where transactions are recorded in blocks linked by cryptographic hashes. Each block contains a timestamp and transaction data, forming an immutable chain validated by a network of nodes through consensus mechanisms.\nlex: blockchain technology distributed ledger\nlex: blockchain decentralized cryptographic\nlex: blockchain consensus mechanism\nvec: how does blockchain technology work as a distributed ledger system\nvec: what are the technical components that make up a blockchain"}
-{"input": "where to buy luxury bedding sets", "output": "hyde: Shop our collection of luxury bedding sets crafted from 100% Egyptian cotton and Italian-woven sateen. Thread counts from 400 to 1000. Free shipping on orders over $200. Available in king, queen, and California king sizes.\nlex: luxury bedding sets buy online\nlex: high-end sheets duvet comforter\nlex: premium Egyptian cotton bedding\nvec: where can I purchase high-quality luxury bedding sets online or in stores\nvec: which brands sell the best luxury sheets and duvet covers"}
-{"input": "how to retire early", "output": "hyde: To retire early, aim to save 50-70% of your income and invest in low-cost index funds. At a 4% safe withdrawal rate, you need roughly 25x your annual expenses. A person spending $40,000/year needs about $1 million to retire.\nlex: early retirement financial planning\nlex: FIRE financial independence retire early\nlex: early retirement savings rate\nvec: how much money do you need to save to retire before age 50\nvec: what financial strategies allow people to retire early through the FIRE movement"}
-{"input": "how climate change affects farming", "output": "hyde: Rising temperatures and shifting precipitation patterns reduce crop yields by 2-6% per decade. Droughts, heat stress, and unpredictable frost dates disrupt planting schedules, while increased CO2 levels alter nutrient content in staple crops like wheat and rice.\nlex: climate change agriculture crop yields\nlex: global warming farming drought impact\nlex: climate change food production\nvec: how does rising global temperature affect crop yields and food production\nvec: what effects does climate change have on soil quality and growing seasons for farmers"}
-{"input": "how to assess car tire damage?", "output": "hyde: Check tire tread depth using the penny test\u2014insert a penny with Lincoln's head facing down. If you can see the top of his head, the tread is below 2/32\" and the tire needs replacing. Also inspect sidewalls for bulges, cracks, or cuts.\nlex: car tire damage inspection signs\nlex: tire wear tread depth sidewall\nlex: tire replacement damage indicators\nvec: how do you inspect car tires for damage and know when they need replacement\nvec: what are the signs of dangerous tire wear or sidewall damage on a vehicle"}
-{"input": "kindle library", "output": "hyde: Your Kindle Library stores all purchased and borrowed ebooks. Access it by tapping 'Library' on the home screen. Filter by 'Downloaded' or 'All' to see books stored on the device or in the cloud. Use collections to organize titles by genre or topic.\nlex: kindle library ebook collection\nlex: Amazon Kindle digital library management\nlex: kindle book organization archive\nvec: how to manage and organize your ebook library on a Kindle device\nvec: how to borrow library books on Kindle through Libby or OverDrive"}
-{"input": "how to plant wildflowers in clay soil?", "output": "hyde: To plant wildflowers in clay soil, amend the top 2-3 inches with coarse sand and compost to improve drainage. Choose clay-tolerant species like black-eyed Susan, coneflower, and bee balm. Sow seeds in fall or early spring, pressing them into the surface without burying deeply.\nlex: wildflower planting clay soil\nlex: wildflower seeds heavy clay ground\nvec: what is the best method for growing wildflowers in heavy clay soil\nvec: which wildflower species thrive in clay soil conditions"}
-{"input": "how to photograph the milky way", "output": "hyde: Set your camera to manual mode with an aperture of f/2.8 or wider, ISO 3200-6400, and a shutter speed of 15-25 seconds using the 500 rule. Use a sturdy tripod and a wide-angle lens. Shoot during a new moon away from light pollution.\nlex: milky way astrophotography camera settings\nlex: night sky photography milky way\nlex: milky way photo long exposure\nvec: what camera settings and equipment do you need to photograph the milky way\nvec: how to find the best location and time for milky way photography"}
-{"input": "what are ocean currents", "output": "hyde: Ocean currents are continuous, directed movements of seawater driven by wind, temperature, salinity, and the Earth's rotation. Surface currents are driven primarily by wind patterns, while deep-water thermohaline circulation is driven by differences in water density.\nlex: ocean currents thermohaline circulation\nlex: ocean surface currents deep water\nlex: ocean current patterns global\nvec: what causes ocean currents and how do they circulate water around the globe\nvec: what is the difference between surface ocean currents and deep water thermohaline circulation"}
-{"input": "what is the concept of moral absolutism?", "output": "hyde: Moral absolutism holds that certain actions are inherently right or wrong regardless of context, culture, or consequence. Under this view, ethical rules are universal and unchanging\u2014lying is always wrong, for example, even if it could prevent harm.\nlex: moral absolutism ethical theory\nlex: moral absolutism objective right wrong\nvec: what does moral absolutism mean as an ethical philosophy\nvec: how does moral absolutism differ from moral relativism in determining right and wrong"}
-{"input": "how to set up a smart home?", "output": "hyde: Start with a smart speaker like Amazon Echo or Google Nest as your central hub. Connect smart bulbs (Philips Hue, LIFX) and a smart thermostat (Nest, Ecobee) over WiFi or Zigbee. Use the companion app to create automations like turning off lights at bedtime.\nlex: smart home setup devices hub\nlex: home automation WiFi Zigbee Z-Wave\nlex: smart home starter guide speakers lights\nvec: what devices and hubs do you need to set up a smart home automation system\nvec: how to connect smart lights thermostats and speakers in a home network"}
-{"input": "what is cycling commute?", "output": "hyde: Cycling commute refers to using a bicycle as your primary transportation to and from work. Bike commuters typically ride 3-15 miles each way, saving on fuel costs while getting daily exercise. Many cities now have protected bike lanes and bike-share programs.\nlex: cycling commute bike to work\nlex: bicycle commuting urban transportation\nvec: what does it mean to commute by bicycle and what are the benefits\nvec: how do people use cycling as their daily commute to work in cities"}
-{"input": "how to approach ethical decision-making", "output": "hyde: A structured approach to ethical decision-making involves: (1) identify the ethical issue, (2) gather relevant facts, (3) consider stakeholders affected, (4) evaluate options using ethical frameworks like utilitarianism or deontology, and (5) make and justify your decision.\nlex: ethical decision-making framework steps\nlex: ethical reasoning moral dilemma process\nvec: what frameworks or steps help with making ethical decisions in difficult situations\nvec: how do you systematically evaluate moral choices when facing an ethical dilemma"}
-{"input": "how to find a reliable realtor", "output": "hyde: Check that the realtor is licensed in your state and has no disciplinary actions. Read online reviews, ask for references from recent clients, and verify their transaction history. A good agent should know the local market and communicate promptly.\nlex: find reliable realtor real estate agent\nlex: choosing trustworthy real estate agent\nvec: how do you find and vet a trustworthy real estate agent for buying or selling a home\nvec: what qualities and credentials should you look for in a reliable realtor"}
-{"input": "how to lease a car?", "output": "hyde: To lease a car, negotiate the capitalized cost (sale price), money factor (interest rate), and residual value. Monthly payments are based on the difference between the cap cost and residual, divided by the lease term, plus a finance charge. Typical leases run 24-36 months.\nlex: car lease process terms payments\nlex: vehicle leasing agreement negotiation\nvec: what are the steps to lease a car and what terms should you negotiate\nvec: how do car lease payments work and what fees are involved"}
-{"input": "how do different cultures commemorate death?", "output": "hyde: In Mexico, D\u00eda de los Muertos celebrates deceased loved ones with altars, marigolds, and sugar skulls. Hindu cremation ceremonies release the soul for reincarnation. In Ghana, elaborate fantasy coffins reflect the deceased's life. Japanese Obon festivals welcome ancestral spirits home.\nlex: death rituals funeral customs cultures\nlex: cultural death commemoration ceremonies\nvec: what are the different ways cultures around the world honor and commemorate the dead\nvec: how do funeral rituals and mourning traditions vary across religions and cultures"}
-{"input": "how to change a tire", "output": "hyde: Loosen the lug nuts slightly before jacking. Place the jack under the vehicle frame near the flat tire and raise until the tire clears the ground. Remove lug nuts, pull off the flat, mount the spare, and hand-tighten the nuts in a star pattern. Lower the car and torque to 80-100 ft-lbs.\nlex: change flat tire steps jack\nlex: car tire replacement spare\nvec: what are the step-by-step instructions for changing a flat tire on the side of the road\nvec: how to safely jack up a car and replace a flat tire with the spare"}
-{"input": "how to develop a positive mindset?", "output": "hyde: Developing a positive mindset starts with awareness of negative self-talk. Replace \"I can't\" with \"I'm learning to.\" Practice daily gratitude by writing three things you're thankful for. Surround yourself with supportive people and limit exposure to negativity.\nlex: positive mindset development habits\nlex: positive thinking mental attitude techniques\nvec: what daily habits and techniques help develop and maintain a positive mindset\nvec: how can you train your brain to think more positively and overcome negative thought patterns"}
-{"input": "what is bioinformatics", "output": "hyde: Bioinformatics is an interdisciplinary field that combines biology, computer science, and statistics to analyze biological data. It involves developing algorithms and software to process DNA sequences, protein structures, and gene expression data from high-throughput experiments.\nlex: bioinformatics computational biology genomics\nlex: bioinformatics DNA sequence analysis\nvec: what is the field of bioinformatics and how does it apply computational methods to biological data\nvec: how is bioinformatics used to analyze DNA sequences and genomic data"}
-{"input": "how to prepare for a triathlon", "output": "hyde: A 12-week sprint triathlon plan builds endurance across all three disciplines. Week 1: swim 2x (20 min), bike 2x (30 min), run 3x (20 min). Gradually increase volume by 10% per week. Include one brick workout (bike-to-run) weekly to simulate race-day transitions.\nlex: triathlon training plan preparation\nlex: swim bike run triathlon training\nvec: what training plan should a beginner follow to prepare for their first triathlon\nvec: how to balance swimming cycling and running workouts when training for a triathlon"}
-{"input": "how to paint a car?", "output": "hyde: Sand the existing paint with 400-grit wet sandpaper until smooth. Apply 2-3 coats of automotive primer, sanding between coats with 600-grit. Spray the base color in thin, even passes, allowing 15 minutes flash time between coats. Finish with 2-3 coats of clearcoat.\nlex: car paint job spray booth steps\nlex: automotive painting primer clearcoat\nvec: what is the step-by-step process for painting a car at home or in a garage\nvec: what preparation and materials are needed to repaint a car yourself"}
-{"input": "lab test", "output": "hyde: Common lab tests include CBC (complete blood count), CMP (comprehensive metabolic panel), lipid panel, and thyroid function tests. A CBC measures white blood cells, red blood cells, hemoglobin, and platelets. Results outside the reference range may indicate infection, anemia, or other conditions.\nlex: lab test blood work results\nlex: laboratory diagnostic testing medical\nlex: lab test ordered interpretation\nvec: what types of medical lab tests are commonly ordered and what do the results mean\nvec: how to understand blood test results from a laboratory"}
-{"input": "where to buy iphone 14", "output": "hyde: Buy iPhone 14 starting at $599 from Apple.com, or save with carrier deals from Verizon, AT&T, and T-Mobile. Trade in your old device for up to $400 off. Also available at Best Buy, Walmart, and Amazon with financing options.\nlex: buy iPhone 14 price deals\nlex: iPhone 14 purchase Apple store carrier\nvec: where can you buy an iPhone 14 at the best price online or in retail stores\nvec: which stores and carriers currently sell the iPhone 14 and offer trade-in deals"}
-{"input": "what is the categorical imperative", "output": "hyde: The categorical imperative, formulated by Immanuel Kant, states: \"Act only according to that maxim by which you can at the same time will that it should become a universal law.\" It requires that moral rules apply unconditionally to all rational beings, regardless of personal desires.\nlex: categorical imperative Kant ethics\nlex: Kantian categorical imperative universal law\nvec: what is Kant's categorical imperative and how does it function as a moral principle\nvec: how does the categorical imperative test whether an action is morally permissible"}
-{"input": "latest research on renewable agriculture", "output": "hyde: A 2025 study in Nature Food found that cover cropping and no-till practices increased soil organic carbon by 8-12% over five years. Researchers also demonstrated that integrating livestock grazing with crop rotation improved soil microbial diversity by 23%.\nlex: renewable agriculture research 2025 2026\nlex: regenerative sustainable farming research\nlex: renewable agriculture soil carbon sequestration\nvec: what are the latest scientific findings on regenerative and renewable agriculture techniques\nvec: what recent research has been published on sustainable farming and soil health in 2025 or 2026"}
-{"input": "cloud deploy", "output": "hyde: Deploy to the cloud using `gcloud deploy` or configure a CI/CD pipeline with GitHub Actions. Define your infrastructure with Terraform or CloudFormation, build container images, push to a registry, and roll out to Kubernetes or serverless environments.\nlex: cloud deployment pipeline CI/CD\nlex: cloud deploy AWS Azure GCP\nlex: cloud infrastructure deployment automation\nvec: how to deploy applications to cloud platforms like AWS, Azure, or Google Cloud\nvec: what tools and pipelines are used for automated cloud deployment"}
-{"input": "what is the significance of day of the dead", "output": "hyde: D\u00eda de los Muertos, celebrated November 1-2, is a Mexican tradition honoring deceased loved ones. Families build ofrendas (altars) decorated with marigolds, photos, and the departed's favorite foods. It blends pre-Columbian Aztec beliefs with Catholic All Saints' and All Souls' Days.\nlex: Day of the Dead D\u00eda de los Muertos significance\nlex: Day of the Dead Mexican tradition meaning\nvec: what is the cultural and spiritual significance of Day of the Dead in Mexican tradition\nvec: why is D\u00eda de los Muertos celebrated and what does it mean to families in Mexico"}
-{"input": "what is stonehenge", "output": "hyde: Stonehenge is a prehistoric stone circle on Salisbury Plain in Wiltshire, England, built in stages from roughly 3000 to 2000 BCE. The massive sarsen stones, some weighing 25 tons, were transported from Marlborough Downs 25 miles north. Its alignment with the summer solstice sunrise suggests astronomical or ceremonial function.\nlex: Stonehenge prehistoric monument England\nlex: Stonehenge purpose construction history\nvec: what is Stonehenge and why was it built on Salisbury Plain in England\nvec: what do archaeologists know about the history and purpose of Stonehenge"}
-{"input": "bug fix", "output": "hyde: To fix a bug, first reproduce it reliably and identify the exact conditions that trigger it. Use a debugger or add logging to narrow down the faulty code path. Write a regression test that captures the bug, then modify the code until the test passes.\nlex: bug fix debugging software\nlex: bug fix code patch issue\nlex: software bug troubleshooting resolution\nvec: how to identify and fix bugs in software code effectively\nvec: what is the process for debugging and resolving code issues"}
-{"input": "how to wax a car?", "output": "hyde: Wash and dry the car thoroughly before waxing. Apply a thin layer of carnauba or synthetic wax with a foam applicator pad using circular motions. Work one panel at a time, let it haze for 5-10 minutes, then buff off with a clean microfiber towel.\nlex: car wax application steps\nlex: wax car paint protection polish\nvec: what is the proper technique for waxing a car to protect the paint finish\nvec: how often should you wax a car and what products work best"}
-{"input": "what is the veil of ignorance", "output": "hyde: The veil of ignorance is a thought experiment by John Rawls in A Theory of Justice (1971). It asks people to choose principles of justice from an \"original position\" where they don't know their own race, gender, wealth, or abilities. Rawls argues this produces fair, impartial rules.\nlex: veil of ignorance Rawls justice\nlex: John Rawls original position veil of ignorance\nvec: what is John Rawls' veil of ignorance thought experiment in political philosophy\nvec: how does the veil of ignorance help determine principles of justice in a fair society"}
-{"input": "what are the challenges of multiculturalism", "output": "hyde: Multicultural societies face challenges including language barriers, cultural misunderstandings, and tensions between assimilation and cultural preservation. Debates arise over shared national identity, religious accommodation in public institutions, and equitable representation of minority groups.\nlex: multiculturalism challenges social integration\nlex: multicultural society tensions cultural diversity\nvec: what social and political challenges arise in multicultural societies\nvec: how do multicultural nations deal with cultural conflict and integration difficulties"}
-{"input": "what are smart cities?", "output": "hyde: Smart cities integrate IoT sensors, data analytics, and connected infrastructure to improve urban services. Examples include adaptive traffic signals that reduce congestion by 25%, smart grids that optimize energy distribution, and sensors that monitor air quality and water systems in real time.\nlex: smart city technology IoT urban\nlex: smart cities infrastructure data sensors\nvec: what defines a smart city and what technologies do they use\nvec: how do smart cities use IoT sensors and data analytics to improve urban infrastructure"}
-{"input": "how to optimize supply chain", "output": "hyde: Optimize your supply chain by implementing demand forecasting with machine learning, reducing safety stock through just-in-time inventory, and diversifying suppliers to mitigate risk. Use real-time tracking and warehouse management systems to cut lead times by 15-30%.\nlex: supply chain optimization logistics\nlex: supply chain efficiency inventory management\nvec: what strategies and tools can companies use to optimize their supply chain operations\nvec: how do businesses reduce supply chain costs while improving delivery speed and reliability"}
-{"input": "what is an elevator pitch", "output": "hyde: An elevator pitch is a concise, 30-60 second summary of who you are and what you offer. Structure it as: hook (attention-grabbing opening), problem you solve, your solution, and a call to action. Practice until it sounds conversational, not rehearsed.\nlex: elevator pitch short business presentation\nlex: elevator pitch 30-second summary\nvec: what is an elevator pitch and how do you structure an effective one\nvec: how do you deliver a compelling 30-second pitch for a business idea or job opportunity"}
-{"input": "how to rotate car tires?", "output": "hyde: Rotate tires every 5,000-7,500 miles. For front-wheel drive, move fronts straight to the rear and cross the rears to the front. For rear-wheel drive, move rears straight forward and cross the fronts to the rear. All-wheel drive uses the rearward cross pattern.\nlex: car tire rotation pattern schedule\nlex: tire rotation front rear cross\nvec: how often should you rotate car tires and what pattern should you follow\nvec: what is the correct tire rotation procedure for front-wheel and all-wheel drive vehicles"}
-{"input": "how to participate in a pow wow", "output": "hyde: When attending a pow wow, stand during grand entry and honor songs. Don't touch dancers' regalia without permission. Ask before photographing. Bring a lawn chair, as seating is limited. Some dances are intertribal and open to all\u2014the emcee will announce when visitors may join the circle.\nlex: pow wow Native American attend participate\nlex: pow wow etiquette attendance protocol\nvec: how can non-Native people respectfully attend and participate in a pow wow\nvec: what are the etiquette rules and customs visitors should follow at a pow wow"}
-{"input": "car rust", "output": "hyde: Car rust forms when bare metal is exposed to moisture and salt. Treat surface rust by sanding to bare metal, applying rust converter, priming, and repainting. For structural rust, cut out the damaged section and weld in a patch panel. Prevent rust with regular washing and undercoating.\nlex: car rust prevention treatment\nlex: automotive rust repair body panel\nlex: car rust removal undercarriage\nvec: how to prevent and treat rust on a car body and undercarriage\nvec: what causes rust on cars and how can you repair rusted panels"}
-{"input": "what is moral obligation", "output": "hyde: A moral obligation is a duty to act in accordance with ethical principles, regardless of legal requirements. For example, one may feel morally obligated to help a stranger in danger. Philosophers debate whether moral obligations stem from reason (Kant), consequences (Mill), or social contracts.\nlex: moral obligation ethical duty\nlex: moral obligation philosophy definition\nvec: what does moral obligation mean in ethics and where do moral duties come from\nvec: how do philosophers define and justify moral obligations people have toward others"}
-{"input": "what is the purpose of a thesis statement?", "output": "hyde: A thesis statement presents the central argument of an essay in one or two sentences, typically at the end of the introduction. It tells the reader what the paper will argue and provides a roadmap for the evidence and analysis that follow. A strong thesis is specific, debatable, and supportable.\nlex: thesis statement purpose essay writing\nlex: thesis statement argument academic paper\nvec: what role does a thesis statement play in an essay or academic paper\nvec: why is a strong thesis statement important and how should it be written"}
-{"input": "how to attend a diplomatic event", "output": "hyde: At diplomatic events, follow the dress code specified on the invitation (black tie, business formal). Arrive punctually, greet the host first, and address ambassadors as \"Your Excellency.\" Exchange business cards with both hands. Avoid discussing controversial political topics unless invited to do so.\nlex: diplomatic event attendance protocol etiquette\nlex: diplomatic reception dress code invitation\nvec: what are the etiquette rules and dress codes for attending a diplomatic event or reception\nvec: how do you get invited to and properly conduct yourself at a diplomatic function"}
-{"input": "what is renewable energy", "output": "hyde: Renewable energy comes from naturally replenishing sources: solar, wind, hydroelectric, geothermal, and biomass. Solar panels convert sunlight into electricity using photovoltaic cells. Wind turbines capture kinetic energy from moving air. These sources produce little or no greenhouse gas emissions during operation.\nlex: renewable energy sources solar wind\nlex: renewable energy types clean power\nvec: what are the main types of renewable energy and how do they generate electricity\nvec: how do renewable energy sources like solar and wind power differ from fossil fuels"}
-{"input": "what is machine learning", "output": "hyde: Machine learning is a subset of artificial intelligence where algorithms learn patterns from training data rather than following explicit rules. Given labeled examples, a supervised learning model adjusts its parameters to minimize prediction error. Common algorithms include linear regression, decision trees, and neural networks.\nlex: machine learning algorithms training data\nlex: machine learning AI neural networks\nvec: what is machine learning and how do algorithms learn from data to make predictions\nvec: how does machine learning differ from traditional programming and rule-based systems"}
-{"input": "what is the role of the protagonist?", "output": "hyde: The protagonist is the central character whose goals and conflicts drive the narrative. They face obstacles, make choices, and undergo transformation through the story arc. Readers experience the plot primarily through the protagonist's perspective, creating emotional investment in their journey.\nlex: protagonist role literary fiction\nlex: protagonist main character story function\nvec: what role does the protagonist play in driving the plot of a novel or story\nvec: how does the protagonist function as the central character in literary fiction"}
-{"input": "api test", "output": "hyde: Test API endpoints using Postman or write automated tests with a framework like Jest or pytest. Send requests to each endpoint and assert status codes, response bodies, and headers. Example: `expect(response.status).toBe(200)` and validate the JSON schema of the response.\nlex: API testing automated endpoint\nlex: REST API test Postman integration\nlex: API endpoint validation testing\nvec: how to write automated tests for REST API endpoints\nvec: what tools and methods are used for API testing and validation"}
-{"input": "how to improve civic engagement", "output": "hyde: Improve civic engagement by attending city council meetings, volunteering for local organizations, and contacting elected officials about issues you care about. Register to vote and participate in every election, including local and midterm races. Join neighborhood associations and community boards.\nlex: civic engagement participation community\nlex: civic engagement voting local government\nvec: what are effective ways to increase civic engagement and community participation\nvec: how can citizens get more involved in local government and community decision-making"}
-{"input": "sustainable agriculture", "output": "hyde: Sustainable agriculture maintains productivity while protecting natural resources. Key practices include crop rotation, cover cropping, integrated pest management, reduced tillage, and efficient water use. These methods improve soil health, reduce erosion, and lower dependence on synthetic fertilizers and pesticides.\nlex: sustainable agriculture farming methods\nlex: sustainable agriculture soil health crop rotation\nlex: sustainable agriculture environmental impact\nvec: what farming practices make agriculture sustainable and environmentally friendly\nvec: how does sustainable agriculture balance food production with environmental conservation"}
-{"input": "how to fix car door lock?", "output": "hyde: If the car door lock won't engage, check the fuse first. Test the lock with the key and remote separately. If the remote works but the button doesn't, the switch is faulty. If neither works, the lock actuator has likely failed. Remove the door panel, disconnect the actuator, and replace it.\nlex: car door lock repair fix stuck\nlex: car door lock actuator replacement\nvec: how to diagnose and fix a car door lock that is stuck or not working\nvec: how to replace a broken car door lock actuator or mechanism"}
-{"input": "drug test", "output": "hyde: The standard 5-panel drug test screens for marijuana (THC), cocaine, opiates, amphetamines, and PCP. Urine tests detect most substances for 1-7 days, except marijuana which can be detected for up to 30 days in heavy users. Hair follicle tests cover approximately 90 days.\nlex: drug test urine screening types\nlex: drug test employment panel detection\nlex: drug testing workplace results\nvec: what types of drug tests are used for employment and what substances do they detect\nvec: how long do drugs stay detectable in urine blood and hair drug tests"}
-{"input": "how to participate in lobbying efforts", "output": "hyde: Citizens can lobby by contacting representatives via phone, email, or scheduled meetings. Prepare a one-page brief on your issue with specific policy asks. Join advocacy organizations that coordinate lobbying days at state capitols. Grassroots lobbying involves petitions, public comment periods, and organized letter-writing campaigns.\nlex: lobbying participation advocacy government\nlex: citizen lobbying elected officials\nvec: how can ordinary citizens participate in lobbying and advocacy to influence legislation\nvec: what steps are involved in organizing a lobbying effort for a political cause"}
-{"input": "how do you find inspiration for photography?", "output": "hyde: Find photography inspiration by studying the work of photographers you admire on platforms like Flickr, 500px, and Instagram. Try a 365-day photo challenge. Walk familiar routes at different times of day. Limit yourself to one lens or shoot only in black and white to force creative thinking.\nlex: photography inspiration ideas creative\nlex: photography creative motivation techniques\nvec: where do photographers find creative inspiration for new projects and subjects\nvec: what techniques help overcome creative block and find fresh ideas for photography"}
-{"input": "how to install car led lights?", "output": "hyde: To install LED headlights, open the hood and locate the headlight housing. Twist the bulb holder counterclockwise to remove the old halogen bulb. Insert the LED bulb, secure the heat sink or fan module, and connect the driver if included. Test both low and high beams before reassembling.\nlex: car LED lights installation wiring\nlex: LED headlight bulb install car\nvec: how to install aftermarket LED lights on a car including wiring and connections\nvec: step-by-step guide for replacing car headlights or interior lights with LEDs"}
-{"input": "how to critically analyze research papers", "output": "hyde: When analyzing a research paper, evaluate: (1) Is the research question clearly stated? (2) Is the methodology appropriate and reproducible? (3) Is the sample size adequate? (4) Do the results support the conclusions? (5) Are limitations acknowledged? Check for conflicts of interest and citation of relevant prior work.\nlex: research paper critical analysis evaluation\nlex: academic paper critique methodology\nvec: how do you critically evaluate the methodology and conclusions of a research paper\nvec: what framework should you use to analyze the strengths and weaknesses of an academic study"}
-{"input": "what is mindfulness meditation", "output": "hyde: Mindfulness meditation involves focusing attention on the present moment without judgment. Sit comfortably, close your eyes, and observe your breath. When thoughts arise, acknowledge them without engaging and gently return focus to breathing. Start with 5-10 minutes daily and gradually increase duration.\nlex: mindfulness meditation practice technique\nlex: mindfulness meditation awareness breathing\nvec: what is mindfulness meditation and how do you practice it\nvec: what are the mental and physical health benefits of regular mindfulness meditation"}
-{"input": "what is the digital divide", "output": "hyde: The digital divide refers to the gap between those who have access to computers and the internet and those who do not. Roughly 2.7 billion people worldwide remain offline. Factors include income, geography, age, and education. Rural areas and developing countries are disproportionately affected.\nlex: digital divide internet access inequality\nlex: digital divide technology gap socioeconomic\nvec: what is the digital divide and how does it affect people without internet access\nvec: what factors contribute to the technology gap between different socioeconomic groups"}
-{"input": "what is nihilism", "output": "hyde: Nihilism is the philosophical view that life lacks objective meaning, purpose, or intrinsic value. Existential nihilism holds that no action is inherently meaningful. Friedrich Nietzsche warned that the \"death of God\" would lead to nihilism but urged individuals to create their own values through the will to power.\nlex: nihilism philosophy meaning Nietzsche\nlex: nihilism existential moral meaning\nvec: what is nihilism as a philosophical position and what does it claim about meaning and values\nvec: how did Nietzsche and other philosophers develop and respond to nihilism"}
-{"input": "how to improve self-discipline?", "output": "hyde: Build self-discipline by starting with small commitments and increasing gradually. Make your bed every morning. Use the two-minute rule: if a task takes less than two minutes, do it now. Remove temptations from your environment and track your streaks to maintain momentum.\nlex: self-discipline improvement habits willpower\nlex: self-discipline strategies consistency\nvec: what daily habits and strategies help build stronger self-discipline\nvec: how can you train yourself to stay disciplined and follow through on goals"}
-{"input": "what are the core practices of the bah\u00e1'\u00ed faith?", "output": "hyde: Core Bah\u00e1'\u00ed practices include daily obligatory prayer (one of three prayers chosen by the individual), fasting during the Nineteen-Day Fast in March, participation in Nineteen-Day Feasts, and the recitation of \"All\u00e1h-u-Abh\u00e1\" 95 times daily. Bah\u00e1'\u00eds also observe the prohibition on backbiting and alcohol.\nlex: Bah\u00e1'\u00ed faith core practices worship\nlex: Bah\u00e1'\u00ed religion prayer fasting principles\nvec: what are the main spiritual practices and rituals observed in the Bah\u00e1'\u00ed faith\nvec: what daily practices and religious obligations do Bah\u00e1'\u00eds follow"}
-{"input": "what is highlining?", "output": "hyde: Highlining is the practice of walking a slackline anchored at significant height, often between cliffs, buildings, or over canyons. Unlike standard slacklining, highliners wear a climbing harness tethered to the line with a leash. Lines are rigged with redundant anchors using static rope or webbing.\nlex: highlining slackline extreme height\nlex: highlining equipment safety rigging\nvec: what is highlining and how does it differ from regular slacklining\nvec: what equipment and safety precautions are required for highlining at extreme heights"}
-{"input": "how to travel to bali", "output": "hyde: Fly into Ngurah Rai International Airport (DPS) in southern Bali. Many countries receive a 30-day visa on arrival for $500,000 IDR (~$35). Book a private driver for around $40-50/day to explore the island. Popular areas include Ubud for culture, Seminyak for dining, and Uluwatu for surfing.\nlex: travel Bali Indonesia flights visa\nlex: Bali trip planning itinerary transportation\nvec: how to plan a trip to Bali including flights, visas, and transportation\nvec: what do you need to know before traveling to Bali Indonesia for the first time"}
-{"input": "what caused the fall of the roman empire", "output": "hyde: The fall of the Western Roman Empire in 476 AD resulted from multiple factors: military overextension, barbarian invasions (Visigoths, Vandals, Ostrogoths), economic decline from debasement of currency, political instability with rapid emperor turnover, and the shift of power to Constantinople.\nlex: fall Roman Empire causes decline\nlex: Roman Empire collapse reasons factors\nvec: what were the main political military and economic causes of the fall of the Roman Empire\nvec: why did the Western Roman Empire collapse in 476 AD"}
-{"input": "what is philosophy of mind", "output": "hyde: Philosophy of mind examines the nature of mental states, consciousness, and their relationship to the physical brain. Central questions include the mind-body problem: how do subjective experiences (qualia) arise from neural processes? Key positions include dualism, physicalism, functionalism, and property dualism.\nlex: philosophy of mind consciousness problem\nlex: philosophy of mind mental states dualism\nvec: what does the philosophy of mind study about consciousness and mental states\nvec: what are the main theories in philosophy of mind such as dualism and physicalism"}
-{"input": "how to build a personal brand", "output": "hyde: Build your personal brand by defining your niche and unique value proposition. Create consistent profiles across LinkedIn, Twitter, and a personal website. Publish content regularly\u2014blog posts, videos, or podcasts\u2014that demonstrates your expertise. Engage authentically with your audience and network at industry events.\nlex: personal brand building online presence\nlex: personal branding strategy social media\nvec: how do you build a strong personal brand for career growth or entrepreneurship\nvec: what steps should you take to develop a recognizable personal brand online"}
-{"input": "what is the significance of dialogue in philosophy?", "output": "hyde: Dialogue has been central to philosophy since Plato's Socratic dialogues, where truth emerges through questioning and exchange rather than dogmatic assertion. The dialectical method exposes contradictions in arguments, refines ideas through challenge and response, and models philosophy as collaborative inquiry.\nlex: dialogue philosophy Socratic method\nlex: philosophical dialogue significance discourse\nvec: why is dialogue important as a method of philosophical inquiry and reasoning\nvec: how did Socratic dialogue shape Western philosophical tradition"}
-{"input": "what does it mean to write a biography?", "output": "hyde: Writing a biography means researching and narrating the story of a real person's life. Biographers conduct interviews, examine letters and documents, and verify facts through multiple sources. The narrative typically follows chronological structure while weaving in themes that defined the subject's character and impact.\nlex: biography writing nonfiction life story\nlex: biography research subject narrative\nvec: what is involved in writing a biography of someone's life\nvec: how do biographers research and structure a narrative about a person's life"}
-{"input": "how to develop a writing habit?", "output": "hyde: Set a specific time and place to write every day, even if only for 15-20 minutes. Track your word count or time spent writing. Don't edit while drafting\u2014just get words on the page. Use writing prompts if you're stuck. Many successful authors, including Stephen King, recommend writing at least 1,000 words daily.\nlex: writing habit daily routine discipline\nlex: writing habit consistency productivity\nvec: how do you build and maintain a consistent daily writing habit\nvec: what strategies help writers overcome procrastination and write regularly"}
-{"input": "what is green technology", "output": "hyde: Green technology encompasses innovations that reduce environmental impact, including solar panels, electric vehicles, energy-efficient buildings, biodegradable materials, and water purification systems. These technologies aim to conserve resources, reduce waste, and lower carbon emissions across manufacturing, energy, and transportation sectors.\nlex: green technology clean environmental\nlex: green technology sustainable energy efficiency\nvec: what is green technology and what industries does it apply to\nvec: how does green technology help reduce environmental impact and promote sustainability"}
-{"input": "how to connect car bluetooth?", "output": "hyde: To connect via Bluetooth, enable Bluetooth on your phone and car infotainment system. On the car stereo, go to Settings > Bluetooth > Add Device. Select your car's name on your phone's Bluetooth list. Confirm the pairing code on both devices. The phone should automatically reconnect on future drives.\nlex: car Bluetooth pairing phone connect\nlex: car Bluetooth setup audio streaming\nvec: how to pair a smartphone to a car's Bluetooth system for calls and music\nvec: step-by-step instructions for connecting a phone to car Bluetooth for the first time"}
-{"input": "what are the building blocks of life", "output": "hyde: The building blocks of life are four types of organic molecules: proteins (made from amino acids), nucleic acids (DNA and RNA from nucleotides), carbohydrates (sugars and polysaccharides), and lipids (fats and phospholipids). These molecules self-assemble into cells, the basic unit of all living organisms.\nlex: building blocks of life molecules biochemistry\nlex: amino acids nucleic acids proteins cells\nvec: what are the fundamental molecular building blocks that make up all living organisms\nvec: how do amino acids, nucleic acids, and lipids form the basis of life on Earth"}
-{"input": "what is the role of a cinematographer?", "output": "hyde: The cinematographer, or director of photography (DP), is responsible for the visual look of a film. They select cameras, lenses, and lighting setups, and work with the director to plan shot composition and camera movement. The DP oversees the camera and electrical departments on set.\nlex: cinematographer role film camera director of photography\nlex: cinematographer lighting shot composition\nvec: what does a cinematographer do on a film set and what creative decisions do they make\nvec: how does the director of photography control lighting, camera, and visual storytelling in film"}
-{"input": "landscape photography", "output": "hyde: For landscape photography, use a wide-angle lens (16-35mm), aperture of f/8-f/11 for maximum sharpness, and a low ISO (100). Shoot during golden hour for warm, directional light. Use a tripod, compose with the rule of thirds, and include a strong foreground element to create depth.\nlex: landscape photography techniques composition\nlex: landscape photography camera lens settings\nlex: landscape photography golden hour\nvec: what camera settings and techniques produce stunning landscape photographs\nvec: how to compose and shoot landscape photography with proper exposure and depth of field"}
-{"input": "what are literary movements?", "output": "hyde: Literary movements are periods defined by shared styles, themes, and philosophies. Romanticism (1800-1850) emphasized emotion and nature. Realism (1850-1900) depicted ordinary life accurately. Modernism (1900-1945) experimented with form and stream of consciousness. Postmodernism questioned grand narratives through irony and fragmentation.\nlex: literary movements periods history\nlex: literary movements Romanticism Modernism Realism\nvec: what are the major literary movements in history and what defines each one\nvec: how do literary movements like Romanticism, Realism, and Modernism differ from each other"}
-{"input": "what is the capital of france?", "output": "hyde: Paris is the capital and largest city of France, located on the Seine River in northern France. With a population of over 2 million in the city proper and 12 million in the metropolitan area, it is the country's political, economic, and cultural center.\nlex: capital France Paris\nlex: Paris capital city France\nvec: what city is the capital of France\nvec: where is the capital of France located and what is it known for"}
-{"input": "golf play", "output": "hyde: A round of golf consists of 18 holes. At each hole, tee off from the tee box, play through the fairway, and putt on the green. The objective is to complete each hole in the fewest strokes. Beginners should start at a driving range, learn basic grip and stance, and play executive (par-3) courses.\nlex: golf playing tips beginner\nlex: golf swing technique course\nlex: golf rules gameplay etiquette\nvec: how do you play golf and what are the basic rules for beginners\nvec: what techniques and etiquette should new golfers learn before playing on a course"}
-{"input": "build a treehouse", "output": "hyde: Choose a healthy hardwood tree (oak, maple, beech) with a trunk at least 12 inches in diameter. Use treehouse attachment bolts (TABs) rather than nails, which damage the tree. Build the platform at 6-8 feet high using pressure-treated lumber. Frame with 2x6 joists on 16-inch centers and deck with 5/4 boards.\nlex: treehouse building construction plans\nlex: treehouse DIY wood platform tree\nvec: how to design and build a treehouse safely in a backyard tree\nvec: what materials and tools do you need to build a treehouse for kids"}
-{"input": "where to buy classic car parts", "output": "hyde: Find classic car parts at specialty suppliers like Summit Racing, Classic Industries, and Hemmings. Year One stocks OEM-quality parts for GM, Ford, and Mopar vehicles from the 1950s-80s. JEGS and Rock Auto also carry a wide selection. Check eBay Motors and swap meets for rare NOS (new old stock) parts.\nlex: classic car parts buy online supplier\nlex: vintage car parts restoration OEM\nvec: where can you purchase replacement parts for classic and vintage cars\nvec: which online stores and suppliers specialize in classic car restoration parts"}
-{"input": "how to set business goals", "output": "hyde: Set business goals using the SMART framework: Specific (\"increase monthly revenue by 15%\"), Measurable (track with KPIs), Achievable (realistic given resources), Relevant (aligned with company mission), and Time-bound (complete by Q3). Break annual goals into quarterly milestones and review progress monthly.\nlex: business goals setting SMART strategy\nlex: business goal planning objectives targets\nvec: how to set effective business goals using the SMART framework\nvec: what process should entrepreneurs follow to define and track business objectives"}
-{"input": "what are the characteristics of neolithic societies?", "output": "hyde: Neolithic societies (approximately 10,000-3,000 BCE) were characterized by the transition from hunting-gathering to agriculture. People domesticated plants and animals, formed permanent settlements, developed pottery and polished stone tools, and created increasingly complex social hierarchies with specialized labor roles.\nlex: Neolithic society characteristics agriculture settlement\nlex: Neolithic period farming tools social structure\nvec: what were the key characteristics of Neolithic societies after the agricultural revolution\nvec: how did Neolithic communities organize their social structure, farming, and settlements"}
-{"input": "what is the significance of rituals in judaism?", "output": "hyde: Rituals in Judaism (mitzvot) structure daily, weekly, and yearly life around sacred observance. Shabbat, observed from Friday evening to Saturday night, sanctifies time through rest, prayer, and family meals. Rituals connect Jews to their covenant with God, collective memory, and community identity across generations.\nlex: Judaism rituals significance religious practice\nlex: Jewish rituals Shabbat observance tradition\nvec: what role do rituals play in Jewish religious life and spiritual practice\nvec: why are rituals like Shabbat, kashrut, and prayer important in Judaism"}
-{"input": "how to increase productivity at work?", "output": "hyde: Increase workplace productivity by time-blocking your calendar in 90-minute focus sessions. Tackle your hardest task first (eat the frog). Batch similar tasks like email and meetings. Eliminate distractions by silencing notifications. Use the Pomodoro Technique: 25 minutes of work, 5-minute break, repeat.\nlex: productivity work increase tips\nlex: workplace productivity time management techniques\nvec: what proven strategies help people increase their productivity at work\nvec: how can you manage your time better to get more done during the workday"}
-{"input": "what is panorama photography?", "output": "hyde: Panorama photography captures wide scenes by shooting multiple overlapping images and stitching them together. Use a tripod with a panoramic head, shoot in manual mode to keep exposure consistent, and overlap each frame by 30-50%. Stitch in software like Lightroom, PTGui, or Hugin.\nlex: panorama photography wide angle stitching\nlex: panoramic photo technique camera rotation\nvec: what is panorama photography and how do you capture and stitch panoramic images\nvec: what camera techniques and software are used to create panoramic photographs"}
-{"input": "what are the key periods in chinese history", "output": "hyde: Key periods in Chinese history include: Shang Dynasty (1600-1046 BCE), Zhou Dynasty (1046-256 BCE), Qin Dynasty (221-206 BCE, first unified empire), Han Dynasty (206 BCE-220 CE), Tang Dynasty (618-907, golden age), Song Dynasty (960-1279), Ming Dynasty (1368-1644), Qing Dynasty (1644-1912), and the People's Republic (1949-present).\nlex: Chinese history periods dynasties timeline\nlex: China historical periods Qin Han Tang\nvec: what are the major periods and dynasties in Chinese history from ancient to modern times\nvec: how is Chinese history divided into dynastic periods and what defined each era"}
-{"input": "what are the elements of a good story?", "output": "hyde: A good story requires compelling characters, a clear conflict, a structured plot (beginning, rising action, climax, resolution), a vivid setting, and a consistent point of view. Theme gives the story meaning beyond its events. Strong dialogue reveals character and advances the plot naturally.\nlex: story elements plot character setting\nlex: storytelling elements narrative structure\nvec: what are the essential elements that make a story compelling and well-crafted\nvec: how do plot, character, setting, and conflict work together in a good story"}
-{"input": "latest news in artificial intelligence research", "output": "hyde: In 2025-2026, AI research advanced with larger multimodal models capable of reasoning across text, image, and video. Key developments include improved chain-of-thought reasoning, AI agents that can use tools and write code, and open-weight models matching proprietary performance.\nlex: artificial intelligence research news 2025 2026\nlex: AI research breakthroughs latest developments\nlex: machine learning AI news recent\nvec: what are the most recent breakthroughs and developments in artificial intelligence research in 2025-2026\nvec: what new AI models and techniques have been published in the latest research"}
-{"input": "what are the main beliefs of new age spirituality?", "output": "hyde: New Age spirituality encompasses diverse beliefs including holistic healing, the interconnectedness of all life, personal spiritual growth, and the existence of higher consciousness. Practitioners may draw from Eastern religions, astrology, crystal healing, meditation, and the idea that individuals can channel divine energy.\nlex: New Age spirituality beliefs practices\nlex: New Age movement spiritual holistic\nvec: what are the central beliefs and practices of New Age spirituality\nvec: how does the New Age movement define spirituality, consciousness, and healing"}
-{"input": "how to plan a camping trip with kids", "output": "hyde: Plan a family camping trip by choosing a campground with bathrooms and short hiking trails. Pack extra layers, rain gear, and familiar snacks. Bring activities: nature scavenger hunts, glow sticks, and star charts. Set up camp early to let kids explore. Practice tent setup in the backyard first.\nlex: camping trip kids family planning\nlex: family camping children gear checklist\nvec: how to plan and prepare for a family camping trip with young children\nvec: what gear and activities should you bring when camping with kids for the first time"}
-{"input": "how do philosophers conceptualize identity", "output": "hyde: Philosophers debate what constitutes personal identity over time. John Locke argued identity rests on continuity of consciousness and memory. David Hume denied a fixed self, viewing identity as a bundle of perceptions. Derek Parfit argued identity is not what matters\u2014psychological continuity is.\nlex: personal identity philosophy self\nlex: identity philosophy Locke consciousness persistence\nvec: how do philosophers define and explain personal identity and what makes someone the same person over time\nvec: what are the major philosophical theories of identity from Locke to modern philosophy of mind"}
-{"input": "what is the role of civil society in politics", "output": "hyde: Civil society\u2014NGOs, advocacy groups, unions, and community organizations\u2014serves as a check on government power. These groups mobilize citizens, advocate for policy changes, monitor elections, and provide services the state cannot. A strong civil society is considered essential for healthy democracy and government accountability.\nlex: civil society political role organizations\nlex: civil society democracy NGOs advocacy\nvec: what role do civil society organizations play in democratic politics and governance\nvec: how does civil society influence government policy and hold political leaders accountable"}
-{"input": "how to handle inflation impact", "output": "hyde: To handle inflation, review your budget and cut discretionary spending. Move savings to high-yield accounts or I-bonds that adjust for inflation. Lock in fixed-rate loans before rates rise. Invest in assets that historically outpace inflation: equities, real estate, and TIPS (Treasury Inflation-Protected Securities).\nlex: inflation impact personal finance manage\nlex: inflation coping strategies budget investment\nvec: how can individuals protect their finances and manage the impact of high inflation\nvec: what financial strategies help people cope with rising prices and reduced purchasing power"}
-{"input": "how is energy conserved during chemical reactions", "output": "hyde: In chemical reactions, energy is neither created nor destroyed (first law of thermodynamics). Exothermic reactions release energy\u2014bonds formed in products are stronger than bonds broken in reactants. Endothermic reactions absorb energy\u2014more energy is needed to break reactant bonds than is released forming product bonds.\nlex: energy conservation chemical reactions thermodynamics\nlex: chemical reaction energy transfer exothermic endothermic\nvec: how does the law of conservation of energy apply to chemical reactions\nvec: how is energy transferred and conserved in exothermic and endothermic chemical reactions"}
-{"input": "how to make sourdough bread", "output": "hyde: Mix 100g active starter, 375g water, 500g bread flour, and 10g salt. Stretch and fold every 30 minutes for 2 hours, then bulk ferment 4-8 hours until doubled. Shape, place in a banneton, and cold-proof in the fridge overnight. Bake in a Dutch oven at 450\u00b0F: 20 min covered, 20 min uncovered.\nlex: sourdough bread recipe starter\nlex: sourdough bread baking fermentation dough\nvec: what is the step-by-step process for making sourdough bread from a starter\nvec: how do you feed a sourdough starter and bake a loaf of sourdough bread at home"}
-{"input": "what is the philosophy of aesthetics", "output": "hyde: Aesthetics is the branch of philosophy concerned with the nature of beauty, art, and taste. Kant argued that aesthetic judgments are subjective yet claim universal validity\u2014when we call something beautiful, we expect others to agree. Hume held that taste varies but can be refined through experience and education.\nlex: aesthetics philosophy beauty art\nlex: philosophy aesthetics theory judgment taste\nvec: what is the philosophy of aesthetics and how does it define beauty and art\nvec: how do philosophers like Kant and Hume approach questions of aesthetic judgment and taste"}
-{"input": "what to pack for a hike?", "output": "hyde: The ten essentials for hiking: navigation (map/compass/GPS), sun protection, insulation (extra layers), illumination (headlamp), first aid kit, fire starter, repair tools, nutrition (extra food), hydration (extra water), and emergency shelter. Also bring a whistle, trekking poles, and broken-in boots.\nlex: hiking packing list gear essentials\nlex: hiking pack checklist day hike\nvec: what essential items should you pack for a day hike in the outdoors\nvec: what gear and supplies do you need to bring on a hiking trip for safety and comfort"}
-{"input": "what is the philosophy of existentialism?", "output": "hyde: Existentialism holds that existence precedes essence\u2014humans are not born with a fixed nature but create themselves through choices. Sartre argued we are \"condemned to be free,\" fully responsible for our actions. Kierkegaard emphasized the anxiety of individual choice, while Camus explored the absurdity of seeking meaning in an indifferent universe.\nlex: existentialism philosophy Sartre Kierkegaard\nlex: existentialism existence precedes essence freedom\nvec: what is existentialist philosophy and what are its core claims about human freedom and meaning\nvec: how did Sartre, Kierkegaard, and Camus define existentialism and its key ideas"}
-{"input": "battery test", "output": "hyde: Test a 12V car battery with a multimeter set to DC volts. A fully charged battery reads 12.6V or higher. Between 12.0-12.4V indicates partial charge. Below 12.0V means the battery is discharged. For a load test, apply a load equal to half the CCA rating for 15 seconds\u2014voltage should stay above 9.6V.\nlex: battery test multimeter voltage\nlex: battery test car 12V load\nlex: battery testing health capacity\nvec: how to test a battery's charge level and health using a multimeter or load tester\nvec: how to check if a car battery or device battery needs replacement"}
-{"input": "what is hdr photography?", "output": "hyde: HDR (High Dynamic Range) photography combines multiple exposures of the same scene\u2014typically 3-5 bracketed shots\u2014to capture detail in both highlights and shadows. The images are merged using software like Photomatix or Lightroom, then tone-mapped to produce a single image with a wider dynamic range than a single exposure.\nlex: HDR photography high dynamic range\nlex: HDR photo bracketing tone mapping\nvec: what is HDR photography and how does it capture a wider range of light and shadow\nvec: how do you shoot and process HDR photos using exposure bracketing and tone mapping"}
-{"input": "what is the significance of literary awards?", "output": "hyde: Literary awards elevate authors' visibility and boost book sales\u2014Booker Prize winners typically see a 600% increase in sales. Awards canonize works in literary culture, influence academic curricula, and bring attention to underrepresented voices. They also shape publishers' marketing strategies and readers' choices.\nlex: literary awards significance publishing\nlex: literary prizes Nobel Pulitzer Booker impact\nvec: why are literary awards significant for authors and the publishing industry\nvec: how do prizes like the Nobel, Pulitzer, and Booker Prize affect book sales and literary reputation"}
-{"input": "what is cubism?", "output": "hyde: Cubism, pioneered by Pablo Picasso and Georges Braque around 1907-1914, broke objects into geometric fragments and depicted multiple viewpoints simultaneously on a flat canvas. Analytic Cubism (1907-1912) deconstructed forms into monochrome facets. Synthetic Cubism (1912-1914) introduced collage, color, and simpler shapes.\nlex: Cubism art movement Picasso Braque\nlex: Cubism painting geometric abstraction\nvec: what is Cubism as an art movement and how did it change visual representation in painting\nvec: how did Picasso and Braque develop Cubism and what are its defining visual characteristics"}
-{"input": "cache hit", "output": "hyde: A cache hit occurs when the requested data is found in the cache layer, avoiding a slower lookup to the backing store. Hit rates above 90% typically indicate effective caching.\nlex: cache hit rate ratio\nlex: CPU cache hit miss latency\nlex: web cache hit response time\nvec: what happens when data is found in cache memory\nvec: how cache hits improve application performance versus cache misses"}
-{"input": "current applications of machine learning in research", "output": "hyde: Machine learning is now routinely used in genomics for variant calling, in climate science for weather prediction, and in materials science for discovering novel compounds. Recent breakthroughs include protein structure prediction and automated literature review.\nlex: machine learning research applications 2025 2026\nlex: ML models scientific research use cases\nlex: deep learning academic research tools\nvec: how is machine learning being applied in scientific research today\nvec: what are the latest ways researchers use ML models in their studies"}
-{"input": "how to plant a vegetable garden", "output": "hyde: Choose a site with 6-8 hours of direct sunlight. Amend the soil with compost, till to 12 inches deep, and plant seedlings after the last frost date. Space rows 18-24 inches apart depending on the crop.\nlex: vegetable garden planting steps\nlex: backyard vegetable garden soil preparation\nlex: raised bed vegetable garden layout\nvec: what are the steps to start a vegetable garden from scratch\nvec: how to prepare soil and plant vegetables for beginners"}
-{"input": "how does existentialism view authenticity", "output": "hyde: For Sartre, authenticity means acknowledging radical freedom and refusing bad faith\u2014the self-deception of pretending our choices are determined by external forces. Heidegger's Eigentlichkeit calls us to own our finitude rather than losing ourselves in das Man.\nlex: existentialism authenticity Sartre Heidegger\nlex: authentic existence existentialist philosophy\nvec: what does authenticity mean in existentialist philosophy\nvec: how do existentialist thinkers define living an authentic life"}
-{"input": "what is the great depression", "output": "hyde: The Great Depression began with the stock market crash of October 1929 and lasted until the late 1930s. Unemployment peaked at 25%, thousands of banks failed, and GDP fell by nearly 30%. The New Deal introduced federal relief programs.\nlex: Great Depression 1929 economic collapse\nlex: Great Depression causes unemployment stock market crash\nvec: what caused the Great Depression and how did it affect the economy\nvec: what were the major events and consequences of the Great Depression in the 1930s"}
-{"input": "what is the international court of justice", "output": "hyde: The International Court of Justice (ICJ) is the principal judicial organ of the United Nations, located in The Hague, Netherlands. It settles legal disputes between states and gives advisory opinions on questions referred by UN organs.\nlex: International Court of Justice ICJ United Nations\nlex: ICJ jurisdiction Hague rulings\nvec: what is the purpose and function of the International Court of Justice\nvec: how does the ICJ at The Hague resolve disputes between countries"}
-{"input": "what is influencer marketing", "output": "hyde: Influencer marketing is a strategy where brands partner with social media creators who have engaged followings to promote products. Campaigns may involve sponsored posts, affiliate links, or product reviews. ROI is measured through engagement rates, conversions, and reach.\nlex: influencer marketing social media brand promotion\nlex: influencer campaigns Instagram TikTok sponsorship\nvec: how does influencer marketing work for promoting brands on social media\nvec: what is influencer marketing and why do companies pay content creators"}
-{"input": "how to change a flat tire?", "output": "hyde: Loosen the lug nuts before jacking. Place the jack under the frame near the flat tire, raise the vehicle, remove the lug nuts, swap in the spare, hand-tighten the nuts in a star pattern, lower the car, then torque to 80-100 ft-lbs.\nlex: change flat tire steps jack lug nuts\nlex: flat tire replacement spare wheel\nvec: step-by-step instructions for changing a flat tire on the side of the road\nvec: how to safely jack up a car and replace a flat tire with the spare"}
-{"input": "what is the significance of the lotus in buddhism?", "output": "hyde: The lotus grows from muddy water yet blooms immaculately, symbolizing the journey from suffering to enlightenment. In Buddhist iconography, the Buddha is often depicted seated on a lotus throne, representing purity of mind arising from the world of samsara.\nlex: lotus flower Buddhism symbolism\nlex: lotus Buddhist enlightenment purity\nvec: why is the lotus flower an important symbol in Buddhism\nvec: what does the lotus represent in Buddhist art and teachings"}
-{"input": "code lint", "output": "hyde: A linter performs static analysis on source code to detect syntax errors, stylistic issues, and potential bugs without executing the program. Popular linters include ESLint for JavaScript, Pylint for Python, and Clippy for Rust.\nlex: code linter static analysis\nlex: linting tools ESLint Pylint code quality\nlex: lint rules syntax errors warnings\nvec: what is code linting and how do linting tools check source code for errors\nvec: how to set up a code linter for catching bugs and enforcing style rules"}
-{"input": "what is content marketing", "output": "hyde: Content marketing focuses on creating and distributing valuable, relevant content\u2014blog posts, videos, podcasts, whitepapers\u2014to attract and retain a target audience. Rather than directly promoting a product, it builds authority and nurtures leads through the sales funnel.\nlex: content marketing strategy blog SEO\nlex: content marketing audience engagement brand\nvec: what is content marketing and how does it attract customers\nvec: how do businesses use content marketing to drive traffic and build trust"}
-{"input": "what is the meaning of hanukkah", "output": "hyde: Hanukkah commemorates the rededication of the Second Temple in Jerusalem after the Maccabean revolt against the Seleucid Empire in 164 BCE. The miracle of the oil\u2014one day's supply lasting eight days\u2014is celebrated by lighting the menorah each night.\nlex: Hanukkah meaning Jewish festival of lights\nlex: Hanukkah menorah Maccabees temple rededication\nvec: what is the history and significance of Hanukkah in Judaism\nvec: why do Jewish people celebrate Hanukkah and what does it commemorate"}
-{"input": "what is existential angst", "output": "hyde: Existential angst, or Angst, is the deep anxiety that arises from confronting freedom, mortality, and the absence of inherent meaning. Kierkegaard described it as the dizziness of freedom; Heidegger linked it to awareness of one's Being-toward-death.\nlex: existential angst anxiety Kierkegaard\nlex: existential dread absurdity freedom\nvec: what does existential angst mean in philosophy\nvec: how do existentialist philosophers describe the feeling of existential anxiety"}
-{"input": "how to style open shelves", "output": "hyde: Group items in odd numbers and vary heights. Mix functional pieces like dishes with decorative objects like plants or small art. Leave 30% of the shelf empty to avoid clutter. Use a consistent color palette to tie everything together.\nlex: open shelf styling tips decor\nlex: kitchen open shelving arrangement display\nvec: how to arrange and decorate open shelves so they look good\nvec: what are tips for styling open shelves in a kitchen or living room"}
-{"input": "linkedin profile", "output": "hyde: Your LinkedIn headline should go beyond your job title\u2014include keywords and your value proposition. Use the summary section to tell your professional story in first person. Add a professional headshot; profiles with photos get 21x more views.\nlex: LinkedIn profile optimization headline\nlex: LinkedIn profile tips summary photo\nlex: LinkedIn profile writing professional\nvec: how to create an effective LinkedIn profile that attracts recruiters\nvec: what should you include in your LinkedIn profile headline and summary"}
-{"input": "what are the benefits of yoga", "output": "hyde: Regular yoga practice improves flexibility, builds core strength, and lowers cortisol levels. Studies show it reduces chronic back pain, lowers blood pressure, and decreases symptoms of anxiety and depression. Even 20 minutes daily produces measurable benefits.\nlex: yoga benefits health flexibility stress\nlex: yoga physical mental health advantages\nvec: what are the physical and mental health benefits of practicing yoga regularly\nvec: how does yoga improve flexibility, strength, and stress levels"}
-{"input": "what is virtue ethics", "output": "hyde: Virtue ethics, rooted in Aristotle's Nicomachean Ethics, holds that morality centers on developing virtuous character traits\u2014courage, temperance, justice, prudence\u2014rather than following rules or calculating consequences. The goal is eudaimonia, or human flourishing.\nlex: virtue ethics Aristotle character moral\nlex: virtue ethics eudaimonia moral philosophy\nvec: what is virtue ethics and how does it differ from other moral theories\nvec: how does Aristotle's virtue ethics define moral character and the good life"}
-{"input": "how to calculate carbon emissions?", "output": "hyde: To calculate CO2 emissions, multiply the activity data (e.g., kWh of electricity, liters of fuel) by the appropriate emission factor. For gasoline: 2.31 kg CO2 per liter burned. For grid electricity, use the regional emission factor, typically 0.3-0.9 kg CO2/kWh.\nlex: carbon emissions calculation formula CO2\nlex: carbon footprint calculator methodology\nvec: how do you calculate the carbon emissions from energy use and transportation\nvec: what formulas and data are used to measure carbon dioxide emissions"}
-{"input": "how to start rock climbing", "output": "hyde: Start at an indoor climbing gym where you can rent shoes and a harness. Take a belay certification class to learn rope handling. Begin on easy routes graded V0-V1 for bouldering or 5.6-5.8 for top-rope. Focus on footwork over arm strength.\nlex: rock climbing beginner indoor gym\nlex: rock climbing gear shoes harness belay\nvec: how to get started with rock climbing as a complete beginner\nvec: what equipment and skills do beginners need for indoor rock climbing"}
-{"input": "how to create a moon garden?", "output": "hyde: A moon garden features white and pale-colored flowers, silver foliage, and night-blooming plants that glow under moonlight. Include moonflower (Ipomoea alba), white nicotiana, night-blooming jasmine, dusty miller, and lamb's ear. Add light-colored gravel paths for reflection.\nlex: moon garden white flowers night-blooming plants\nlex: moon garden design layout fragrant plants\nvec: how to plan and plant a garden designed to be enjoyed at night\nvec: what plants and flowers work best in a moon garden"}
-{"input": "what is the significance of the bildungsroman?", "output": "hyde: The bildungsroman, or coming-of-age novel, follows a protagonist's psychological and moral development from youth to adulthood. Examples include Goethe's Wilhelm Meister, Dickens' Great Expectations, and Joyce's A Portrait of the Artist as a Young Man.\nlex: bildungsroman coming-of-age novel literary genre\nlex: bildungsroman significance literature examples\nvec: what is a bildungsroman and why is it an important literary genre\nvec: how does the bildungsroman novel trace a character's growth and development"}
-{"input": "what is moral behavior", "output": "hyde: Moral behavior refers to actions that conform to standards of right conduct within a society or ethical framework. It involves making choices that consider the well-being of others, guided by principles such as fairness, honesty, empathy, and respect for autonomy.\nlex: moral behavior ethics right wrong conduct\nlex: moral behavior definition philosophy psychology\nvec: what defines moral behavior and how do people distinguish right from wrong\nvec: what is moral behavior according to ethics and psychology"}
-{"input": "how to use a rototiller?", "output": "hyde: Set the tilling depth to 6-8 inches for new beds. Walk slowly and let the tines do the work\u2014don't force it forward. Make overlapping passes in parallel rows. Avoid tilling wet soil, which creates compaction. Clean tines after each use.\nlex: rototiller operation tilling soil garden\nlex: rototiller how to use depth settings\nvec: step-by-step instructions for using a rototiller to prepare garden soil\nvec: how to operate a rototiller safely and effectively"}
-{"input": "how to build a greenhouse?", "output": "hyde: Start with a level foundation of treated lumber or concrete blocks. Build the frame from galvanized steel or cedar. Cover with 8mm twin-wall polycarbonate panels, which insulate better than glass. Include ridge vents for airflow and a door on the south-facing end.\nlex: greenhouse build DIY construction plans\nlex: greenhouse frame polycarbonate panels foundation\nvec: how to build a small greenhouse in your backyard step by step\nvec: what materials and design are needed to construct a DIY greenhouse"}
-{"input": "how to handle sibling rivalry?", "output": "hyde: Avoid comparing siblings or taking sides. Acknowledge each child's feelings before mediating. Teach conflict resolution skills: use I-statements, take turns speaking, and brainstorm solutions together. Spend one-on-one time with each child to reduce jealousy.\nlex: sibling rivalry parenting tips conflict\nlex: sibling fighting jealousy children strategies\nvec: how can parents manage sibling rivalry and reduce fighting between children\nvec: what strategies help siblings get along and resolve conflicts"}
-{"input": "how to polish car paint?", "output": "hyde: Wash and clay bar the surface first. Apply a small amount of polishing compound to a foam pad on a dual-action polisher. Work in 2x2 foot sections at 1200-1500 RPM with medium pressure. Wipe residue with a microfiber towel, then apply sealant or wax.\nlex: car paint polish compound buffing\nlex: auto paint polishing scratch removal swirl marks\nvec: how to polish car paint to remove scratches and restore shine\nvec: what is the correct technique for machine polishing automotive paint"}
-{"input": "what is intrinsic value", "output": "hyde: In philosophy, intrinsic value is the worth something has in itself, independent of its usefulness. Kant argued that rational beings have intrinsic value as ends in themselves. In finance, intrinsic value refers to the calculated true worth of an asset based on fundamentals.\nlex: intrinsic value philosophy ethics\nlex: intrinsic value stock valuation finance\nvec: what does intrinsic value mean in philosophy and in finance\nvec: how is intrinsic value defined as something valuable in itself regardless of consequences"}
-{"input": "how to get rid of weeds naturally", "output": "hyde: Apply a 3-4 inch layer of mulch to suppress weed growth. Pour boiling water directly on weeds in cracks. Spray a mixture of white vinegar, salt, and dish soap on foliage in full sun. Hand-pull weeds after rain when roots come out easily.\nlex: natural weed killer organic herbicide\nlex: remove weeds without chemicals mulch vinegar\nvec: what are natural methods for killing and preventing weeds in a garden\nvec: how to get rid of weeds without using chemical herbicides"}
-{"input": "what is the concept of original sin", "output": "hyde: Original sin is the Christian doctrine that humanity inherited a sinful nature from Adam and Eve's disobedience in the Garden of Eden. Augustine of Hippo formalized the teaching, arguing that all humans are born in a state of sin, redeemable only through divine grace.\nlex: original sin Christian theology Adam Eve\nlex: original sin doctrine fall of man\nvec: what is original sin in Christian theology and where does the idea come from\nvec: how does the concept of original sin explain human nature in Christianity"}
-{"input": "how to build a successful brand", "output": "hyde: Define your brand's mission, values, and target audience. Develop a distinctive visual identity\u2014logo, color palette, typography. Craft a consistent brand voice across all channels. Differentiate with a clear value proposition and deliver on your brand promise consistently.\nlex: brand building strategy identity positioning\nlex: brand identity logo messaging target audience\nvec: what steps are needed to build a strong and recognizable brand\nvec: how do companies create a successful brand identity and positioning"}
-{"input": "what are the teachings of the baha'i faith?", "output": "hyde: The Baha'i faith, founded by Baha'u'llah in 19th-century Persia, teaches the oneness of God, the oneness of religion, and the oneness of humanity. Core principles include elimination of prejudice, equality of men and women, universal education, and harmony of science and religion.\nlex: Baha'i faith teachings principles Baha'u'llah\nlex: Baha'i beliefs unity humanity religion\nvec: what are the core beliefs and teachings of the Baha'i faith\nvec: what did Baha'u'llah teach about unity, equality, and world peace"}
-{"input": "how to potty train a toddler?", "output": "hyde: Watch for readiness signs: staying dry for 2 hours, showing interest in the toilet, and communicating the need to go. Start with a child-sized potty, establish a routine after meals and naps, use positive reinforcement, and expect accidents\u2014avoid punishment.\nlex: potty training toddler tips methods\nlex: toddler toilet training readiness signs\nvec: how to potty train a toddler and what are the signs of readiness\nvec: what is the best approach to potty training a 2-year-old child"}
-{"input": "how to reduce waste in everyday life?", "output": "hyde: Bring reusable bags, bottles, and containers when shopping. Buy in bulk to reduce packaging. Compost food scraps instead of sending them to landfill. Choose products with minimal packaging, repair items before replacing, and donate what you no longer need.\nlex: reduce waste zero waste lifestyle tips\nlex: waste reduction recycling composting reuse\nvec: what are practical ways to reduce household waste in daily life\nvec: how can individuals cut down on trash and move toward zero waste living"}
-{"input": "how international relations affect trade", "output": "hyde: Diplomatic relations directly shape trade flows through tariffs, sanctions, and trade agreements. Countries with strong bilateral ties negotiate favorable terms\u2014like the USMCA between the US, Mexico, and Canada\u2014while geopolitical tensions can trigger trade wars and export controls.\nlex: international relations trade policy tariffs\nlex: geopolitics trade agreements bilateral multilateral\nvec: how do international political relationships influence global trade and tariffs\nvec: what is the connection between diplomacy and international trade policy"}
-{"input": "what is business continuity planning", "output": "hyde: Business continuity planning (BCP) ensures an organization can maintain critical functions during and after a disruption. It includes risk assessment, identifying essential operations, establishing recovery time objectives, and defining procedures for communication, IT recovery, and alternate work sites.\nlex: business continuity planning BCP disaster recovery\nlex: BCP risk assessment contingency plan\nvec: what is a business continuity plan and why do organizations need one\nvec: how do companies create a business continuity plan for disaster recovery"}
-{"input": "how to have a successful playdate?", "output": "hyde: Keep playdates short\u201490 minutes is ideal for toddlers. Prepare a few structured activities but allow free play. Put away special toys to avoid conflicts. Have snacks ready, discuss allergies with the other parent beforehand, and supervise without hovering.\nlex: playdate tips children toddler socializing\nlex: kids playdate activities hosting\nvec: how to plan and host a successful playdate for young children\nvec: what tips help make a playdate fun and smooth for kids and parents"}
-{"input": "what are the major forms of poetry?", "output": "hyde: Major poetic forms include the sonnet (14 lines, iambic pentameter), haiku (3 lines, 5-7-5 syllables), epic (long narrative), ballad (storytelling with rhyme), ode (lyrical praise), limerick (humorous five-line form), villanelle (19 lines with refrains), and free verse (no fixed structure).\nlex: poetry forms types sonnet haiku epic\nlex: poetic forms verse structures literary\nvec: what are the main types and forms of poetry in literature\nvec: how do different poetry forms like sonnets, haiku, and free verse differ"}
-{"input": "when to plant tulip bulbs?", "output": "hyde: Plant tulip bulbs in fall, 6-8 weeks before the ground freezes\u2014typically October to November in most zones. Set bulbs 6-8 inches deep, pointed end up, spaced 4-6 inches apart. They need a cold period of 12-16 weeks to bloom in spring.\nlex: tulip bulbs planting time season fall\nlex: tulip bulb planting depth spacing\nvec: what time of year should you plant tulip bulbs for spring blooms\nvec: when is the best season to plant tulips and how deep should the bulbs go"}
-{"input": "where to buy raised garden beds?", "output": "hyde: Raised garden beds are available at Home Depot, Lowe's, and garden centers. Online retailers like Gardener's Supply, Amazon, and Birdies offer metal and cedar kits. Cedar is rot-resistant and long-lasting; galvanized steel beds are durable and modern-looking.\nlex: raised garden beds buy online store\nlex: raised bed garden kits cedar metal\nvec: where can I buy raised garden beds and what materials are best\nvec: what are the best places to purchase raised bed garden kits"}
-{"input": "how to plant a tree properly?", "output": "hyde: Dig a hole 2-3 times wider than the root ball but only as deep. Set the tree so the root flare sits at ground level. Backfill with native soil, water deeply, and apply 2-4 inches of mulch in a ring, keeping it away from the trunk to prevent rot.\nlex: tree planting technique hole depth root ball\nlex: plant tree correctly mulch watering\nvec: what is the correct way to plant a tree so it grows healthy\nvec: how deep and wide should the hole be when planting a new tree"}
-{"input": "what is the role of enzymes in digestion", "output": "hyde: Digestive enzymes catalyze the breakdown of macronutrients into absorbable units. Amylase in saliva and the pancreas breaks starch into sugars. Pepsin in the stomach cleaves proteins. Lipase from the pancreas breaks fats into fatty acids and glycerol in the small intestine.\nlex: enzymes digestion amylase protease lipase\nlex: digestive enzymes stomach intestine breakdown\nvec: how do enzymes help break down food during the digestive process\nvec: what role do specific enzymes like amylase and protease play in digestion"}
-{"input": "what to wear for rock climbing", "output": "hyde: Wear stretchy, moisture-wicking pants or shorts that allow full range of motion. Choose a fitted athletic shirt\u2014avoid loose fabric that catches on holds. Climbing shoes should fit snugly. Bring a chalk bag for grip and a harness for roped routes.\nlex: rock climbing clothing gear outfit\nlex: climbing shoes harness chalk bag apparel\nvec: what clothes and gear should you wear for indoor or outdoor rock climbing\nvec: what is the best clothing to wear when rock climbing for comfort and safety"}
-{"input": "latest uses of bioinformatics in research", "output": "hyde: Recent bioinformatics advances include single-cell RNA sequencing analysis pipelines, AlphaFold-based protein structure prediction for drug targets, CRISPR off-target analysis algorithms, and large-scale metagenomic assembly for microbiome studies.\nlex: bioinformatics research applications 2025 2026\nlex: bioinformatics genomics proteomics computational biology\nvec: how is bioinformatics being used in current scientific research\nvec: what are the newest bioinformatics tools and applications in genomics and drug discovery"}
-{"input": "how the scientific community addresses research bias", "output": "hyde: To combat research bias, journals require pre-registration of study protocols, blinded peer review, and reporting of negative results. Replication studies verify findings. Statistical safeguards like p-value corrections and effect size reporting reduce publication bias.\nlex: research bias scientific community peer review\nlex: scientific bias mitigation replication reproducibility\nvec: how do scientists identify and reduce bias in research studies\nvec: what methods does the scientific community use to address research bias and ensure reproducibility"}
-{"input": "what is ethical dilemma in real life", "output": "hyde: A common ethical dilemma is discovering a coworker falsifying expense reports\u2014report them and risk the relationship, or stay silent and condone dishonesty. Other examples include whistleblowing, end-of-life medical decisions, and allocating scarce resources during emergencies.\nlex: ethical dilemma real life examples\nlex: moral dilemma everyday situations conflict\nvec: what are examples of ethical dilemmas people face in everyday life\nvec: how do real-life ethical dilemmas force people to choose between conflicting values"}
-{"input": "best techniques for street photography", "output": "hyde: Shoot at f/8 for deep depth of field and zone focus at 3 meters for quick candid shots. Use a 28mm or 35mm lens. Anticipate moments\u2014find good light or backgrounds and wait for subjects to enter the frame. Shoot from the hip to stay inconspicuous.\nlex: street photography techniques composition tips\nlex: street photography candid camera settings\nvec: what are the best techniques for capturing compelling street photographs\nvec: how do street photographers take candid shots of people in public spaces"}
-{"input": "how to become a researcher", "output": "hyde: Start with an undergraduate degree in your field, seek research assistant positions, and publish early. Apply to graduate programs for a master's or PhD. Build a publication record, attend conferences, and network with established researchers. Postdoctoral positions lead to faculty or industry research roles.\nlex: become researcher academic career path\nlex: research career PhD graduate school publish\nvec: what steps do you need to take to become a professional researcher\nvec: how do you build a career in academic or scientific research"}
-{"input": "web socket", "output": "hyde: WebSocket provides full-duplex communication over a single TCP connection. After an HTTP upgrade handshake, client and server can send messages in both directions without polling. Use `new WebSocket('ws://host/path')` on the client and a library like ws on the server.\nlex: WebSocket protocol real-time connection\nlex: WebSocket API JavaScript server client\nlex: WebSocket vs HTTP persistent connection\nvec: how do WebSockets work for real-time bidirectional communication\nvec: how to implement a WebSocket connection between a client and server"}
-{"input": "what is lean manufacturing", "output": "hyde: Lean manufacturing, derived from the Toyota Production System, aims to minimize waste (muda) while maximizing value. Its five principles: define value from the customer's perspective, map the value stream, create flow, establish pull, and pursue perfection through continuous improvement (kaizen).\nlex: lean manufacturing Toyota production system\nlex: lean manufacturing waste reduction kaizen\nvec: what is lean manufacturing and what principles does it follow\nvec: how does lean manufacturing eliminate waste and improve production efficiency"}
-{"input": "what are writing prompts?", "output": "hyde: Writing prompts are short scenarios, questions, or opening lines designed to spark creative writing. Examples: \"Write about a door that appeared overnight\" or \"Describe your earliest memory from a stranger's perspective.\" They help overcome writer's block and build a daily writing habit.\nlex: writing prompts creative fiction ideas\nlex: writing prompts exercises journal story starters\nvec: what are writing prompts and how do writers use them for inspiration\nvec: how do writing prompts help overcome writer's block and spark creativity"}
-{"input": "how to capture bokeh effect", "output": "hyde: Use a wide aperture (f/1.4 to f/2.8) to create shallow depth of field. A fast prime lens like a 50mm f/1.8 or 85mm f/1.4 produces smooth bokeh. Increase the distance between subject and background, and get close to your subject for maximum blur.\nlex: bokeh effect photography aperture lens\nlex: bokeh background blur shallow depth of field\nvec: how to achieve a bokeh effect with blurred background in photography\nvec: what camera settings and lenses produce the best bokeh"}
-{"input": "what is a controlled experiment", "output": "hyde: A controlled experiment tests a hypothesis by changing one independent variable while keeping all other conditions constant. The control group receives no treatment, while the experimental group does. Comparing outcomes isolates the effect of the variable being tested.\nlex: controlled experiment scientific method variables\nlex: control group experimental group independent variable\nvec: what is a controlled experiment and how does it work in science\nvec: how do scientists set up control and experimental groups in a controlled experiment"}
-{"input": "what is telemedicine", "output": "hyde: Telemedicine uses video calls, phone consultations, and remote monitoring to deliver healthcare without in-person visits. Patients can consult doctors from home for diagnoses, prescriptions, and follow-ups. It expanded rapidly during COVID-19 and now covers specialties from dermatology to psychiatry.\nlex: telemedicine telehealth virtual doctor visit\nlex: telemedicine remote healthcare video consultation\nvec: what is telemedicine and how does it deliver healthcare remotely\nvec: how do patients use telemedicine for virtual doctor appointments"}
-{"input": "what are the teachings of jainism", "output": "hyde: Jainism, taught by Mahavira in the 6th century BCE, centers on ahimsa (non-violence), satya (truth), and aparigraha (non-attachment). Jains believe the soul is eternal, bound by karma accumulated through actions. Liberation (moksha) is achieved through right faith, right knowledge, and right conduct.\nlex: Jainism teachings principles ahimsa karma\nlex: Jain philosophy non-violence Mahavira\nvec: what are the core teachings and beliefs of Jainism\nvec: what did Mahavira teach about non-violence and the path to liberation in Jainism"}
-{"input": "what is sustainable living", "output": "hyde: Sustainable living means reducing your environmental impact by consuming fewer resources, choosing renewable energy, eating locally, minimizing waste, and favoring durable goods over disposable ones. It applies to housing, transportation, food, clothing, and daily consumption habits.\nlex: sustainable living eco-friendly lifestyle\nlex: sustainable living reduce reuse recycle carbon footprint\nvec: what does sustainable living mean and how can people practice it\nvec: what are the key principles and habits of a sustainable lifestyle"}
-{"input": "xml parse", "output": "hyde: To parse XML in Python, use `xml.etree.ElementTree`: `tree = ET.parse('file.xml'); root = tree.getroot()`. For streaming large files, use SAX with `xml.sax`. In JavaScript, use `DOMParser` or libraries like `fast-xml-parser`.\nlex: XML parser parsing library\nlex: XML DOM SAX parser programming\nlex: XML parse Python JavaScript Java\nvec: how to parse XML documents programmatically in different languages\nvec: what are the common methods for reading and parsing XML files in code"}
-{"input": "how does compound interest work", "output": "hyde: Compound interest is calculated on both the principal and accumulated interest. The formula is A = P(1 + r/n)^(nt), where P is principal, r is annual rate, n is compounding frequency, and t is time in years. Monthly compounding on $10,000 at 5% yields $16,470 after 10 years.\nlex: compound interest formula calculation rate\nlex: compound interest savings investment growth\nvec: how does compound interest grow money over time compared to simple interest\nvec: what is the formula for compound interest and how is it calculated"}
-{"input": "what is the role of reason in ethics", "output": "hyde: Kant held that reason alone can determine moral duty through the categorical imperative: act only according to maxims you could universalize. Rationalist ethics contrasts with sentimentalism (Hume), which grounds morality in emotion rather than rational deliberation.\nlex: reason ethics moral philosophy rationalism\nlex: reason morality Kant rational ethical judgment\nvec: what role does reason play in making moral and ethical decisions\nvec: how do philosophers like Kant argue that reason is the foundation of ethics"}
-{"input": "videography tips", "output": "hyde: Stabilize shots with a gimbal or tripod. Follow the rule of thirds for framing. Shoot at 24fps for cinematic feel or 60fps for smooth slow motion. Use three-point lighting. Record clean audio separately with a lavalier or shotgun mic\u2014audio quality matters more than resolution.\nlex: videography tips filming techniques camera\nlex: video production shooting composition stabilization\nvec: what are practical tips for improving videography and video shooting quality\nvec: how to shoot better video with camera movement, lighting, and composition techniques"}
-{"input": "how to choose a daycare?", "output": "hyde: Visit multiple centers and observe interactions between staff and children. Check the staff-to-child ratio (1:4 for infants is ideal), licensing status, cleanliness, and safety measures. Ask about daily routines, curriculum, discipline policies, and staff qualifications and turnover.\nlex: daycare choose selection criteria childcare\nlex: daycare center evaluation safety ratio\nvec: what should parents look for when choosing a daycare for their child\nvec: how to evaluate and compare daycare centers for quality and safety"}
-{"input": "how to replace car alternator?", "output": "hyde: Disconnect the negative battery terminal. Remove the serpentine belt by releasing the tensioner. Unplug the electrical connectors and unbolt the alternator. Install the new unit, reconnect the wiring, route the belt back on, and reconnect the battery. Test by checking voltage at 13.5-14.5V.\nlex: replace car alternator DIY steps\nlex: alternator replacement belt removal installation\nvec: step-by-step instructions for replacing a car alternator yourself\nvec: how to remove and install a new alternator in a vehicle"}
-{"input": "how to create a youtube channel", "output": "hyde: Sign in to YouTube with a Google account, click Create a Channel, and choose your channel name. Upload a profile picture and banner. Write a channel description with keywords. Plan a content schedule, create your first video, and optimize titles, thumbnails, and tags for search.\nlex: create YouTube channel setup steps\nlex: YouTube channel start grow subscribers content\nvec: how to set up and launch a new YouTube channel from scratch\nvec: what steps do you need to take to create and grow a YouTube channel"}
-{"input": "what is dualism in mind-body philosophy", "output": "hyde: Cartesian dualism, proposed by Ren\u00e9 Descartes, holds that mind and body are two distinct substances: res cogitans (thinking substance) and res extensa (extended substance). The mind is non-physical and conscious; the body is physical and mechanistic. Their interaction remains the central problem.\nlex: mind-body dualism Descartes substance\nlex: dualism philosophy of mind mental physical\nvec: what is mind-body dualism and how does Descartes explain the relationship between mind and body\nvec: how does dualism in philosophy argue that mind and body are separate substances"}
-{"input": "what is cliffhanger?", "output": "hyde: A cliffhanger is a narrative device that ends a chapter, episode, or story at a moment of high suspense, leaving the outcome unresolved. It compels the audience to continue reading or watching. The term originates from serialized fiction where characters were literally left hanging from cliffs.\nlex: cliffhanger literary device narrative suspense\nlex: cliffhanger ending story plot tension\nvec: what is a cliffhanger in storytelling and how does it create suspense\nvec: how do writers use cliffhangers to keep readers or viewers engaged"}
-{"input": "how to volunteer for civic initiatives", "output": "hyde: Check your city's website or community board for volunteer openings on advisory committees, park cleanups, and voter registration drives. Organizations like VolunteerMatch and local nonprofits connect volunteers with civic projects. Attend town hall meetings to learn about current needs.\nlex: volunteer civic initiatives community service\nlex: volunteering local government community projects\nvec: how can someone find and volunteer for civic engagement and community initiatives\nvec: what are ways to get involved in local civic volunteer opportunities"}
-{"input": "how does hinduism view the divine cycle of creation?", "output": "hyde: In Hindu cosmology, creation is cyclical. Brahma creates the universe, Vishnu preserves it, and Shiva destroys it so it can be reborn. Each cycle spans a kalpa (4.32 billion years). The universe undergoes endless cycles of srishti (creation), sthiti (preservation), and pralaya (dissolution).\nlex: Hinduism creation cycle Brahma Vishnu Shiva\nlex: Hindu cosmology srishti sthiti pralaya\nvec: how does Hinduism explain the cosmic cycle of creation, preservation, and destruction\nvec: what is the Hindu view of the divine cycle involving Brahma, Vishnu, and Shiva"}
-{"input": "what is consequentialist ethics", "output": "hyde: Consequentialism judges actions solely by their outcomes. The most influential form, utilitarianism (Bentham, Mill), holds that the right action maximizes overall happiness or well-being. Unlike deontology, which focuses on duties and rules, consequentialism permits any action if the results are good.\nlex: consequentialism ethics utilitarianism outcomes\nlex: consequentialist moral theory consequences actions\nvec: what is consequentialist ethics and how does it judge the morality of actions\nvec: how does consequentialism differ from deontological ethics in evaluating right and wrong"}
-{"input": "how to promote environmental awareness?", "output": "hyde: Organize community cleanups, host documentary screenings, and partner with schools for environmental education programs. Use social media campaigns with clear calls to action. Start a local recycling or composting initiative. Create informational signage at parks and public spaces.\nlex: environmental awareness promotion education campaigns\nlex: promote environmental sustainability community outreach\nvec: how can individuals and organizations promote environmental awareness in their communities\nvec: what are effective strategies for raising public awareness about environmental issues"}
-{"input": "how to practice self-love", "output": "hyde: Practice self-love by setting boundaries, speaking to yourself with kindness, and prioritizing rest without guilt. Journal about what you appreciate about yourself. Replace self-criticism with curiosity: ask \"what do I need right now?\" instead of \"what's wrong with me?\"\nlex: self-love self-care practices mental health\nlex: self-love habits self-compassion boundaries\nvec: what are practical ways to practice self-love and self-compassion daily\nvec: how to build self-love through healthy habits and positive self-talk"}
-{"input": "what is companion planting with vegetables", "output": "hyde: Companion planting pairs vegetables that benefit each other. Basil planted near tomatoes repels aphids and may improve flavor. Marigolds deter nematodes around most vegetables. The Three Sisters\u2014corn, beans, and squash\u2014is a classic trio: corn supports beans, beans fix nitrogen, squash shades soil.\nlex: companion planting vegetables garden chart\nlex: companion planting tomato basil marigold\nvec: what is companion planting and which vegetables grow well together\nvec: how does companion planting benefit vegetable gardens and deter pests"}
-{"input": "how to set achievable goals?", "output": "hyde: Use the SMART framework: Specific (define exactly what you want), Measurable (quantify progress), Achievable (within your capabilities), Relevant (aligned with larger objectives), Time-bound (set a deadline). Break large goals into weekly milestones and track progress visually.\nlex: set achievable goals SMART goal setting\nlex: goal setting strategy actionable realistic\nvec: how to set realistic and achievable goals using the SMART framework\nvec: what techniques help people set goals they can actually accomplish"}
-{"input": "how do scientists study animal behavior", "output": "hyde: Ethologists use direct observation, video tracking, and GPS telemetry to study animal behavior in natural habitats. Lab experiments control variables to test hypotheses about cognition and social behavior. Focal sampling follows one individual; scan sampling records group behavior at intervals.\nlex: animal behavior study ethology methods\nlex: animal behavior research observation field experiments\nvec: what methods do scientists use to study and analyze animal behavior\nvec: how do ethologists observe and research animal behavior in the wild and in labs"}
-{"input": "how to maintain motivation through challenges?", "output": "hyde: Break the challenge into small wins to maintain a sense of progress. Revisit your original purpose\u2014why did you start? Celebrate incremental achievements. Build accountability through a partner or group. Accept setbacks as data rather than failure, and adjust your approach rather than your goal.\nlex: maintain motivation challenges resilience\nlex: staying motivated difficult times strategies\nvec: how to stay motivated when facing setbacks and difficult challenges\nvec: what strategies help maintain motivation during tough periods in life or work"}
-{"input": "what is the philosophy of mind", "output": "hyde: Philosophy of mind investigates the nature of consciousness, mental states, and their relationship to the physical brain. Central questions include the hard problem of consciousness (why subjective experience exists), whether mental states reduce to brain states, and the nature of intentionality and qualia.\nlex: philosophy of mind consciousness mental states\nlex: philosophy of mind problem qualia dualism physicalism\nvec: what is the philosophy of mind and what questions does it explore\nvec: how does philosophy of mind address consciousness, mental states, and the mind-body problem"}
-{"input": "enum class", "output": "hyde: In C++11, `enum class` creates a scoped, strongly typed enumeration. Unlike plain enums, values don't implicitly convert to int and must be accessed with the scope operator: `enum class Color { Red, Green, Blue }; Color c = Color::Red;`\nlex: enum class C++ Java strongly typed\nlex: enum class Python enumeration members\nlex: enum class scoped enumeration\nvec: how to define and use enum classes in C++ or Java for type-safe enumerations\nvec: what is the difference between an enum and an enum class in C++"}
-{"input": "how to sell art on etsy?", "output": "hyde: Create an Etsy seller account and set up your shop with a clear brand name and banner. Photograph art in natural light with a neutral background. Write detailed listings with keywords buyers search for. Price to cover materials, time, Etsy fees (6.5%), and shipping. Offer prints alongside originals.\nlex: sell art Etsy shop setup listing\nlex: Etsy art shop pricing shipping prints\nvec: how to set up an Etsy shop to sell original art and prints\nvec: what tips help artists successfully sell artwork on Etsy"}
-{"input": "what is virtue epistemology", "output": "hyde: Virtue epistemology evaluates beliefs based on the intellectual character of the knower rather than just the properties of the belief. Ernest Sosa's reliabilism treats virtues as reliable cognitive faculties; Linda Zagzebski's responsibilism focuses on traits like open-mindedness, intellectual courage, and thoroughness.\nlex: virtue epistemology intellectual virtues knowledge\nlex: virtue epistemology Sosa Zagzebski epistemic\nvec: what is virtue epistemology and how does it differ from traditional theories of knowledge\nvec: how does virtue epistemology evaluate knowledge based on intellectual character traits"}
-{"input": "what is ethical egoism", "output": "hyde: Ethical egoism holds that agents ought to act in their own self-interest. Unlike psychological egoism (a descriptive claim that people always act selfishly), ethical egoism is normative\u2014it prescribes self-interest as the moral standard. Ayn Rand's rational self-interest is a well-known variant.\nlex: ethical egoism moral theory self-interest\nlex: ethical egoism Ayn Rand rational selfishness\nvec: what is ethical egoism and how does it differ from psychological egoism\nvec: how does ethical egoism argue that acting in self-interest is morally right"}
-{"input": "tech fix", "output": "hyde: Start with a restart\u2014it resolves most transient issues. Clear browser cache for web problems. Check cables and connections for hardware failures. Update drivers and firmware. For persistent crashes, check event logs and run diagnostics. Factory reset as a last resort after backing up data.\nlex: tech troubleshooting fix repair computer\nlex: technology fix common problems software hardware\nlex: tech support fix device issue\nvec: how to troubleshoot and fix common technology problems with computers and devices\nvec: what are basic tech fixes for common software and hardware issues"}
-{"input": "how to evaluate scientific sources", "output": "hyde: Check if the study is published in a peer-reviewed journal with an impact factor. Examine the sample size, methodology, and statistical analysis. Look for conflicts of interest in funding disclosures. Verify the authors' credentials and institutional affiliations. Check citation count and whether results have been replicated.\nlex: evaluate scientific sources credibility peer-reviewed\nlex: scientific source evaluation criteria journal\nvec: how to evaluate whether a scientific source or study is credible and reliable\nvec: what criteria should you use to assess the quality of scientific research papers"}
-{"input": "what is taoism", "output": "hyde: Taoism (Daoism) is a Chinese philosophical and spiritual tradition rooted in the Tao Te Ching by Lao Tzu. The Tao (\"the Way\") is the fundamental, nameless force underlying all things. Core concepts include wu wei (effortless action), yin-yang balance, simplicity, and harmony with nature.\nlex: Taoism Daoism Lao Tzu Tao Te Ching\nlex: Taoism philosophy wu wei yin yang\nvec: what are the core beliefs and principles of Taoism\nvec: what did Lao Tzu teach in the Tao Te Ching about the way and harmony with nature"}
-{"input": "how neural networks function", "output": "hyde: A neural network processes input through layers of interconnected neurons. Each neuron computes a weighted sum of its inputs, applies an activation function (ReLU, sigmoid), and passes the result forward. Training uses backpropagation to adjust weights by computing gradients of the loss function.\nlex: neural network layers neurons weights backpropagation\nlex: neural network deep learning forward pass activation\nvec: how do artificial neural networks process data and learn from training\nvec: what is the architecture and learning mechanism of a neural network"}
-{"input": "how to maintain a bonsai tree?", "output": "hyde: Water bonsai when the top half-inch of soil feels dry\u2014never on a schedule. Place in bright indirect light for indoor species or full sun for outdoor varieties. Prune new growth to maintain shape. Repot every 2-3 years in spring using well-draining akadama-based soil. Fertilize biweekly during growing season.\nlex: bonsai tree care maintenance watering pruning\nlex: bonsai trimming repotting soil fertilizer\nvec: how to properly care for and maintain a bonsai tree at home\nvec: what are the watering, pruning, and soil requirements for bonsai trees"}
-{"input": "what role does language play in philosophy", "output": "hyde: The linguistic turn of the 20th century made language central to philosophy. Wittgenstein argued that philosophical problems arise from misunderstandings of language. Analytic philosophers examine how meaning, reference, and truth conditions work. Ordinary language philosophy holds that everyday usage resolves many metaphysical puzzles.\nlex: language philosophy linguistic turn Wittgenstein\nlex: philosophy of language meaning reference semantics\nvec: what role does language play in philosophical inquiry and analysis\nvec: how did Wittgenstein and analytic philosophers view the relationship between language and thought"}
-{"input": "how to fight pests organically", "output": "hyde: Spray neem oil or insecticidal soap to kill soft-bodied pests like aphids and whiteflies. Introduce beneficial insects: ladybugs eat aphids, parasitic wasps target caterpillars. Use row covers to physically exclude pests. Apply diatomaceous earth around plant bases for slugs and beetles.\nlex: organic pest control garden insects\nlex: organic pesticide neem oil insecticidal soap\nvec: how to control garden pests using organic and natural methods\nvec: what organic pest control methods work for vegetable gardens"}
-{"input": "what is the role of research institutions", "output": "hyde: Research institutions\u2014universities, government labs, and private research organizations\u2014drive scientific progress through funded investigations, peer-reviewed publications, and training of new researchers. They provide infrastructure (labs, equipment, libraries), facilitate collaboration, and translate findings into real-world applications.\nlex: research institutions universities role science\nlex: research institutions funding labs innovation\nvec: what role do research institutions and universities play in advancing science\nvec: how do research institutions contribute to knowledge creation and innovation"}
-{"input": "what is narrative ethics", "output": "hyde: Narrative ethics holds that moral understanding is shaped by the stories we tell and hear. Rather than abstract principles, it emphasizes particular cases and lived experience. Literature, patient narratives in medicine, and personal testimony illuminate moral complexity that rules-based ethics may miss.\nlex: narrative ethics storytelling moral philosophy\nlex: narrative ethics literature moral reasoning\nvec: what is narrative ethics and how does storytelling relate to moral understanding\nvec: how do narrative ethicists use stories and literature to explore moral questions"}
-{"input": "ai ops", "output": "hyde: AIOps (Artificial Intelligence for IT Operations) applies machine learning to IT operations data\u2014logs, metrics, events\u2014to detect anomalies, predict outages, and automate incident response. Platforms like Datadog, Splunk, and Moogsoft correlate alerts to reduce noise and speed up root cause analysis.\nlex: AIOps artificial intelligence IT operations\nlex: AIOps monitoring anomaly detection automation\nlex: AIOps MLOps machine learning operations\nvec: what is AIOps and how does AI improve IT operations management\nvec: how do AIOps platforms use machine learning for monitoring and incident response"}
-{"input": "how to negotiate a business deal", "output": "hyde: Prepare by researching the other party's priorities and constraints. Define your BATNA (best alternative to a negotiated agreement) and walk-away point. Open with an ambitious but defensible anchor. Listen more than you talk. Focus on interests, not positions, to find creative win-win solutions.\nlex: negotiate business deal tactics strategy\nlex: business negotiation skills contract terms\nvec: what are effective strategies for negotiating a business deal successfully\nvec: how to prepare for and conduct a business negotiation to reach a favorable agreement"}
-{"input": "how to protest peacefully", "output": "hyde: Know your rights: peaceful assembly is protected by the First Amendment. Organize with clear goals, designated marshals, and a planned route. Coordinate with local authorities for permits. Bring water, ID, and emergency contacts. Stay nonviolent, document with video, and have legal observers present.\nlex: peaceful protest demonstration rights organizing\nlex: nonviolent protest civil disobedience activism\nvec: how to organize and participate in a peaceful protest effectively\nvec: what are the principles and logistics of peaceful demonstration and nonviolent activism"}
-{"input": "how to start oil painting?", "output": "hyde: Start with a basic set of oil paints: titanium white, cadmium yellow, cadmium red, ultramarine blue, and burnt umber. Use medium-grade bristle brushes in sizes 4, 8, and 12. Work on pre-primed canvas. Thin early layers with odorless mineral spirits and use linseed oil for later layers (fat over lean).\nlex: oil painting beginner supplies techniques\nlex: oil painting start canvas brushes paints medium\nvec: how to get started with oil painting as a beginner\nvec: what supplies and techniques do beginners need to start oil painting"}
-{"input": "what is the significance of archetypes?", "output": "hyde: Carl Jung described archetypes as universal, inherited patterns in the collective unconscious\u2014the Hero, the Shadow, the Trickster, the Great Mother. They recur across myths, dreams, and stories worldwide because they reflect fundamental human experiences and psychological structures shared by all cultures.\nlex: archetypes Carl Jung collective unconscious\nlex: archetypes significance literature psychology\nvec: what is the significance of archetypes in psychology and literature\nvec: how did Carl Jung define archetypes and why do they appear across cultures"}
-{"input": "how to mix colors in oil painting?", "output": "hyde: Mix on a glass or wood palette using a palette knife for clean blends. Start with the lighter color and add the darker one gradually. To mute a color, mix in its complement: add green to red, purple to yellow. Mix value (light/dark) separately from hue for better control.\nlex: oil painting color mixing palette technique\nlex: mix oil paint colors complementary warm cool\nvec: how to mix oil paint colors to achieve the right hues and values\nvec: what is the proper technique for blending and mixing colors in oil painting"}
-{"input": "how do different religions define good and evil?", "output": "hyde: Christianity frames evil as separation from God through sin, with goodness as alignment with divine will. Islam teaches that evil arises from disobeying Allah's commands. Buddhism sees evil as rooted in ignorance, greed, and hatred rather than a cosmic force. Hinduism links good and evil to dharma and karma.\nlex: good evil religion definition theology\nlex: good evil Christianity Islam Buddhism Hinduism\nvec: how do different world religions define and explain the concepts of good and evil\nvec: what are the religious perspectives on good versus evil across Christianity, Islam, Buddhism, and Hinduism"}
-{"input": "sail boat", "output": "hyde: Sailboats are propelled by wind acting on sails. Common types include dinghies (small, single-hull), keelboats (weighted keel for stability), catamarans (twin hulls), and sloops (single mast, fore-and-aft rigged). Key parts include the hull, mast, boom, jib, mainsail, rudder, and keel.\nlex: sailboat sailing types rigging\nlex: sailboat buy beginner learn to sail\nlex: sailboat parts hull keel mast\nvec: what are the different types of sailboats and how do they work\nvec: how to get started with sailboat sailing as a beginner"}
-{"input": "how crispr technology works", "output": "hyde: CRISPR-Cas9 uses a guide RNA (gRNA) complementary to the target DNA sequence. The gRNA directs the Cas9 nuclease to the precise genomic location, where it creates a double-strand break. The cell's repair machinery then either disrupts the gene (NHEJ) or inserts a new sequence (HDR) using a provided template.\nlex: CRISPR Cas9 gene editing mechanism\nlex: CRISPR technology DNA guide RNA\nvec: how does CRISPR-Cas9 gene editing technology work at the molecular level\nvec: what is the mechanism by which CRISPR cuts and edits DNA sequences"}
-{"input": "hair cut", "output": "hyde: Popular haircuts include the bob, pixie cut, and layers for women, and the fade, crew cut, and textured crop for men. Choose based on face shape: round faces suit angular cuts, long faces benefit from volume at the sides. Bring reference photos to your appointment for clear communication.\nlex: haircut styles men women trends\nlex: haircut salon barbershop near me\nlex: haircut techniques layered fade trim\nvec: what are the popular haircut styles and how to choose the right one\nvec: how to communicate what haircut you want to a stylist or barber"}
-{"input": "how to develop an art portfolio?", "output": "hyde: Select 15-20 of your strongest, most cohesive pieces that demonstrate range and skill. Open and close with your best work. Show process sketches alongside finished pieces. Use consistent, high-quality photography. For digital portfolios, use platforms like Behance or a personal website with clean navigation.\nlex: art portfolio development pieces selection\nlex: art portfolio presentation layout artist\nvec: how to build a strong art portfolio for school applications or professional work\nvec: what should an art portfolio include and how should it be organized"}
-{"input": "what is atmospheric science", "output": "hyde: Atmospheric science studies the Earth's atmosphere\u2014its composition, structure, and dynamics. Sub-fields include meteorology (weather forecasting), climatology (long-term patterns), atmospheric chemistry (ozone, pollutants), and atmospheric physics (radiation, cloud formation). It underpins weather prediction and climate change research.\nlex: atmospheric science meteorology climate weather\nlex: atmospheric science atmosphere composition dynamics\nvec: what is atmospheric science and what topics does it study\nvec: how does atmospheric science explain weather, climate, and the Earth's atmosphere"}
-{"input": "how to apply for a mortgage", "output": "hyde: Check your credit score (aim for 620+, 740+ for best rates). Save for a down payment of 3-20%. Get pre-approved with a lender by submitting W-2s, pay stubs, bank statements, and tax returns. Compare rates from multiple lenders. Once you find a home, submit the full application and await underwriting.\nlex: mortgage application process requirements\nlex: apply mortgage home loan pre-approval credit score\nvec: what are the steps to apply for a home mortgage loan\nvec: how to prepare your finances and documents to apply for a mortgage"}
-{"input": "how to analyze political polls", "output": "hyde: To analyze a political poll, start by examining the sample size, methodology, and margin of error. A poll of 1,000 likely voters with a \u00b13% margin means the true value falls within that range 95% of the time. Compare results across multiple polls using polling averages to reduce noise.\nlex: political poll analysis methodology\nlex: polling data interpretation margin error\nlex: election survey statistics\nvec: what methods are used to analyze and interpret political polling data\nvec: how to evaluate the accuracy and reliability of election polls\nvec: understanding margin of error and sample size in political surveys"}
-{"input": "how does the body maintain homeostasis", "output": "hyde: The body maintains homeostasis through negative feedback loops. When blood glucose rises after a meal, the pancreas releases insulin, signaling cells to absorb glucose. When body temperature drops, the hypothalamus triggers shivering and vasoconstriction to conserve heat.\nlex: homeostasis regulation human body\nlex: negative feedback loop physiology\nlex: body temperature pH blood glucose regulation\nvec: what mechanisms does the human body use to maintain internal stability\nvec: how do feedback loops help regulate body temperature and blood sugar levels"}
-{"input": "how to transplant seedlings?", "output": "hyde: Transplant seedlings after hardening them off for 7-10 days. Dig a hole slightly larger than the root ball, gently remove the seedling from its pot, and place it at the same depth it was growing. Water thoroughly and mulch around the base to retain moisture.\nlex: transplant seedlings garden\nlex: seedling hardening off repotting\nlex: moving seedlings outdoors soil\nvec: what is the correct process for transplanting seedlings from pots into the garden\nvec: when and how should you harden off and transplant young plants outdoors"}
-{"input": "how to interpret graphs and charts", "output": "hyde: To interpret a graph, first read the title and axis labels to understand what is being measured. Identify the scale and units. For line charts, look at trends over time. For bar charts, compare heights across categories. Always check whether the y-axis starts at zero, as truncated axes can exaggerate differences.\nlex: reading graphs charts data visualization\nlex: interpret bar line pie chart\nlex: graph axis scale data trends\nvec: how do you read and interpret different types of graphs and charts correctly\nvec: what should you look for when analyzing data presented in visual charts"}
-{"input": "how to start a sketchbook?", "output": "hyde: Start your sketchbook by choosing a book with paper weight of at least 80gsm. Begin with simple observational drawings of everyday objects. Draw for 10-15 minutes daily without worrying about perfection. Use pencil, pen, or whatever feels comfortable. Date each page to track your progress.\nlex: sketchbook practice beginner drawing\nlex: daily sketching habit art journal\nlex: first sketchbook tips supplies\nvec: how do beginners start and maintain a regular sketchbook practice\nvec: what supplies and techniques should you use when starting your first sketchbook"}
-{"input": "what are the main teachings of jainism?", "output": "hyde: Jainism teaches three core principles: ahimsa (nonviolence toward all living beings), anekantavada (many-sidedness of truth), and aparigraha (non-attachment to possessions). The path to liberation involves the Three Jewels: right faith, right knowledge, and right conduct. Jains practice strict vegetarianism and asceticism.\nlex: jainism core teachings principles\nlex: ahimsa anekantavada aparigraha jain\nlex: jain dharma beliefs nonviolence\nvec: what are the central beliefs and philosophical teachings of Jainism\nvec: how do Jain principles like ahimsa and anekantavada guide ethical living"}
-{"input": "how to choose curtains for living room", "output": "hyde: Choose curtains that hang 1-2 inches above the floor for a polished look. For a small living room, use light-colored sheer fabrics to maximize natural light. Mount the curtain rod 4-6 inches above the window frame and extend it 3-8 inches beyond each side to make windows appear larger.\nlex: living room curtain selection fabric\nlex: curtain length style window treatment\nlex: drapes color pattern room decor\nvec: how do you choose the right curtains for a living room based on style and function\nvec: what curtain fabric length and color work best for different living room windows"}
-{"input": "how to take macro photos", "output": "hyde: For macro photography, use a dedicated macro lens (60mm or 100mm) or extension tubes. Set your aperture to f/8-f/16 for sufficient depth of field. Use a tripod and remote shutter to eliminate camera shake. Focus stacking\u2014taking multiple shots at different focus distances\u2014produces sharp images throughout the subject.\nlex: macro photography technique close-up\nlex: macro lens focus stacking lighting\nlex: close-up photography camera settings\nvec: what camera settings and equipment do you need for macro photography\nvec: how to achieve sharp focus and good lighting in close-up macro shots"}
-{"input": "how to write a query letter?", "output": "hyde: A query letter has three paragraphs: the hook (a compelling one-sentence pitch), the mini-synopsis (250 words covering the protagonist, conflict, and stakes), and the bio (your credentials and comp titles). Address the agent by name, mention why you chose them, and keep the entire letter under one page.\nlex: query letter writing literary agent\nlex: book manuscript submission query format\nlex: query letter hook synopsis comp titles\nvec: how do you write an effective query letter to a literary agent for your novel\nvec: what structure and elements should a query letter include for book submissions"}
-{"input": "what are plasmids", "output": "hyde: Plasmids are small, circular, double-stranded DNA molecules found in bacteria that replicate independently of chromosomal DNA. They often carry genes for antibiotic resistance. In genetic engineering, plasmids serve as vectors to insert foreign genes into host cells for cloning and protein expression.\nlex: plasmid DNA circular extrachromosomal\nlex: plasmid bacteria gene transfer cloning\nlex: plasmid vector molecular biology\nvec: what are plasmids and what role do they play in bacterial genetics\nvec: how are plasmids used as vectors in molecular biology and genetic engineering"}
-{"input": "how do scientists accurately measure time", "output": "hyde: The SI second is defined by the cesium-133 atom, which oscillates 9,192,631,770 times per second. Atomic clocks use this transition frequency to achieve accuracy within one second over millions of years. Optical lattice clocks using strontium atoms are even more precise, losing less than one second over the age of the universe.\nlex: atomic clock time measurement precision\nlex: cesium clock seconds SI definition\nlex: timekeeping scientific instruments\nvec: how do atomic clocks and other instruments allow scientists to measure time with extreme precision\nvec: what is the scientific definition of a second and how is it measured"}
-{"input": "how to build a professional network?", "output": "hyde: Build your professional network by attending industry conferences, joining professional associations, and engaging on LinkedIn. Follow up within 48 hours of meeting someone new. Offer value before asking for favors\u2014share articles, make introductions, or provide feedback. Schedule regular coffee chats to maintain relationships.\nlex: professional networking career connections\nlex: LinkedIn networking events industry contacts\nlex: building professional relationships mentorship\nvec: what are effective strategies for building and maintaining a professional network\nvec: how can attending events and using LinkedIn help grow your career network"}
-{"input": "what is the significance of sacred symbols?", "output": "hyde: Sacred symbols serve as tangible expressions of spiritual truths across religions. The Christian cross represents sacrifice and redemption, the Hindu Om embodies the primordial sound of creation, and the Jewish menorah symbolizes divine light. These symbols anchor believers' faith and create shared identity within communities.\nlex: sacred symbols religious meaning\nlex: spiritual symbols cross om menorah lotus\nlex: religious iconography symbolism significance\nvec: what role do sacred symbols play in religious and spiritual traditions\nvec: how do symbols like the cross, om, and menorah carry meaning in their respective faiths"}
-{"input": "how to succeed in a digital marketing career?", "output": "hyde: A digital marketing career requires proficiency in SEO, paid advertising (Google Ads, Meta Ads), content marketing, email marketing, and analytics tools like Google Analytics. Build a portfolio with real campaigns. Earn certifications from Google, HubSpot, or Meta. Entry-level roles include marketing coordinator or social media specialist.\nlex: digital marketing career skills\nlex: SEO social media analytics marketing job\nlex: digital marketing certifications portfolio\nvec: what skills and experience do you need to build a successful digital marketing career\nvec: how to get started in digital marketing and advance to senior roles"}
-{"input": "how to plan a trip to europe?", "output": "hyde: Plan your Europe trip 3-6 months ahead. Book flights early for the best fares. Get a Eurail pass if visiting 3+ countries. Budget \u20ac50-150/day depending on the country. Book accommodations on Booking.com or Hostelworld. Check visa requirements\u2014US citizens can stay 90 days in the Schengen Area without a visa.\nlex: Europe trip planning itinerary budget\nlex: European travel visa flights accommodations\nlex: backpacking Europe route booking tips\nvec: how do you plan and budget for a multi-country trip across Europe\nvec: what are the steps for organizing flights, accommodations, and itineraries for European travel"}
-{"input": "how machine learning influences businesses", "output": "hyde: Machine learning transforms businesses through demand forecasting, customer churn prediction, fraud detection, and recommendation engines. Retailers use ML to optimize pricing and inventory. Banks deploy ML models for credit scoring. Companies using ML-driven analytics report 5-10% increases in revenue through personalized marketing.\nlex: machine learning business applications\nlex: ML AI enterprise automation prediction\nlex: machine learning revenue customer analytics\nvec: how are businesses using machine learning to improve operations and decision-making\nvec: what impact does machine learning have on business revenue and efficiency"}
-{"input": "what are the main characteristics of memoirs?", "output": "hyde: A memoir focuses on a specific theme or period in the author's life, unlike an autobiography which covers an entire life chronologically. Key characteristics include a first-person narrative voice, emotional honesty, reflection on personal growth, vivid sensory details, and a thematic arc that gives the story universal resonance.\nlex: memoir characteristics literary genre\nlex: memoir vs autobiography personal narrative\nlex: memoir writing elements structure\nvec: what distinguishes a memoir from other forms of autobiographical writing\nvec: what are the key literary features and structure of a memoir"}
-{"input": "how do sikhs practice their faith", "output": "hyde: Sikhs practice their faith through daily prayers (Nitnem), including Japji Sahib at dawn. They worship at the gurdwara, where the Guru Granth Sahib is read aloud. Baptized Sikhs wear the five Ks: kesh (uncut hair), kangha (comb), kara (steel bracelet), kachera (undergarment), and kirpan (ceremonial sword). Langar, the communal kitchen, serves free meals to all visitors.\nlex: Sikh faith practices worship\nlex: gurdwara langar five Ks Sikhism\nlex: Sikh prayer Guru Granth Sahib\nvec: what are the daily religious practices and rituals observed by Sikhs\nvec: how do Sikhs worship in the gurdwara and observe the five Ks"}
-{"input": "what are the foundations of feminist ethics", "output": "hyde: Feminist ethics emerged from Carol Gilligan's critique of Kohlberg's moral development theory, arguing that women's moral reasoning emphasizes care and relationships rather than abstract principles of justice. Nel Noddings developed the ethics of care, centering moral life on attentiveness, responsibility, and responsiveness to the needs of particular others.\nlex: feminist ethics care theory foundations\nlex: feminist moral philosophy gender justice\nlex: ethics of care Gilligan Noddings feminist\nvec: what are the core principles and philosophical foundations of feminist ethics\nvec: how does feminist ethics differ from traditional moral philosophy in its approach to care and justice"}
-{"input": "how do antibiotics work", "output": "hyde: Antibiotics work by targeting structures unique to bacteria. Penicillin and cephalosporins inhibit cell wall synthesis, causing bacteria to burst. Tetracyclines block the 30S ribosomal subunit, preventing protein synthesis. Fluoroquinolones inhibit DNA gyrase, stopping bacterial DNA replication. Antibiotics are classified as bactericidal (kill bacteria) or bacteriostatic (stop growth).\nlex: antibiotics mechanism action bacteria\nlex: antibiotic cell wall protein synthesis inhibition\nlex: bactericidal bacteriostatic penicillin\nvec: how do antibiotics kill or inhibit the growth of bacteria in the human body\nvec: what are the different mechanisms by which antibiotics target bacterial cells"}
-{"input": "what is geothermal energy?", "output": "hyde: Geothermal energy harnesses heat from the Earth's interior. Hot water and steam from underground reservoirs drive turbines to generate electricity. Geothermal power plants operate at over 90% capacity factor, far higher than wind or solar. Iceland generates 25% of its electricity from geothermal sources.\nlex: geothermal energy heat earth power\nlex: geothermal power plant electricity generation\nlex: geothermal renewable energy underground\nvec: how does geothermal energy work and how is it used to generate electricity\nvec: what are the advantages and limitations of geothermal energy as a renewable source"}
-{"input": "how does a bill become a law", "output": "hyde: A bill is introduced in the House or Senate and assigned to a committee. The committee holds hearings, marks up the bill, and votes. If passed, it goes to the full chamber for debate and a vote. Both chambers must pass identical versions. Differences are resolved in a conference committee. The final bill goes to the President, who can sign it into law or veto it.\nlex: bill becomes law legislative process\nlex: US Congress legislation committee vote\nlex: bill passage House Senate president sign\nvec: what are the steps a bill goes through in the US Congress to become a law\nvec: how does the legislative process work from bill introduction to presidential signature"}
-{"input": "what is the difference between ethics and morals", "output": "hyde: Ethics refers to systematic, philosophical frameworks for determining right and wrong\u2014such as utilitarianism or deontology. Morals are personal beliefs about right and wrong shaped by culture, religion, and upbringing. Ethics are prescriptive rules applied to groups (medical ethics, business ethics), while morals are individual convictions.\nlex: ethics vs morals difference\nlex: ethics morals philosophy distinction\nlex: moral principles ethical systems comparison\nvec: what is the distinction between ethics and morals in philosophy\nvec: how do personal morals differ from ethical systems and codes of conduct"}
-{"input": "what was the silk road", "output": "hyde: The Silk Road was a network of trade routes connecting China to the Mediterranean from the 2nd century BCE to the 15th century CE. Merchants traded silk, spices, gold, and jade. Beyond goods, the Silk Road facilitated the spread of Buddhism, Islam, papermaking, and gunpowder across Eurasia.\nlex: Silk Road ancient trade route\nlex: Silk Road China Rome trade network\nlex: Silk Road history commerce cultural exchange\nvec: what was the historical Silk Road and what goods and ideas were traded along it\nvec: how did the Silk Road connect civilizations between China and the Mediterranean"}
-{"input": "what is the significance of beauty in philosophy", "output": "hyde: In Plato's Symposium, beauty is a ladder ascending from physical attraction to the Form of Beauty itself. Kant distinguished between the beautiful (harmonious, universal pleasure) and the sublime (overwhelming grandeur). For Hegel, beauty in art reveals truth through sensory form. Contemporary aesthetics debates whether beauty is objective or culturally constructed.\nlex: beauty philosophy aesthetics significance\nlex: aesthetics Kant Plato beauty philosophical\nlex: philosophy of beauty sublime art\nvec: how have philosophers understood and defined the concept of beauty throughout history\nvec: what is the philosophical significance of beauty in aesthetics from Plato to Kant"}
-{"input": "how to communicate with elected officials", "output": "hyde: The most effective way to reach your elected officials is a phone call to their district office. Identify yourself as a constituent, state the bill number, and clearly state your position in under 60 seconds. Personalized letters are more impactful than form emails. Attend town halls for face-to-face interaction.\nlex: contact elected officials representatives\nlex: write letter call congressman senator\nlex: constituent advocacy elected official communication\nvec: what are effective ways to communicate your concerns to elected officials\nvec: how to write letters or make phone calls to your congressional representatives"}
-{"input": "what is phenomenology", "output": "hyde: Phenomenology is a philosophical method founded by Edmund Husserl that studies the structures of conscious experience as they appear to the subject. Through \"bracketing\" (epoch\u00e9), the phenomenologist suspends assumptions about the external world to describe phenomena as they are experienced. Heidegger extended this into an analysis of Being-in-the-world.\nlex: phenomenology philosophy Husserl\nlex: phenomenological method consciousness experience\nlex: phenomenology Heidegger Merleau-Ponty intentionality\nvec: what is phenomenology and how does it study conscious experience\nvec: how did Husserl and Heidegger develop phenomenology as a philosophical method"}
-{"input": "how to enhance concentration", "output": "hyde: Improve concentration by eliminating distractions: silence notifications, use website blockers, and work in a quiet environment. The Pomodoro Technique\u201425 minutes of focused work followed by a 5-minute break\u2014builds sustained attention. Regular exercise, adequate sleep (7-9 hours), and mindfulness meditation physically strengthen the brain's prefrontal cortex.\nlex: improve concentration focus techniques\nlex: attention span deep work focus tips\nlex: concentration exercises mindfulness pomodoro\nvec: what techniques and habits can help you improve focus and concentration\nvec: how can mindfulness and time management methods like Pomodoro improve attention"}
-{"input": "what is the theory of relativity", "output": "hyde: Einstein's special relativity (1905) states that the speed of light is constant for all observers and that time dilates at high velocities (E=mc\u00b2). General relativity (1915) describes gravity not as a force but as the curvature of spacetime caused by mass and energy. Massive objects bend spacetime, and objects follow curved paths.\nlex: theory of relativity Einstein\nlex: special general relativity spacetime gravity\nlex: E=mc2 Einstein relativity physics\nvec: what are Einstein's special and general theories of relativity and what do they explain\nvec: how does the theory of relativity describe the relationship between space time and gravity"}
-{"input": "what is depth of field?", "output": "hyde: Depth of field (DOF) is the range of distance in a photo that appears acceptably sharp. A wide aperture (f/1.8) produces a shallow DOF with a blurred background (bokeh), ideal for portraits. A narrow aperture (f/16) produces deep DOF where everything is sharp, suited for landscapes. Focal length and subject distance also affect DOF.\nlex: depth of field photography aperture\nlex: DOF shallow deep focus bokeh\nlex: aperture f-stop focal length depth field\nvec: what is depth of field in photography and how does aperture affect it\nvec: how do aperture, focal length, and distance control the depth of field in a photo"}
-{"input": "how to write a haiku", "output": "hyde: A haiku is a three-line Japanese poem with a 5-7-5 syllable structure. Traditional haiku includes a kigo (seasonal word) and a kireji (cutting word) that creates a pause or shift. Example: \"An old silent pond / A frog jumps into the pond\u2014 / Splash! Silence again.\" Focus on a single moment in nature observed with clarity.\nlex: haiku poem writing syllable\nlex: haiku 5-7-5 Japanese poetry\nlex: haiku nature season kigo structure\nvec: what are the rules and structure for writing a traditional haiku poem\nvec: how do you compose a haiku with the 5-7-5 syllable pattern and seasonal reference"}
-{"input": "how to address misinformation in politics", "output": "hyde: Combat political misinformation by checking claims against nonpartisan fact-checkers like PolitiFact, Snopes, and FactCheck.org. Verify the original source before sharing. Teach media literacy skills: examine the URL, author credentials, and whether other outlets confirm the story. Prebunking\u2014warning people about manipulation techniques before exposure\u2014is more effective than debunking after the fact.\nlex: political misinformation combat fact-checking\nlex: fake news disinformation media literacy\nlex: countering political misinformation strategies\nvec: what strategies can be used to identify and counter political misinformation\nvec: how can media literacy and fact-checking help address false political claims"}
-{"input": "what is the philosophy of humor?", "output": "hyde: Three major theories explain humor. Superiority theory (Hobbes) says we laugh at others' misfortunes. Relief theory (Freud) says laughter releases nervous energy. Incongruity theory (Kant, Schopenhauer) says humor arises when expectations are violated\u2014we laugh at the gap between what we expect and what occurs.\nlex: philosophy of humor laughter theory\nlex: incongruity superiority relief theory humor\nlex: humor philosophy comedy Bergson\nvec: what are the main philosophical theories that explain why things are funny\nvec: how do incongruity theory, superiority theory, and relief theory explain humor"}
-{"input": "how does determinism challenge free will", "output": "hyde: Determinism holds that every event, including human choices, is the inevitable result of prior causes. If our decisions are fully determined by brain states, genetics, and environment, then free will appears illusory. Compatibilists like Hume argue free will means acting on one's desires without external coercion, which is compatible with determinism.\nlex: determinism free will debate\nlex: causal determinism libertarian compatibilism\nlex: free will philosophy hard determinism\nvec: how does philosophical determinism pose a challenge to the concept of free will\nvec: can free will exist if every event is causally determined by prior events"}
-{"input": "how to write compelling endings?", "output": "hyde: A compelling ending resolves the central conflict while delivering an emotional payoff. Techniques include the circular ending (returning to an opening image with new meaning), the surprise twist (recontextualizing everything), and the resonant final image. Avoid deus ex machina. The ending should feel both surprising and inevitable\u2014earned by what came before.\nlex: writing compelling story ending\nlex: novel ending techniques resolution climax\nlex: satisfying conclusion fiction writing\nvec: what techniques do authors use to write powerful and satisfying story endings\nvec: how to craft a compelling ending that resolves the plot and resonates emotionally"}
-{"input": "how to make scientific presentations engaging", "output": "hyde: Make scientific presentations engaging by opening with a question or surprising finding rather than an outline slide. Use large visuals and minimal text\u2014no more than 6 words per slide. Tell a story: setup the problem, build tension with the data, and deliver the conclusion as a punchline. Practice to stay under time and make eye contact.\nlex: scientific presentation engaging tips\nlex: science talk slides audience storytelling\nlex: research presentation design delivery\nvec: how can scientists make their research presentations more engaging and accessible\nvec: what techniques improve the delivery and visual design of scientific talks"}
-{"input": "how to draw with a graphic tablet?", "output": "hyde: Set up your graphic tablet by installing the driver software and calibrating pen pressure. Start in a drawing program like Clip Studio Paint or Krita. The key challenge is hand-eye coordination\u2014you draw on the tablet but look at the screen. Practice simple lines and circles to build muscle memory. Adjust pressure sensitivity curves to match your drawing style.\nlex: graphic tablet drawing digital art\nlex: Wacom drawing tablet pen pressure\nlex: digital drawing tablet beginner setup\nvec: how do you set up and start drawing with a graphic tablet for digital art\nvec: what are tips for beginners learning to draw on a Wacom or similar tablet"}
-{"input": "how to build a capsule wardrobe", "output": "hyde: A capsule wardrobe consists of 30-40 versatile pieces that mix and match. Start by choosing a neutral color palette (black, navy, white, beige). Include 2-3 pairs of pants, 5-7 tops, 2 jackets, 2 pairs of shoes, and 1-2 dresses or suits. Remove items you haven't worn in a year. Invest in quality basics over trendy pieces.\nlex: capsule wardrobe essentials minimalist\nlex: capsule wardrobe build pieces mix match\nlex: minimalist wardrobe basics clothing\nvec: how do you create a capsule wardrobe with a minimal set of versatile clothing pieces\nvec: what are the essential items and steps to build a functional capsule wardrobe"}
-{"input": "what was the impact of the berlin wall?", "output": "hyde: The Berlin Wall divided East and West Berlin from 1961 to 1989, symbolizing the Iron Curtain between communist and capitalist worlds. Its fall on November 9, 1989, triggered German reunification in 1990 and accelerated the collapse of communist regimes across Eastern Europe, effectively ending the Cold War.\nlex: Berlin Wall impact fall 1989\nlex: Berlin Wall Cold War Germany division\nlex: Berlin Wall consequences reunification\nvec: what was the historical impact of the Berlin Wall on Germany and the Cold War\nvec: how did the fall of the Berlin Wall in 1989 change Europe and global politics"}
-{"input": "classic literature", "output": "hyde: Classic literature includes works that have stood the test of time for their artistic merit, universal themes, and cultural influence. Essential classics include Homer's Odyssey, Shakespeare's Hamlet, Austen's Pride and Prejudice, Dostoevsky's Crime and Punishment, and Fitzgerald's The Great Gatsby.\nlex: classic literature novels canon\nlex: classic books literary fiction great works\nlex: classic literature reading list authors\nvec: what are the most important works of classic literature and why are they significant\nvec: which classic novels and authors are considered essential reading in the Western literary canon"}
-{"input": "how to make slime at home", "output": "hyde: Mix 1/2 cup of white PVA glue with 1/2 cup of liquid starch or 1 tablespoon of borax dissolved in 1 cup of water. Stir until the slime pulls away from the bowl. Knead with your hands for 2-3 minutes until smooth. Add food coloring or glitter before mixing for a custom look. Store in an airtight container.\nlex: homemade slime recipe DIY\nlex: slime glue borax contact solution\nlex: make slime kids craft\nvec: what ingredients and steps do you need to make slime at home\nvec: how to make homemade slime using glue and borax or contact lens solution"}
-{"input": "what is the ethics of climate change", "output": "hyde: Climate ethics addresses who bears moral responsibility for carbon emissions and their consequences. Key questions include intergenerational justice (obligations to future generations), distributive justice (developing nations suffer most but polluted least), and the tragedy of the commons. Philosophers debate whether current generations owe a carbon debt to those who will inherit a warmer world.\nlex: climate change ethics moral responsibility\nlex: climate ethics justice intergenerational\nlex: environmental ethics carbon emissions moral\nvec: what are the ethical and moral dimensions of climate change and environmental responsibility\nvec: how do philosophers approach questions of climate justice and intergenerational obligation"}
-{"input": "what are leadership qualities", "output": "hyde: Effective leaders demonstrate integrity, clear communication, empathy, and decisiveness. They articulate a compelling vision and inspire others to work toward shared goals. Key qualities include emotional intelligence, accountability, adaptability under pressure, and the ability to delegate while empowering team members to take ownership.\nlex: leadership qualities traits effective\nlex: leader skills communication vision integrity\nlex: leadership characteristics management\nvec: what personal qualities and traits define an effective leader\nvec: which skills and characteristics are most important for strong leadership"}
-{"input": "what is the difference between a credit score and a credit report", "output": "hyde: A credit report is a detailed record of your credit history maintained by bureaus (Equifax, Experian, TransUnion). It lists accounts, payment history, balances, and inquiries. A credit score is a three-digit number (300-850) calculated from your credit report data. FICO scores weigh payment history (35%), amounts owed (30%), length of history (15%), new credit (10%), and credit mix (10%).\nlex: credit score vs credit report difference\nlex: credit report FICO score bureaus\nlex: credit score number credit report history\nvec: what is the difference between a credit score and a credit report\nvec: how does a credit report relate to the credit score number lenders use"}
-{"input": "how to make homemade pizza", "output": "hyde: Mix 3 cups flour, 1 packet yeast, 1 tsp salt, 1 tbsp olive oil, and 1 cup warm water. Knead for 10 minutes and let rise 1 hour. Stretch the dough on a floured surface, spread tomato sauce, add mozzarella and toppings. Bake at 475\u00b0F (245\u00b0C) on a preheated pizza stone for 10-12 minutes until the crust is golden.\nlex: homemade pizza dough recipe\nlex: pizza from scratch oven toppings\nlex: make pizza dough sauce crust\nvec: how do you make pizza from scratch at home with homemade dough and sauce\nvec: what is the best recipe for homemade pizza dough and how do you bake it"}
-{"input": "how to improve workplace productivity", "output": "hyde: Improve workplace productivity by eliminating unnecessary meetings, batching similar tasks together, and protecting blocks of uninterrupted focus time. Use the Eisenhower Matrix to prioritize tasks by urgency and importance. Managers should set clear goals, reduce bureaucratic overhead, and ensure employees have the tools and autonomy they need.\nlex: workplace productivity improvement strategies\nlex: employee productivity time management office\nlex: work efficiency focus deep work\nvec: what strategies and techniques can improve productivity in the workplace\nvec: how can employees and managers increase work output and reduce wasted time"}
-{"input": "what is the role of clergy in christianity", "output": "hyde: Christian clergy serve as spiritual leaders, administering sacraments, preaching sermons, and providing pastoral care. In Catholicism, ordained priests celebrate Mass, hear confessions, and perform baptisms. Protestant pastors focus on preaching and teaching Scripture. Deacons serve the community through charity and administrative support. The clergy structure varies widely across denominations.\nlex: clergy role Christianity priest pastor\nlex: Christian minister ordained church leadership\nlex: priest pastor deacon church clergy duties\nvec: what roles and responsibilities do clergy members serve in Christian churches\nvec: how do priests, pastors, and deacons function within different Christian denominations"}
-{"input": "how does virtue ethics work", "output": "hyde: Virtue ethics, rooted in Aristotle's Nicomachean Ethics, holds that moral action flows from virtuous character rather than following rules (deontology) or maximizing outcomes (consequentialism). Virtues like courage, temperance, and justice are developed through practice. The goal is eudaimonia\u2014human flourishing\u2014achieved by living according to reason and cultivating the mean between excess and deficiency.\nlex: virtue ethics Aristotle moral character\nlex: virtue ethics eudaimonia character traits\nlex: Aristotelian ethics virtues vices\nvec: how does virtue ethics evaluate moral action based on character rather than rules\nvec: what is Aristotle's approach to virtue ethics and how does it define the good life"}
-{"input": "what are the challenges of climate science", "output": "hyde: Climate science faces challenges including modeling complex feedback loops (clouds, ocean currents, ice sheets), limited historical data from pre-instrumental periods, and the chaotic nature of weather systems. Regional predictions are harder than global ones. Tipping points\u2014thresholds beyond which changes become irreversible\u2014are difficult to predict with current models.\nlex: climate science challenges research\nlex: climate modeling uncertainty data gaps\nlex: climate change research limitations predictions\nvec: what are the major scientific challenges in studying and predicting climate change\nvec: why is climate modeling difficult and what uncertainties do climate scientists face"}
-{"input": "how to reduce stress naturally", "output": "hyde: Reduce stress naturally by exercising 30 minutes daily\u2014aerobic exercise lowers cortisol and releases endorphins. Practice deep breathing: inhale for 4 counts, hold for 7, exhale for 8. Meditate for 10 minutes each morning. Limit caffeine and alcohol, sleep 7-9 hours, and spend time in nature. Progressive muscle relaxation and journaling also help.\nlex: reduce stress naturally techniques\nlex: stress relief meditation exercise breathing\nlex: natural stress management relaxation\nvec: what natural methods and lifestyle changes can help reduce stress without medication\nvec: how do exercise, meditation, and breathing techniques reduce stress levels"}
-{"input": "how to start trail running", "output": "hyde: Start trail running on well-marked, relatively flat trails. Invest in trail running shoes with lugged soles for traction. Run by effort, not pace\u2014expect to be 1-2 minutes per mile slower than road pace. Walk the uphills, run the flats and downhills. Carry water on runs over 45 minutes. Watch your footing and shorten your stride on technical terrain.\nlex: trail running beginner start\nlex: trail running shoes gear technique\nlex: off-road running trails tips\nvec: how do beginners get started with trail running and what gear is needed\nvec: what training tips and safety advice should new trail runners follow"}
-{"input": "how to write a literary essay?", "output": "hyde: A literary essay argues a specific thesis about a text using evidence from the work itself. Open with a hook and thesis statement. Each body paragraph should present a claim, textual evidence (quotations), and analysis explaining how the evidence supports your argument. Use close reading to examine language, imagery, symbolism, and structure. Conclude by synthesizing your argument.\nlex: literary essay writing analysis\nlex: literary analysis thesis evidence essay\nlex: English literature essay structure argument\nvec: how do you write a strong literary analysis essay with a clear thesis and evidence\nvec: what is the structure and approach for writing an essay analyzing a work of literature"}
-{"input": "sustainable development goals", "output": "hyde: The 17 Sustainable Development Goals (SDGs) were adopted by the United Nations in 2015 as a universal call to action by 2030. They include: No Poverty (SDG 1), Zero Hunger (SDG 2), Good Health (SDG 3), Quality Education (SDG 4), Gender Equality (SDG 5), Clean Water (SDG 6), and Climate Action (SDG 13), among others.\nlex: sustainable development goals SDGs UN\nlex: SDG 2030 agenda United Nations\nlex: UN sustainability goals poverty climate\nvec: what are the United Nations Sustainable Development Goals and what do they aim to achieve\nvec: how are the 17 SDGs structured and what progress has been made toward the 2030 agenda"}
-{"input": "how to navigate with gps", "output": "hyde: To navigate with GPS, first mark your starting point as a waypoint. Enter your destination coordinates or select a point on the map. The GPS receiver triangulates your position using signals from at least 4 satellites. Follow the bearing and distance readings to your waypoint. Always carry a paper map and compass as backup in case of battery failure.\nlex: GPS navigation outdoor use\nlex: GPS coordinates waypoint route handheld\nlex: GPS device map navigation hiking\nvec: how do you use a GPS device or app for outdoor navigation and route finding\nvec: how to read GPS coordinates and set waypoints for hiking or travel"}
-{"input": "how to conduct a scientific experiment", "output": "hyde: A scientific experiment follows these steps: 1) Ask a question, 2) Research background, 3) Form a hypothesis, 4) Design the experiment with independent, dependent, and controlled variables, 5) Collect data through repeated trials, 6) Analyze results using statistics, 7) Draw conclusions. Always include a control group and change only one variable at a time.\nlex: scientific experiment method steps\nlex: scientific method hypothesis variables control\nlex: experiment design procedure data collection\nvec: what are the steps involved in designing and conducting a proper scientific experiment\nvec: how do you set up controls, variables, and data collection for a science experiment"}
-{"input": "digital transformation strategy implementation", "output": "hyde: Digital transformation strategy begins with assessing current technology maturity and identifying high-impact processes for digitization. Build a roadmap with quick wins (cloud migration, workflow automation) and long-term goals (data-driven decision making, AI integration). Assign executive sponsorship, train employees, and measure success with KPIs like cycle time reduction and customer satisfaction scores.\nlex: digital transformation strategy enterprise\nlex: digital transformation implementation roadmap\nlex: enterprise digitalization technology adoption\nvec: how do organizations plan and implement a digital transformation strategy\nvec: what are the key phases and challenges of enterprise digital transformation"}
-{"input": "how to improve sleep quality naturally?", "output": "hyde: Improve sleep quality by maintaining a consistent schedule\u2014go to bed and wake at the same time daily. Keep your bedroom cool (65-68\u00b0F), dark, and quiet. Avoid screens for 1 hour before bed since blue light suppresses melatonin. Limit caffeine after noon. Exercise regularly but not within 3 hours of bedtime. Try magnesium supplements or chamomile tea.\nlex: improve sleep quality natural remedies\nlex: sleep hygiene tips better rest\nlex: insomnia natural treatment melatonin\nvec: what natural methods and sleep hygiene habits improve the quality of sleep\nvec: how can you fall asleep faster and sleep more deeply without medication"}
-{"input": "how to build customer loyalty", "output": "hyde: Build customer loyalty by delivering consistent quality and exceeding expectations. Implement a points-based loyalty program offering meaningful rewards. Personalize communications using purchase history data. Respond to complaints within 24 hours and resolve them generously. Customers who feel valued spend 67% more than new customers. Track Net Promoter Score to measure loyalty over time.\nlex: customer loyalty retention strategies\nlex: loyalty program repeat customers brand\nlex: customer retention engagement satisfaction\nvec: what strategies do businesses use to build long-term customer loyalty and retention\nvec: how do loyalty programs and customer experience drive repeat business"}
-{"input": "what is consequentialism", "output": "hyde: Consequentialism is a moral theory holding that the rightness of an action depends solely on its outcomes. The most well-known form is utilitarianism (Bentham, Mill), which aims to maximize overall happiness or well-being. An action is morally right if it produces the best consequences for the greatest number of people, regardless of the actor's intentions.\nlex: consequentialism ethics moral theory\nlex: consequentialism utilitarianism outcomes\nlex: consequentialist ethics Mill Bentham\nvec: what is consequentialism and how does it evaluate the morality of actions\nvec: how does consequentialist ethics judge right and wrong based on outcomes and consequences"}
-{"input": "how does philosophy approach artificial intelligence?", "output": "hyde: Philosophers approach AI through questions of consciousness (can machines be conscious?), the Chinese Room argument (Searle argued symbol manipulation isn't understanding), the Turing test (behavioral equivalence), and moral status (should sentient AI have rights?). The alignment problem\u2014ensuring AI systems pursue human values\u2014has become a central concern in philosophy of technology.\nlex: philosophy artificial intelligence AI ethics\nlex: AI philosophy consciousness mind machine\nlex: philosophy of AI Turing test Chinese room\nvec: how do philosophers analyze questions about artificial intelligence and machine consciousness\nvec: what philosophical problems does AI raise about minds, consciousness, and moral status"}
-{"input": "how to reduce sugar intake", "output": "hyde: Reduce sugar intake by reading nutrition labels\u2014sugar hides in sauces, bread, and yogurt under names like dextrose, maltose, and high-fructose corn syrup. Replace sugary drinks with water or sparkling water. Eat whole fruit instead of juice. Gradually reduce sugar in coffee over 2 weeks. Protein and fiber at each meal stabilize blood sugar and reduce cravings.\nlex: reduce sugar intake diet\nlex: cut sugar cravings low sugar eating\nlex: sugar consumption health alternatives\nvec: what practical strategies help reduce daily sugar consumption and manage cravings\nvec: how can you cut back on added sugar in your diet without feeling deprived"}
-{"input": "building resilience", "output": "hyde: Building resilience involves developing a growth mindset, maintaining social connections, and practicing self-care. Reframe setbacks as learning opportunities. Cultivate problem-solving skills rather than ruminating on what went wrong. Regular exercise, adequate sleep, and mindfulness strengthen your capacity to recover from stress. Resilient people accept what they cannot control and focus energy on what they can.\nlex: building resilience mental toughness\nlex: emotional resilience coping skills adversity\nlex: psychological resilience strategies stress\nvec: how can individuals build emotional and psychological resilience to handle adversity\nvec: what habits and mindset shifts help develop personal resilience and mental toughness"}
-{"input": "how to attend a town hall meeting", "output": "hyde: Find town hall meetings through your representative's website, social media, or local newspaper. Arrive early to get a seat. Prepare a concise question or statement under 60 seconds. Introduce yourself as a constituent and mention your town. Be respectful and specific\u2014reference a bill number or policy. Many representatives also hold virtual town halls you can join online.\nlex: town hall meeting attend participate\nlex: local government town hall public forum\nlex: town hall meeting preparation questions\nvec: how do you find and attend a local town hall meeting to participate in government\nvec: what should you prepare before attending a town hall meeting with your representative"}
-{"input": "google sheets", "output": "hyde: Google Sheets is a free cloud-based spreadsheet application. Key functions include VLOOKUP for searching data across columns, SUMIF for conditional totals, and QUERY for SQL-like data filtering. Use Ctrl+/ to view keyboard shortcuts. Create pivot tables via Data > Pivot table. Share sheets with collaborators for real-time editing.\nlex: Google Sheets spreadsheet formulas\nlex: Google Sheets tutorial functions tips\nlex: Google Sheets pivot table VLOOKUP\nvec: how to use Google Sheets for data analysis with formulas and functions\nvec: what are the most useful Google Sheets features, formulas, and keyboard shortcuts"}
-{"input": "how to manage digital distractions?", "output": "hyde: Manage digital distractions by turning off non-essential notifications. Use app blockers like Freedom or Cold Turkey during focus periods. Set your phone to Do Not Disturb and place it in another room. Schedule specific times to check email and social media rather than responding in real-time. Use Screen Time (iOS) or Digital Wellbeing (Android) to track and limit usage.\nlex: manage digital distractions focus\nlex: phone screen time notification blocking\nlex: digital distraction productivity apps\nvec: how can you reduce digital distractions from phones and social media to stay focused\nvec: what tools and strategies help manage screen time and notification overload"}
-{"input": "what are stem cells", "output": "hyde: Stem cells are undifferentiated cells that can self-renew and differentiate into specialized cell types. Embryonic stem cells are pluripotent\u2014they can become any cell type. Adult stem cells are multipotent, limited to specific tissues (e.g., hematopoietic stem cells produce blood cells). Induced pluripotent stem cells (iPSCs) are adult cells reprogrammed to an embryonic-like state.\nlex: stem cells types function biology\nlex: stem cell embryonic adult pluripotent\nlex: stem cell therapy regenerative medicine\nvec: what are stem cells and what makes them different from regular cells in the body\nvec: how are stem cells used in medical research and regenerative medicine"}
-{"input": "how does literary geography influence narratives?", "output": "hyde: Literary geography examines how real and imagined places shape narrative meaning. Faulkner's Yoknapatawpha County embodies Southern decay and racial tension. Hardy's Wessex landscapes mirror characters' emotional states. Setting is not just backdrop\u2014it constrains plot, shapes character psychology, and carries symbolic weight. Urban and rural spaces generate distinct narrative possibilities.\nlex: literary geography narrative place setting\nlex: geography literature landscape sense of place\nlex: spatial narrative setting fiction geography\nvec: how does the geography and physical setting of a story influence its narrative and themes\nvec: what role does sense of place and landscape play in shaping literary narratives"}
-{"input": "what were the causes of world war ii", "output": "hyde: World War II resulted from multiple causes: the punitive Treaty of Versailles (1919) imposed crippling reparations on Germany, fueling resentment. The Great Depression created economic desperation exploited by fascist movements. Hitler's expansionist aggression\u2014remilitarizing the Rhineland, annexing Austria, and invading Czechoslovakia\u2014met with appeasement from Britain and France until the invasion of Poland in September 1939.\nlex: causes World War II WWII origins\nlex: WWII causes Treaty Versailles Hitler aggression\nlex: World War 2 causes appeasement fascism\nvec: what were the main political and economic causes that led to World War II\nvec: how did the Treaty of Versailles, fascism, and appeasement contribute to the outbreak of WWII"}
-{"input": "what is the role of faith in spirituality", "output": "hyde: Faith in spirituality serves as the foundation for trust in a reality beyond the material world. It enables surrender to uncertainty and provides a framework for interpreting suffering and purpose. Unlike dogmatic belief, spiritual faith often involves personal experience\u2014a felt sense of connection to something greater that sustains practice through doubt and difficulty.\nlex: faith role spirituality belief\nlex: spiritual faith trust divine religious\nlex: faith spirituality meaning transcendence\nvec: what role does faith play in spiritual practice and personal transcendence\nvec: how does faith relate to spiritual growth and the search for meaning"}
-{"input": "how to contribute to political campaigns", "output": "hyde: Contribute to political campaigns by donating through the candidate's official website (individual contributions are limited to $3,300 per election per candidate in federal races). Volunteer to canvass door-to-door, phone bank, or text bank. Attend campaign events, host a house party, or share the candidate's message on social media. Small-dollar donations are increasingly impactful.\nlex: political campaign contribution donate volunteer\nlex: volunteer political campaign canvassing\nlex: campaign donation fundraising grassroots\nvec: how can individuals contribute to political campaigns through donations or volunteering\nvec: what are the different ways to get involved in a political campaign as a volunteer"}
-{"input": "what is the importance of meditation in spirituality?", "output": "hyde: Meditation is central to nearly every spiritual tradition. In Buddhism, vipassana meditation cultivates insight into impermanence. Hindu dhyana aims for union with Brahman. Christian contemplative prayer seeks direct experience of God. Across traditions, meditation quiets mental chatter, develops present-moment awareness, and opens practitioners to transcendent experience.\nlex: meditation spirituality importance practice\nlex: spiritual meditation mindfulness contemplation\nlex: meditation enlightenment inner peace spiritual\nvec: why is meditation considered essential to many spiritual traditions and practices\nvec: how does meditation contribute to spiritual growth and inner transformation"}
-{"input": "how to prune fruit trees?", "output": "hyde: Prune fruit trees during late winter dormancy (January-March) before buds break. Remove dead, diseased, and crossing branches first. Open the center of the tree to allow sunlight and air circulation. Make cuts at a 45-degree angle just above an outward-facing bud. Remove water sprouts (vertical shoots) and suckers from the base. Never remove more than 25% of the canopy in one season.\nlex: prune fruit trees technique timing\nlex: fruit tree pruning winter dormant cuts\nlex: apple pear tree pruning branches\nvec: when and how should you prune fruit trees for better growth and fruit production\nvec: what pruning techniques are used for apple, pear, and other fruit trees"}
-{"input": "what is conservation biology", "output": "hyde: Conservation biology is the scientific study of preserving biodiversity and preventing extinction. It combines ecology, genetics, and landscape management to protect threatened species and ecosystems. Key approaches include habitat restoration, establishing wildlife corridors, captive breeding programs, and designating protected areas. The field was formalized in the 1980s by Michael Soul\u00e9.\nlex: conservation biology biodiversity preservation\nlex: conservation biology endangered species habitat\nlex: wildlife conservation ecology management\nvec: what is conservation biology and what are its main goals and methods\nvec: how do conservation biologists work to protect endangered species and biodiversity"}
-{"input": "how do muslims observe hajj?", "output": "hyde: Hajj occurs annually during Dhul Hijjah, the 12th month of the Islamic calendar. Pilgrims enter a state of ihram (ritual purity) and wear simple white garments. They perform tawaf (circling the Kaaba seven times), sa'i (walking between Safa and Marwah), stand at Arafat in prayer, and stone the pillars at Mina. Hajj concludes with Eid al-Adha, the Festival of Sacrifice.\nlex: Hajj Muslim pilgrimage Mecca rituals\nlex: Hajj rites Kaaba Arafat Mina Islam\nlex: Islamic pilgrimage Hajj steps obligations\nvec: what are the rituals and steps Muslims follow during the Hajj pilgrimage to Mecca\nvec: how do Muslims prepare for and perform the Hajj pilgrimage"}
-{"input": "digital economy transformation", "output": "hyde: The digital economy encompasses all economic activity enabled by digital technologies. E-commerce, fintech, cloud computing, and platform businesses (Uber, Airbnb) have disrupted traditional industries. By 2025, the digital economy accounts for over 15% of global GDP. Key drivers include mobile internet penetration, AI automation, and the shift to subscription-based and data-driven business models.\nlex: digital economy transformation trends\nlex: digital economy e-commerce fintech platform\nlex: economic digitalization technology market 2025\nvec: how is the digital economy transforming traditional industries and business models\nvec: what are the key drivers and trends of digital economic transformation"}
-{"input": "how does philosophy address systemic injustice?", "output": "hyde: Philosophers address systemic injustice through multiple frameworks. Rawls's veil of ignorance argues just institutions would be designed without knowing one's social position. Critical race theory examines how legal and social structures perpetuate racial inequality. Iris Marion Young distinguished five faces of oppression: exploitation, marginalization, powerlessness, cultural imperialism, and violence.\nlex: philosophy systemic injustice structural oppression\nlex: social justice philosophy racial gender inequality\nlex: systemic injustice Rawls critical race theory\nvec: how do philosophers analyze and propose solutions to systemic injustice and structural oppression\nvec: what philosophical frameworks address racial, gender, and economic systemic inequality"}
-{"input": "how to analyze a political speech", "output": "hyde: Analyze a political speech by examining its rhetorical appeals: ethos (credibility\u2014does the speaker establish authority?), pathos (emotion\u2014what feelings are evoked?), and logos (logic\u2014are arguments supported by evidence?). Identify rhetorical devices like repetition, anaphora, and metaphor. Consider the audience, context, and what the speaker wants listeners to do.\nlex: political speech analysis rhetoric\nlex: speech analysis persuasion ethos pathos logos\nlex: rhetorical analysis political discourse\nvec: what techniques are used to analyze the rhetoric and persuasive strategies in political speeches\nvec: how do you evaluate a political speech for logical arguments, emotional appeals, and credibility"}
-{"input": "how to support clean energy initiatives?", "output": "hyde: Support clean energy by installing solar panels or subscribing to community solar. Switch to a green electricity provider. Contact elected officials to support renewable energy legislation and tax credits. Invest in clean energy funds. Drive electric or hybrid vehicles. Advocate for local building codes that require energy efficiency standards. Join or donate to organizations like the Sierra Club or local clean energy cooperatives.\nlex: clean energy support renewable initiatives\nlex: renewable energy advocacy solar wind policy\nlex: clean energy action community support\nvec: how can individuals and communities support clean energy initiatives and policies\nvec: what actions can people take to promote renewable energy adoption in their area"}
-{"input": "how to diagnose car starting problems?", "output": "hyde: If the car clicks but won't crank, the battery is likely dead\u2014test with a multimeter (should read 12.6V). If the engine cranks but won't start, check fuel delivery (listen for the fuel pump whine) and spark (pull a plug and check for spark). A no-crank, no-click condition often points to a failed starter motor or corroded battery terminals.\nlex: car starting problems diagnosis troubleshoot\nlex: car won't start battery starter ignition\nlex: engine cranks no start fuel spark\nvec: how do you diagnose why a car won't start and identify the root cause\nvec: what are the common reasons a car fails to start and how to troubleshoot them"}
-{"input": "how to identify personal values and beliefs?", "output": "hyde: Identify your core values by reflecting on peak experiences\u2014moments when you felt most fulfilled and authentic. Write down 10-15 values (integrity, creativity, family, freedom) and narrow to your top 5. Ask: what angers you when it's violated? What would you fight for? A values card sort exercise\u2014ranking printed values\u2014can clarify priorities you struggle to articulate.\nlex: identify personal values beliefs self-reflection\nlex: core values assessment life priorities\nlex: personal values exercise self-awareness\nvec: how can you identify and clarify your core personal values and beliefs\nvec: what exercises and reflection methods help discover what you truly value in life"}
-{"input": "what is the significance of the gnostic gospels?", "output": "hyde: The gnostic gospels are early Christian texts discovered at Nag Hammadi, Egypt in 1945. They include the Gospel of Thomas, Gospel of Philip, and Gospel of Truth. These texts reveal diverse beliefs in early Christianity\u2014including the idea that salvation comes through secret knowledge (gnosis) rather than faith alone. They were excluded from the biblical canon as heretical by the 4th century church.\nlex: gnostic gospels significance Nag Hammadi\nlex: gnostic texts Gospel Thomas early Christianity\nlex: gnostic gospels meaning heresy Christian\nvec: what are the gnostic gospels and why are they significant for understanding early Christianity\nvec: how did the Nag Hammadi discovery change our knowledge of gnostic Christian texts"}
-{"input": "russia train", "output": "hyde: The Trans-Siberian Railway is the longest railway line in the world, spanning 9,289 km from Moscow to Vladivostok over 6 days. Book tickets through Russian Railways (RZD) at rzd.ru or through agents like RealRussia. Classes include platzkart (open berth), kupe (4-person compartment), and SV (2-person sleeper). Bring your own food for long journeys.\nlex: Russia train travel Trans-Siberian railway\nlex: Russian railway routes tickets booking\nlex: Trans-Siberian Express Moscow Vladivostok\nvec: how to travel by train in Russia and what are the major railway routes\nvec: what is the Trans-Siberian Railway and how do you book tickets for Russian trains"}
-{"input": "how do you write an effective book review?", "output": "hyde: An effective book review opens with the book's title, author, genre, and a one-sentence summary. Discuss the main themes and the author's writing style. Include specific examples and short quotations. Evaluate strengths and weaknesses honestly. Avoid spoilers for fiction. End with a recommendation and who would enjoy the book. Aim for 500-800 words.\nlex: book review writing effective structure\nlex: write book review summary critique\nlex: book review template opinion analysis\nvec: how do you write a thoughtful and effective book review with summary and analysis\nvec: what structure and elements make a strong book review for publication or school"}
-{"input": "how to practice self-compassion?", "output": "hyde: Kristin Neff defines self-compassion as three components: self-kindness (treating yourself as you would a friend), common humanity (recognizing suffering is shared), and mindfulness (acknowledging pain without over-identifying). Practice by placing your hand on your heart when distressed and saying: \"This is a moment of suffering. Suffering is part of life. May I be kind to myself.\"\nlex: self-compassion practice exercises\nlex: self-compassion Kristin Neff mindfulness\nlex: self-kindness inner critic self-care\nvec: what are practical ways to practice self-compassion and quiet your inner critic\nvec: how does Kristin Neff's framework for self-compassion work in daily life"}
-{"input": "what is the significance of pilgrimage in religion?", "output": "hyde: Pilgrimage holds deep significance across religions. Muslims perform Hajj to Mecca as one of the Five Pillars. Christians journey to Jerusalem, Rome, and Santiago de Compostela. Hindus bathe in the Ganges at Varanasi. The physical journey symbolizes an inner spiritual transformation\u2014leaving ordinary life, enduring hardship, and arriving at a sacred place of renewal and encounter with the divine.\nlex: pilgrimage religion significance spiritual\nlex: religious pilgrimage Mecca Jerusalem Varanasi\nlex: pilgrimage sacred journey faith tradition\nvec: why is pilgrimage important across different religious traditions\nvec: what spiritual significance does the act of pilgrimage carry in major world religions"}
-{"input": "api doc", "output": "hyde: API documentation describes available endpoints, request/response formats, authentication methods, and error codes. RESTful APIs typically document each endpoint with its HTTP method (GET, POST, PUT, DELETE), URL path, query parameters, request body schema, and example responses. Tools like Swagger/OpenAPI generate interactive docs where developers can test endpoints directly.\nlex: API documentation reference endpoints\nlex: REST API docs developer guide\nlex: API documentation Swagger OpenAPI\nvec: how to read and use API documentation for integrating with a web service\nvec: what tools and formats are used for creating and hosting API documentation"}
-{"input": "how to boil an egg perfectly", "output": "hyde: Place eggs in a single layer in a pot and cover with cold water by 1 inch. Bring to a rolling boil, then remove from heat and cover. For soft-boiled: 6-7 minutes. For medium: 9-10 minutes. For hard-boiled: 12-13 minutes. Transfer immediately to an ice bath for 5 minutes. Older eggs (7-10 days) peel more easily than fresh ones.\nlex: boil egg perfectly soft hard\nlex: boiled egg timing minutes technique\nlex: perfect hard soft boiled egg recipe\nvec: how long do you boil an egg for soft-boiled and hard-boiled results\nvec: what is the best technique for boiling eggs so they peel easily and cook perfectly"}
-{"input": "how to create a home office space", "output": "hyde: Set up your home office in a quiet room with natural light. Invest in an ergonomic chair with lumbar support and a desk at elbow height (28-30 inches). Position your monitor at arm's length with the top at eye level. Use a desk lamp with 4000-5000K color temperature. Keep cables organized and add a plant\u2014studies show greenery reduces stress and improves focus.\nlex: home office setup design workspace\nlex: home office desk chair ergonomic\nlex: work from home office organization\nvec: how do you set up a productive and ergonomic home office workspace\nvec: what furniture, lighting, and layout create the best home office environment"}
-{"input": "what are the basic laws of thermodynamics", "output": "hyde: The zeroth law establishes thermal equilibrium: if A and B are each in equilibrium with C, they are in equilibrium with each other. The first law states energy cannot be created or destroyed (conservation of energy). The second law says entropy in a closed system always increases\u2014heat flows from hot to cold, never the reverse. The third law states entropy approaches zero as temperature approaches absolute zero.\nlex: laws of thermodynamics basic physics\nlex: thermodynamics first second third law entropy\nlex: thermodynamic laws energy heat transfer\nvec: what are the four laws of thermodynamics and what does each one describe\nvec: how do the laws of thermodynamics govern energy transfer and entropy"}
-{"input": "how to create a home yoga space", "output": "hyde: Create a home yoga space in an area with at least 6x8 feet of clear floor space. Use a non-slip yoga mat (6mm thickness for comfort). Add blocks, a strap, and a bolster for supported poses. Keep the space clutter-free and at a comfortable temperature (68-72\u00b0F). Soft natural light and a small speaker for calming music enhance the atmosphere.\nlex: home yoga space setup room\nlex: yoga room design mat props space\nlex: home yoga studio create practice area\nvec: how do you set up a dedicated yoga practice space in your home\nvec: what equipment and room setup do you need for a home yoga studio"}
-{"input": "what is the bible?", "output": "hyde: The Bible is the sacred scripture of Christianity, consisting of the Old Testament (39 books in Protestant tradition, 46 in Catholic) and the New Testament (27 books). The Old Testament includes the Torah, historical books, poetry, and prophets, written primarily in Hebrew. The New Testament contains the Gospels, Acts, Epistles, and Revelation, written in Greek during the 1st century CE.\nlex: Bible Christian scripture holy book\nlex: Bible Old New Testament books\nlex: Bible history composition canon\nvec: what is the Bible and how is it organized into Old and New Testaments\nvec: how was the Bible composed and compiled over time as a sacred text"}
-{"input": "how does virtue ethics differ from other ethical theories", "output": "hyde: Virtue ethics (Aristotle) asks \"What kind of person should I be?\" rather than \"What should I do?\" Deontology (Kant) focuses on following moral rules regardless of outcomes. Consequentialism (Mill) judges actions by their results. Virtue ethics emphasizes developing moral character through habit and practical wisdom, while the others prescribe universal principles or calculations.\nlex: virtue ethics vs deontology consequentialism\nlex: virtue ethics comparison ethical theories\nlex: Aristotle virtue ethics Kant Mill contrast\nvec: how does virtue ethics differ from deontological and consequentialist moral theories\nvec: what makes virtue ethics unique compared to rule-based and outcome-based ethical frameworks"}
-{"input": "how genetic research impacts medicine", "output": "hyde: Genetic research has revolutionized medicine through pharmacogenomics (tailoring drug dosages to genetic profiles), gene therapy (correcting defective genes, as in the FDA-approved Luxturna for inherited blindness), and CRISPR gene editing (potential cures for sickle cell disease). Genetic testing identifies cancer risk (BRCA1/2 mutations) enabling early screening and prevention.\nlex: genetic research medicine impact\nlex: genomics personalized medicine gene therapy\nlex: genetic testing pharmacogenomics CRISPR\nvec: how has genetic research transformed medical treatments and diagnosis\nvec: what advances in genomics and gene therapy are changing the future of medicine"}
-{"input": "how to fix car scratches?", "output": "hyde: Car scratches fall into three categories: clear coat scratches (light, fingernail doesn't catch), base coat scratches (deeper, white visible), and primer/metal scratches (deepest). For clear coat scratches, use rubbing compound followed by polish. For deeper scratches, apply touch-up paint matching your car's color code (found on the door jamb sticker), then clear coat and wet sand with 2000-grit.\nlex: fix car scratches paint repair\nlex: car scratch removal polish compound\nlex: auto paint scratch repair DIY\nvec: how do you repair and remove scratches from a car's paint finish at home\nvec: what products and techniques fix different types of car paint scratches"}
-{"input": "how digital currencies work", "output": "hyde: Digital currencies operate on blockchain technology\u2014a decentralized ledger distributed across thousands of computers. When you send Bitcoin, the transaction is broadcast to the network. Miners validate transactions by solving cryptographic puzzles (proof of work), adding them to a block. Each block links to the previous one, creating an immutable chain. Wallets store private keys that prove ownership.\nlex: digital currency cryptocurrency blockchain\nlex: Bitcoin cryptocurrency how it works\nlex: digital currency blockchain mining wallet\nvec: how do digital currencies like Bitcoin use blockchain technology to process transactions\nvec: what is the technical process behind cryptocurrency transactions and mining"}
-{"input": "what is existentialism", "output": "hyde: Existentialism holds that existence precedes essence\u2014humans are not born with a fixed nature but create meaning through choices and actions. Kierkegaard emphasized individual faith and anxiety. Sartre declared we are \"condemned to be free\"\u2014radical freedom brings radical responsibility. Camus confronted the absurd: life has no inherent meaning, yet we must live as if it does.\nlex: existentialism philosophy Sartre Kierkegaard\nlex: existentialism existence precedes essence freedom\nlex: existentialist philosophy meaning absurd\nvec: what is existentialism and what are its core philosophical claims about human existence\nvec: how did Sartre, Kierkegaard, and Camus develop existentialist philosophy"}
-{"input": "what are the key concepts in marxist philosophy", "output": "hyde: Key concepts in Marxist philosophy include historical materialism (material conditions drive historical change), dialectical materialism (contradictions between productive forces and relations of production), class struggle (bourgeoisie vs. proletariat), alienation (workers separated from their labor's product), surplus value (profit extracted from unpaid labor), and ideology (ruling class ideas that justify the status quo).\nlex: Marxist philosophy key concepts\nlex: Marx dialectical materialism class struggle surplus\nlex: Marxism alienation historical materialism ideology\nvec: what are the central ideas and concepts in Karl Marx's philosophical framework\nvec: how do dialectical materialism, class struggle, and alienation function in Marxist thought"}
-{"input": "how to find emotional support", "output": "hyde: Find emotional support through multiple channels: talk to a trusted friend or family member. Contact a therapist through Psychology Today's directory or your insurance provider. Call the 988 Suicide and Crisis Lifeline (dial 988) for immediate help. Join support groups through NAMI or local community centers. Online therapy platforms like BetterHelp and Talkspace offer accessible counseling.\nlex: emotional support resources help\nlex: finding emotional support therapy counseling\nlex: mental health support groups crisis helpline\nvec: where can someone find emotional support during difficult times or mental health challenges\nvec: what resources are available for people seeking emotional support and counseling"}
-{"input": "relationship goals", "output": "hyde: Healthy relationship goals include open and honest communication, maintaining individual identities while building shared experiences, resolving conflicts respectfully without contempt or stonewalling, expressing appreciation daily, supporting each other's personal growth, maintaining physical intimacy, and aligning on major life decisions like finances, children, and career priorities.\nlex: relationship goals healthy couple\nlex: relationship goals communication trust partnership\nlex: healthy relationship habits couples\nvec: what are realistic and healthy relationship goals for couples to work toward\nvec: how do couples build a strong relationship through communication and shared goals"}
-{"input": "what is the role of media in politics", "output": "hyde: The media serves as the \"fourth estate\" in democracy\u2014informing citizens, holding officials accountable, and setting the public agenda. Media framing shapes which issues voters prioritize. Agenda-setting theory shows that what the media covers becomes what the public considers important. The rise of partisan media and social media algorithms has increased polarization by creating ideological echo chambers.\nlex: media role politics influence\nlex: political media coverage news bias\nlex: media politics democracy journalism fourth estate\nvec: what role does the media play in shaping political discourse and public opinion\nvec: how does news coverage and media bias influence political outcomes and democracy"}
-{"input": "what is stream of consciousness", "output": "hyde: Stream of consciousness is a narrative technique that presents a character's continuous flow of thoughts, feelings, and sensory impressions as they occur. Pioneered by writers like Virginia Woolf and James Joyce, it mimics the unstructured way the human mind processes experience.\nlex: stream of consciousness literary technique\nlex: stream of consciousness narrative style\nvec: what does stream of consciousness mean as a writing technique in literature\nvec: how does stream of consciousness narration work in novels and fiction"}
-{"input": "where to find budget travel tips", "output": "hyde: To travel on a budget, book flights midweek, use fare comparison tools like Google Flights or Skyscanner, stay in hostels or use house-sitting platforms, and eat at local markets instead of tourist restaurants.\nlex: budget travel tips cheap flights accommodations\nlex: affordable travel planning money saving\nvec: where can I find reliable tips for traveling on a tight budget\nvec: what are the best resources for planning cheap vacations and budget trips"}
-{"input": "what is fallibilism", "output": "hyde: Fallibilism is the philosophical doctrine that no belief or claim can ever be conclusively justified or proven beyond all doubt. Associated with Charles Sanders Peirce and Karl Popper, it holds that all human knowledge is provisional and subject to revision.\nlex: fallibilism epistemology philosophy\nlex: fallibilism knowledge certainty\nvec: what does fallibilism mean in philosophy and epistemology\nvec: how does fallibilism challenge the idea that knowledge requires absolute certainty"}
-{"input": "auth flow", "output": "hyde: The OAuth 2.0 authorization code flow begins when the client redirects the user to the authorization server. After login, the server returns an authorization code, which the client exchanges for an access token and refresh token via the token endpoint.\nlex: authentication flow OAuth JWT\nlex: authorization code flow token exchange\nlex: auth login session management\nvec: how does an authentication and authorization flow work in web applications\nvec: what are the steps in an OAuth 2.0 authorization code flow"}
-{"input": "where to find datasets for scientific research", "output": "hyde: Public research datasets are available from repositories such as Kaggle, the UCI Machine Learning Repository, NASA's Open Data Portal, NOAA Climate Data, and institutional data archives like Harvard Dataverse and Zenodo.\nlex: scientific research datasets open data repositories\nlex: public datasets academic research download\nvec: where can researchers find free datasets for scientific studies\nvec: what are the best open data repositories for academic and scientific research"}
-{"input": "ui build", "output": "hyde: To build a responsive UI, start by choosing a component framework such as React, Vue, or Svelte. Use a build tool like Vite or Webpack to bundle assets, and style with CSS modules or Tailwind CSS for rapid layout development.\nlex: UI build frontend framework components\nlex: user interface build tooling bundler\nlex: UI component library development\nvec: how to build a user interface for a web or mobile application\nvec: what tools and frameworks are used to build modern frontend UIs"}
-{"input": "how to conserve water at home?", "output": "hyde: Fix leaky faucets promptly\u2014a single drip can waste over 3,000 gallons per year. Install low-flow showerheads and dual-flush toilets, run dishwashers and washing machines only with full loads, and water your garden early in the morning to minimize evaporation.\nlex: water conservation home tips\nlex: reduce household water usage\nvec: what are practical ways to conserve water at home and reduce water bills\nvec: how can I use less water in my house for everyday tasks"}
-{"input": "how to obtain information on state legislation", "output": "hyde: To track state legislation, visit your state legislature's official website, which provides bill text, status, and voting records. Tools like LegiScan and the National Conference of State Legislatures (NCSL) aggregate bills across all 50 states.\nlex: state legislation tracking bill search\nlex: state law lookup legislative database\nvec: how can I find and track state legislation and bills currently being considered\nvec: what websites or tools let you look up state laws and legislative history"}
-{"input": "what shoes for hiking?", "output": "hyde: For day hikes on well-maintained trails, lightweight hiking shoes with good tread provide enough support. For rocky or wet terrain, mid-cut waterproof boots with ankle support and Vibram soles offer better protection and stability.\nlex: hiking shoes boots trail footwear\nlex: best hiking boots waterproof ankle support\nvec: what type of shoes or boots should I wear for hiking on trails\nvec: how to choose the right hiking footwear for different terrain and conditions"}
-{"input": "what is the role of empathy in moral decision-making", "output": "hyde: Empathy allows individuals to imagine the experiences of others, which directly influences moral judgment. Studies show that people who score higher on empathy scales are more likely to make prosocial decisions, though critics like Paul Bloom argue empathy can also bias moral reasoning.\nlex: empathy moral decision-making ethics\nlex: empathy role ethical judgment\nvec: how does empathy influence the way people make moral and ethical decisions\nvec: what role does feeling empathy play in moral reasoning and ethical behavior"}
-{"input": "how to improve self-worth?", "output": "hyde: To improve self-worth, start by identifying and challenging negative self-talk. Practice self-compassion, set small achievable goals, keep a journal of accomplishments, and surround yourself with supportive people. Cognitive behavioral techniques can help reframe core beliefs about your value.\nlex: improve self-worth self-esteem building\nlex: boost self-confidence self-value exercises\nvec: what are effective strategies to improve your sense of self-worth and self-esteem\nvec: how can someone build stronger self-worth through daily habits and mindset shifts"}
-{"input": "what is cryptography", "output": "hyde: Cryptography is the science of encoding and decoding information to prevent unauthorized access. It uses algorithms like AES (symmetric) and RSA (asymmetric) to encrypt plaintext into ciphertext. Only parties with the correct key can decrypt the message back to its original form.\nlex: cryptography encryption decryption\nlex: cryptographic algorithms symmetric asymmetric\nvec: what is cryptography and how does it protect data through encryption\nvec: how do cryptographic systems work to secure communications and information"}
-{"input": "how to photograph reflections", "output": "hyde: To photograph reflections, use a polarizing filter to control glare and increase clarity. Shoot at a low angle to maximize the reflected image in water. For mirror or glass reflections, focus manually on the reflected subject rather than the surface itself.\nlex: photography reflections water glass mirror\nlex: reflection photography techniques composition\nvec: what techniques help capture sharp and creative reflection photographs\nvec: how to photograph reflections in water, mirrors, and glass surfaces"}
-{"input": "how do black holes form", "output": "hyde: Black holes form when a massive star\u2014typically more than 20 solar masses\u2014exhausts its nuclear fuel and can no longer support itself against gravitational collapse. The core implodes past the neutron star stage, compressing into a singularity surrounded by an event horizon.\nlex: black hole formation stellar collapse\nlex: black holes neutron star supernova\nvec: how do black holes form from dying stars and gravitational collapse\nvec: what is the process by which a massive star becomes a black hole"}
-{"input": "how to conduct literature review in research", "output": "hyde: Begin by defining your research question, then search databases like PubMed, Google Scholar, and Web of Science using targeted keywords. Screen abstracts for relevance, organize selected papers by theme, and synthesize findings to identify gaps in existing knowledge.\nlex: literature review research methodology\nlex: academic literature review systematic search\nvec: how do you conduct a thorough literature review for an academic research paper\nvec: what are the steps to search, organize, and synthesize sources in a literature review"}
-{"input": "how do scientists use models", "output": "hyde: Scientists use mathematical, computational, and physical models to represent complex systems. Climate models simulate atmospheric interactions, molecular models predict protein folding, and epidemiological models forecast disease spread. Models are validated against observed data and refined iteratively.\nlex: scientific models simulation prediction\nlex: scientific modeling research methodology\nvec: how do scientists use models to understand and predict natural phenomena\nvec: what types of models do scientists build to test hypotheses and simulate systems"}
-{"input": "how to stage a home for sale", "output": "hyde: Declutter every room, remove personal photos, and use neutral paint colors. Arrange furniture to maximize space and natural light. Add fresh flowers, clean all surfaces, and improve curb appeal with trimmed landscaping and a freshly painted front door.\nlex: home staging tips selling house\nlex: stage house real estate curb appeal\nvec: how do you stage a home to make it more appealing to potential buyers\nvec: what are the key steps to prepare and stage a house before listing it for sale"}
-{"input": "rim fix", "output": "hyde: Minor curb rash on alloy rims can be sanded, filled with body filler, and repainted at home. Bent rims require professional straightening on a hydraulic press. If the rim has cracks, replacement is safer than repair.\nlex: rim repair bent wheel fix\nlex: alloy rim curb damage repair\nlex: car wheel rim straightening\nvec: how to fix a bent or damaged car wheel rim\nvec: can a curb-damaged alloy rim be repaired and how much does it cost"}
-{"input": "what is speculative fiction?", "output": "hyde: Speculative fiction is an umbrella genre that includes science fiction, fantasy, horror, dystopian, and alternate history literature. It explores \"what if\" scenarios by altering known reality\u2014imagining different technologies, social structures, or natural laws.\nlex: speculative fiction genre definition\nlex: speculative fiction sci-fi fantasy dystopia\nvec: what is speculative fiction and what genres does it encompass\nvec: how is speculative fiction different from science fiction and fantasy"}
-{"input": "what are algorithms in computer science", "output": "hyde: An algorithm is a finite sequence of well-defined instructions for solving a class of problems or performing a computation. Common examples include sorting algorithms (quicksort, mergesort), search algorithms (binary search), and graph algorithms (Dijkstra's shortest path).\nlex: algorithms computer science data structures\nlex: algorithm sorting searching complexity\nvec: what are algorithms in computer science and why are they fundamental\nvec: how do computer science algorithms solve problems through step-by-step procedures"}
-{"input": "how to calculate car loan payments?", "output": "hyde: The monthly car loan payment is calculated using the formula: M = P \u00d7 [r(1+r)^n] / [(1+r)^n \u2212 1], where P is the principal, r is the monthly interest rate (annual rate divided by 12), and n is the total number of monthly payments.\nlex: car loan payment calculator formula\nlex: auto loan monthly payment interest rate\nvec: how do you calculate monthly car loan payments based on principal, interest rate, and term\nvec: what formula is used to determine monthly auto loan payments"}
-{"input": "how to recycle electronics?", "output": "hyde: Many retailers like Best Buy and Staples offer free electronics drop-off recycling. Check Earth911.org for local e-waste facilities. Before recycling, wipe personal data from devices. Never throw electronics in regular trash\u2014they contain lead, mercury, and other hazardous materials.\nlex: electronics recycling e-waste disposal\nlex: recycle old computers phones e-waste\nvec: how and where can I recycle old electronics like phones, computers, and TVs\nvec: what is the proper way to dispose of electronic waste responsibly"}
-{"input": "what is the significance of the anti-hero?", "output": "hyde: The anti-hero challenges traditional notions of heroism by embodying flawed, morally ambiguous traits. Characters like Raskolnikov, Walter White, and Deadpool resonate because they reflect the complexity of human nature, blurring the line between virtue and vice.\nlex: anti-hero literary significance character\nlex: anti-hero fiction protagonist flawed\nvec: what is the literary significance of the anti-hero as a character type in fiction\nvec: why are anti-heroes important in storytelling and what do they represent"}
-{"input": "what is the significance of ramadan", "output": "hyde: Ramadan is the ninth month of the Islamic lunar calendar, during which Muslims fast from dawn to sunset. It commemorates the first revelation of the Quran to Prophet Muhammad. The fast cultivates self-discipline, empathy for the hungry, and spiritual closeness to God.\nlex: Ramadan significance Islam fasting\nlex: Ramadan holy month Muslim observance\nvec: what is the spiritual and cultural significance of Ramadan in Islam\nvec: why do Muslims observe Ramadan and what does the month represent"}
-{"input": "where to find landscaping stones?", "output": "hyde: Landscaping stones can be purchased from home improvement stores like Home Depot and Lowe's, local stone yards, and quarries. For bulk orders, landscape supply companies deliver directly. River rock, flagstone, and pea gravel are popular choices for garden paths and borders.\nlex: landscaping stones buy garden rocks\nlex: landscape stone supply yard near me\nvec: where can I buy landscaping stones and decorative rocks for my yard\nvec: what are the best places to find affordable landscaping stones and pavers"}
-{"input": "where to watch latest movies online", "output": "hyde: New theatrical releases typically arrive on streaming platforms 45-90 days after their cinema debut. Netflix, Amazon Prime Video, Disney+, Apple TV+, and Max each acquire exclusive titles. Check JustWatch.com to see which service currently streams a specific movie.\nlex: watch movies online streaming platforms 2026\nlex: latest movies streaming services new releases\nvec: where can I watch the latest movies online through streaming services in 2026\nvec: which streaming platforms have the newest movie releases available to watch"}
-{"input": "what is contemporary art?", "output": "hyde: Contemporary art refers to art produced from the late 20th century to the present day. Unlike modern art (roughly 1860s\u20131970s), contemporary art encompasses a wide range of media\u2014installation, video, digital, and performance\u2014and often engages with identity, globalization, and technology.\nlex: contemporary art definition movement\nlex: contemporary art 21st century modern\nvec: what defines contemporary art and how is it different from modern art\nvec: what are the key characteristics and themes of contemporary art"}
-{"input": "what is the significance of easter", "output": "hyde: Easter celebrates the resurrection of Jesus Christ on the third day after his crucifixion, as described in the New Testament Gospels. It is the most important feast in Christianity, marking the fulfillment of prophecy and the foundation of Christian faith in life after death.\nlex: Easter significance Christianity resurrection\nlex: Easter religious meaning Christian holiday\nvec: what is the religious and cultural significance of Easter in Christianity\nvec: why is Easter considered the most important Christian holiday"}
-{"input": "how to install peel and stick wallpaper", "output": "hyde: Clean the wall surface and let it dry completely. Start at the top, peeling back a few inches of backing at a time. Use a smoothing tool to press the wallpaper flat, working from the center outward to remove air bubbles. Trim excess at the ceiling and baseboard with a sharp blade.\nlex: peel and stick wallpaper installation\nlex: self-adhesive wallpaper apply walls\nvec: what are the steps to properly install peel and stick wallpaper on a wall\nvec: how do you apply self-adhesive wallpaper without bubbles or wrinkles"}
-{"input": "how do behavioral scientists study behavior", "output": "hyde: Behavioral scientists study behavior through controlled experiments, field observations, surveys, and neuroimaging. Randomized controlled trials isolate variables, while observational studies capture behavior in natural settings. Eye-tracking and fMRI provide physiological data on decision-making processes.\nlex: behavioral science research methods\nlex: behavioral psychology experiments observation\nvec: what methods do behavioral scientists use to study and measure human behavior\nvec: how do behavioral researchers design experiments and observational studies"}
-{"input": "soccer training drills", "output": "hyde: Set up a cone dribbling course with 10 cones spaced 2 meters apart. Players weave through using inside and outside touches at speed. For passing accuracy, pair players 15 meters apart and practice one-touch passes, alternating feet. Finish sessions with 1v1 attacking drills near the box.\nlex: soccer training drills exercises\nlex: football practice drills passing shooting\nvec: what are effective soccer training drills for improving skills and fitness\nvec: which soccer drills help players improve dribbling, passing, and shooting"}
-{"input": "how to invest in the stock market", "output": "hyde: To start investing, open a brokerage account with a platform like Fidelity, Schwab, or Vanguard. Begin with low-cost index funds that track the S&P 500 for broad diversification. Invest regularly through dollar-cost averaging and avoid trying to time the market.\nlex: stock market investing beginner guide\nlex: invest stocks brokerage portfolio\nvec: how do beginners start investing in the stock market and building a portfolio\nvec: what are the basic steps to open a brokerage account and buy stocks"}
-{"input": "what is the role of prophets in christianity?", "output": "hyde: In Christianity, prophets are individuals called by God to deliver divine messages and foretell events. Old Testament prophets like Isaiah and Jeremiah predicted the coming of the Messiah. In the New Testament, Jesus is seen as the ultimate fulfillment of prophetic tradition.\nlex: prophets Christianity role Bible\nlex: Christian prophets Old Testament New Testament\nvec: what role do prophets play in Christian theology and scripture\nvec: how are prophets understood in Christianity compared to other Abrahamic religions"}
-{"input": "what is a no-dig garden?", "output": "hyde: A no-dig garden is built by layering organic materials\u2014cardboard, compost, straw, and leaf mold\u2014directly on top of existing ground. This preserves soil structure, encourages worm activity, suppresses weeds, and builds fertile topsoil without the labor of digging or tilling.\nlex: no-dig garden method sheet mulching\nlex: no-dig gardening lasagna layering technique\nvec: what is a no-dig garden and how do you build one without tilling the soil\nvec: how does the no-dig gardening method work to improve soil health"}
-{"input": "how to raise startup capital", "output": "hyde: Startup capital can come from bootstrapping, friends and family, angel investors, venture capital firms, crowdfunding platforms like Kickstarter, or government grants. Prepare a pitch deck with your business model, market size, traction metrics, and financial projections before approaching investors.\nlex: raise startup capital funding sources\nlex: startup fundraising seed investors venture capital\nvec: what are the main ways to raise capital for a new startup company\nvec: how do founders raise seed funding and early-stage investment for a startup"}
-{"input": "how to save money effectively", "output": "hyde: Follow the 50/30/20 rule: allocate 50% of income to needs, 30% to wants, and 20% to savings. Automate transfers to a high-yield savings account on payday. Track spending with an app, cancel unused subscriptions, and build a 3-6 month emergency fund before investing.\nlex: save money tips budgeting strategies\nlex: effective saving habits personal finance\nvec: what are effective strategies and habits for saving money consistently\nvec: how can I create a budget and save more money each month"}
-{"input": "what is the problem of evil", "output": "hyde: The problem of evil asks: if an omnipotent, omniscient, and benevolent God exists, why does suffering occur? Epicurus first formulated this dilemma. Theodicies like the free will defense and soul-making theodicy attempt to reconcile God's existence with the reality of evil.\nlex: problem of evil philosophy theodicy\nlex: problem of evil God suffering\nvec: what is the philosophical problem of evil and how does it challenge belief in God\nvec: how do philosophers and theologians respond to the problem of evil and suffering"}
-{"input": "how to register to vote online", "output": "hyde: Most U.S. states offer online voter registration at vote.org or through the secretary of state's website. You'll need your state-issued ID number or last four digits of your Social Security number, your date of birth, and current residential address.\nlex: register to vote online voter registration\nlex: online voter registration state website\nvec: how can I register to vote online in my state\nvec: what do I need to register to vote through an online voter registration system"}
-{"input": "what are the principles of evolution", "output": "hyde: Evolution operates through four key principles: variation (individuals differ genetically), inheritance (traits pass from parents to offspring), selection (individuals better adapted to their environment survive and reproduce more), and time (changes accumulate across generations, leading to speciation).\nlex: principles of evolution natural selection\nlex: evolution theory variation inheritance selection\nvec: what are the core principles of biological evolution by natural selection\nvec: how do variation, inheritance, and selection drive the process of evolution"}
-{"input": "explain the ten commandments", "output": "hyde: The Ten Commandments, given to Moses on Mount Sinai, include: (1) You shall have no other gods before me, (2) You shall not make idols, (3) You shall not take the Lord's name in vain, (4) Remember the Sabbath, (5) Honor your father and mother, (6) You shall not murder.\nlex: Ten Commandments Bible Exodus Deuteronomy\nlex: Ten Commandments meaning list\nvec: what are the Ten Commandments and what does each one mean\nvec: how are the Ten Commandments explained in the Bible and interpreted by different faiths"}
-{"input": "how to pose people for portraits", "output": "hyde: Have your subject shift their weight to one foot and angle their body 45 degrees from the camera. Turn the chin slightly down and toward the light. For hands, give them something to hold or rest them naturally. Ask them to breathe out before the shot to relax their expression.\nlex: portrait posing techniques photography\nlex: portrait photography poses guide\nvec: what are effective ways to pose people for flattering portrait photographs\nvec: how do professional photographers direct subjects into natural-looking portrait poses"}
-{"input": "css grid", "output": "hyde: .container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; } .item-wide { grid-column: span 2; } CSS Grid allows two-dimensional layout control with explicit row and column definitions, making it ideal for full-page layouts.\nlex: CSS grid layout template columns rows\nlex: CSS grid container gap alignment\nlex: CSS grid-template-areas responsive\nvec: how to create page layouts using CSS grid with rows and columns\nvec: what are the key CSS grid properties for building responsive layouts"}
-{"input": "how to go plastic-free in the kitchen?", "output": "hyde: Replace plastic wrap with beeswax wraps or silicone lids. Store food in glass jars or stainless steel containers. Use bar dish soap instead of bottled liquid soap. Buy in bulk using cloth bags, and choose wooden or bamboo utensils over plastic ones.\nlex: plastic-free kitchen alternatives\nlex: reduce plastic kitchen reusable containers\nvec: how can I eliminate single-use plastics from my kitchen\nvec: what are the best plastic-free alternatives for food storage and kitchen items"}
-{"input": "what are the teachings of confucius?", "output": "hyde: Confucius emphasized ren (benevolence), li (ritual propriety), xiao (filial piety), and junzi (the ideal of a morally cultivated person). He taught that social harmony comes from fulfilling one's role in relationships\u2014ruler to subject, parent to child, husband to wife, elder to younger, and friend to friend.\nlex: Confucius teachings Confucianism philosophy\nlex: Confucian ethics filial piety ren li\nvec: what are the main teachings and ethical principles of Confucius\nvec: how did Confucius define virtue, proper conduct, and social harmony"}
-{"input": "what is performance art?", "output": "hyde: Performance art is a live, time-based art form in which the artist's body and actions are the medium. Emerging in the 1960s and 70s, artists like Marina Abramovi\u0107, Yoko Ono, and Joseph Beuys blurred boundaries between art and life, often engaging audiences directly.\nlex: performance art definition live medium\nlex: performance art artists examples history\nvec: what is performance art and how does it differ from traditional visual art\nvec: what are the defining characteristics and famous examples of performance art"}
-{"input": "how do vaccines work", "output": "hyde: Vaccines introduce a weakened, inactivated, or fragment form of a pathogen (or its mRNA blueprint) into the body. The immune system recognizes it as foreign, produces antibodies, and creates memory cells. If exposed to the real pathogen later, the immune system responds rapidly.\nlex: vaccines immune system antibodies mechanism\nlex: how vaccines work immunization\nvec: how do vaccines train the immune system to fight diseases\nvec: what is the biological mechanism by which vaccines provide immunity"}
-{"input": "ai-driven marketing", "output": "hyde: AI-driven marketing uses machine learning to segment audiences, predict customer behavior, and personalize content at scale. Tools like predictive analytics, chatbots, and recommendation engines increase conversion rates. A/B testing is automated, and ad spend is optimized in real time by algorithms.\nlex: AI-driven marketing automation personalization\nlex: artificial intelligence marketing campaigns analytics\nvec: how is artificial intelligence being used to drive marketing strategies and campaigns\nvec: what AI tools and techniques improve marketing personalization and customer targeting"}
-{"input": "how to pursue a career in scientific research", "output": "hyde: A career in scientific research typically starts with a bachelor's degree in a STEM field, followed by a PhD program where you specialize in a research area. After completing your doctorate, postdoctoral positions provide additional training before applying for faculty or industry research roles.\nlex: scientific research career path academia\nlex: career scientist PhD research position\nvec: what steps should I take to pursue a career in scientific research\nvec: what education and experience are needed to become a professional researcher in science"}
-{"input": "what is cryptocurrency trading?", "output": "hyde: Cryptocurrency trading involves buying and selling digital assets like Bitcoin and Ethereum on exchanges. Traders use market orders, limit orders, and stop-losses. Strategies range from long-term holding (HODLing) to day trading based on technical analysis of price charts and volume indicators.\nlex: cryptocurrency trading buy sell exchange\nlex: crypto trading Bitcoin Ethereum strategies\nvec: what is cryptocurrency trading and how do people buy and sell digital currencies\nvec: how does cryptocurrency trading work on exchanges like Coinbase and Binance"}
-{"input": "what is calculus used for", "output": "hyde: Calculus is used to model rates of change and accumulation. In physics, derivatives describe velocity and acceleration; integrals calculate areas and volumes. Engineers use calculus to design structures, economists model marginal cost and revenue, and biologists model population growth with differential equations.\nlex: calculus applications real world uses\nlex: calculus derivatives integrals physics engineering\nvec: what are the real-world applications of calculus in science and engineering\nvec: how is calculus used in physics, economics, and other fields"}
-{"input": "how does moral philosophy address human rights", "output": "hyde: Moral philosophy grounds human rights through several frameworks: natural law theory holds rights are inherent to human nature, Kantian ethics argues every person deserves dignity as a rational agent, and utilitarianism supports rights as instruments that maximize overall well-being.\nlex: moral philosophy human rights ethics\nlex: philosophical foundations human rights natural rights\nvec: how does moral philosophy provide a foundation for human rights\nvec: what ethical theories support the concept of universal human rights"}
-{"input": "how to choose a writing genre?", "output": "hyde: Consider what you love to read\u2014your favorite genre as a reader often translates well. Experiment by writing short pieces in different genres: fantasy, mystery, literary fiction, memoir. Pay attention to which genre energizes you and where your voice feels most natural.\nlex: choose writing genre fiction nonfiction\nlex: writing genre selection author style\nvec: how should a writer choose the best genre for their writing style and interests\nvec: what factors help an author decide which literary genre to write in"}
-{"input": "how to write a standout personal statement", "output": "hyde: Open with a vivid, specific anecdote\u2014not a generic quote. Show rather than tell by describing experiences that shaped your goals. Connect your past to your intended field of study. Be authentic; admissions officers read thousands of essays and recognize genuine voice immediately.\nlex: personal statement writing tips college application\nlex: standout personal statement essay graduate school\nvec: how do you write a compelling personal statement for college or graduate school admissions\nvec: what makes a personal statement stand out to admissions committees"}
-{"input": "how to improve sleep quality", "output": "hyde: Maintain a consistent sleep schedule, even on weekends. Keep your bedroom cool (65-68\u00b0F), dark, and quiet. Avoid screens for 30 minutes before bed. Limit caffeine after noon. Regular exercise improves sleep, but finish workouts at least 3 hours before bedtime.\nlex: improve sleep quality tips habits\nlex: better sleep hygiene insomnia remedies\nvec: what are proven ways to improve sleep quality and fall asleep faster\nvec: how can I develop better sleep habits to get more restful sleep"}
-{"input": "how to stay updated on global affairs", "output": "hyde: Follow reputable outlets like Reuters, AP News, BBC World, and The Economist for balanced global coverage. Use RSS readers or news aggregator apps like Feedly. Subscribe to daily briefing newsletters such as Morning Brew or The Daily from the New York Times.\nlex: global affairs news sources current events\nlex: world news reliable sources daily updates\nvec: what are the best ways to stay informed about global affairs and world news\nvec: which news sources and tools help you keep up with international current events"}
-{"input": "what are the characteristics of renaissance architecture?", "output": "hyde: Renaissance architecture, flourishing in 15th-16th century Italy, revived classical Greek and Roman forms. Key features include symmetrical facades, round arches, columns with Corinthian capitals, hemispherical domes (as in Brunelleschi's Florence Cathedral), and harmonious proportions based on geometry.\nlex: Renaissance architecture characteristics features\nlex: Renaissance architecture columns dome symmetry\nvec: what are the defining characteristics of Renaissance architecture in Europe\nvec: how did Renaissance architects use symmetry, columns, and domes in their buildings"}
-{"input": "what are color modes in photography?", "output": "hyde: Digital photographs use RGB color mode for screens, with sRGB as the standard web color space and Adobe RGB offering a wider gamut for print work. CMYK is used for commercial printing. ProPhoto RGB captures the widest range but requires careful color management to avoid banding.\nlex: color modes photography RGB CMYK sRGB\nlex: photography color space Adobe RGB ProPhoto\nvec: what are the different color modes and color spaces used in digital photography\nvec: how do RGB, sRGB, Adobe RGB, and CMYK color modes affect photo editing and printing"}
-{"input": "how to create a zen garden?", "output": "hyde: A zen garden (karesansui) uses raked white gravel or sand to represent water, with carefully placed rocks symbolizing mountains or islands. Rake parallel lines for calm or concentric circles around rocks. Keep the design minimal\u2014moss, a few stones, and clean gravel on a flat rectangular area.\nlex: zen garden create Japanese rock garden\nlex: zen garden design sand gravel stones\nvec: how do you design and create a traditional Japanese zen rock garden\nvec: what materials and layout principles are used in building a zen garden"}
-{"input": "mountain peak", "output": "hyde: Mount Everest stands at 8,849 meters (29,032 ft), the highest peak on Earth. K2 at 8,611 m and Kangchenjunga at 8,586 m follow. For trekkers, peaks like Mont Blanc (4,808 m) and Mount Kilimanjaro (5,895 m) are accessible without technical climbing experience.\nlex: mountain peak climbing summit elevation\nlex: highest mountain peaks world list\nlex: mountain peak hiking trails\nvec: what are the highest mountain peaks in the world and their elevations\nvec: how to plan a hike or climb to a mountain peak summit"}
-{"input": "how to follow campaign finance laws", "output": "hyde: Campaign finance laws require candidates to register with the FEC, disclose all contributions and expenditures, and adhere to contribution limits. Individual donors can give up to $3,300 per candidate per election. PACs and Super PACs have separate rules. File quarterly reports electronically.\nlex: campaign finance laws compliance regulations\nlex: campaign finance rules FEC political donations\nvec: how do political candidates and organizations comply with campaign finance laws\nvec: what are the key campaign finance regulations and reporting requirements in the U.S."}
-{"input": "how to advocate for education reform", "output": "hyde: Start by attending school board meetings and building relationships with elected officials. Join or form coalitions with parent groups, teachers' unions, and nonprofits. Write op-eds, organize town halls, and use data on student outcomes to make evidence-based arguments for specific policy changes.\nlex: education reform advocacy strategies\nlex: advocate education policy change\nvec: how can individuals effectively advocate for education reform in their community\nvec: what strategies work for pushing education policy changes at the local and state level"}
-{"input": "how do philosophical arguments work", "output": "hyde: A philosophical argument consists of premises (claims assumed to be true) and a conclusion that follows from them. In a deductive argument, if the premises are true and the form is valid, the conclusion must be true. An argument is sound when it is both valid and its premises are actually true.\nlex: philosophical arguments logic premises conclusion\nlex: philosophical reasoning deductive inductive\nvec: how are philosophical arguments structured with premises and conclusions\nvec: what makes a philosophical argument valid or sound in logic"}
-{"input": "fix roof", "output": "hyde: For minor roof leaks, locate the source from the attic during rain. Replace cracked or missing shingles by lifting surrounding shingles, removing nails, and sliding in a new one. Apply roofing cement under flashing for small gaps. For structural damage or large areas, hire a licensed roofer.\nlex: roof repair fix leak shingles\nlex: roof damage repair DIY contractor\nlex: fix roof leak flashing\nvec: how to repair a damaged or leaking roof at home\nvec: when should you DIY a roof fix versus hiring a professional roofer"}
-{"input": "how to implement csr initiatives", "output": "hyde: Start by conducting a materiality assessment to identify social and environmental issues relevant to your business and stakeholders. Set measurable goals aligned with the UN Sustainable Development Goals. Allocate budget, assign a dedicated CSR team, and report progress annually using GRI standards.\nlex: CSR initiatives corporate social responsibility implementation\nlex: corporate social responsibility programs strategy\nvec: how do companies implement corporate social responsibility initiatives effectively\nvec: what steps should a business take to launch a CSR program"}
-{"input": "how to meditate for beginners", "output": "hyde: Sit comfortably with your back straight. Close your eyes and focus on your breath\u2014notice each inhale and exhale. When thoughts arise, gently return attention to your breathing without judgment. Start with 5 minutes daily and gradually increase. Consistency matters more than duration.\nlex: meditation beginners guide mindfulness\nlex: beginner meditation techniques breathing\nvec: how do beginners start a daily meditation practice from scratch\nvec: what are simple meditation techniques for people who have never meditated before"}
-{"input": "how to boost immune system naturally", "output": "hyde: Eat a diet rich in fruits, vegetables, and lean protein to supply vitamins C, D, and zinc. Exercise moderately for 30 minutes most days. Sleep 7-9 hours per night. Manage stress through meditation or yoga. Fermented foods like yogurt and kimchi support gut health, which is linked to immune function.\nlex: boost immune system natural remedies\nlex: strengthen immune system diet exercise sleep\nvec: what natural methods help strengthen the immune system\nvec: which foods, supplements, and lifestyle habits boost immune function naturally"}
-{"input": "how to bake a cake from scratch", "output": "hyde: Preheat oven to 350\u00b0F (175\u00b0C). Mix 2 cups flour, 1.5 cups sugar, 3 eggs, 1 cup butter, 1 cup milk, 2 tsp baking powder, 1 tsp vanilla. Pour into greased 9-inch pans and bake 30-35 minutes until a toothpick comes out clean. Cool before frosting.\nlex: bake cake from scratch recipe\nlex: homemade cake recipe flour butter eggs\nvec: how do you bake a basic cake from scratch without a box mix\nvec: what is a simple recipe for baking a homemade vanilla or chocolate cake"}
-{"input": "what are the main festivals in hinduism", "output": "hyde: Diwali, the festival of lights, celebrates the triumph of light over darkness and honors Lakshmi. Holi marks the arrival of spring with colored powders. Navratri is a nine-night festival honoring the goddess Durga. Ganesh Chaturthi celebrates the birth of Lord Ganesha with elaborate processions.\nlex: Hindu festivals Diwali Holi Navratri\nlex: Hinduism religious festivals celebrations\nvec: what are the major festivals celebrated in Hinduism and their significance\nvec: which Hindu festivals are the most widely observed and what do they celebrate"}
-{"input": "how to replace car air filter?", "output": "hyde: Open the hood and locate the air filter housing\u2014usually a black plastic box near the engine. Unclip the latches, remove the old filter, and note its orientation. Insert the new filter with the rubber rim facing up, close the housing, and secure the clips. Replace every 12,000-15,000 miles.\nlex: replace car air filter engine cabin\nlex: car air filter replacement DIY steps\nvec: how do you replace the engine air filter in a car yourself\nvec: what are the steps to change a car's air filter at home without a mechanic"}
-{"input": "digital transformation strategies", "output": "hyde: A digital transformation strategy begins with assessing current processes and identifying bottlenecks. Prioritize quick wins like automating manual workflows. Migrate infrastructure to cloud platforms, adopt data analytics for decision-making, and invest in employee training. Measure ROI with KPIs tied to business outcomes.\nlex: digital transformation strategy enterprise\nlex: digital transformation cloud automation AI\nvec: what strategies do organizations use to drive successful digital transformation\nvec: how do enterprises plan and execute a digital transformation initiative"}
-{"input": "how to argument for climate action", "output": "hyde: The scientific consensus is clear: global temperatures have risen 1.1\u00b0C since pre-industrial levels, causing more extreme weather, rising seas, and ecosystem collapse. Economic analyses show that the cost of inaction\u2014estimated at $23 trillion by 2050\u2014far exceeds the investment needed for a clean energy transition.\nlex: argue climate action policy advocacy\nlex: climate change argument evidence persuasion\nvec: how can you make a compelling argument for urgent climate action\nvec: what evidence and reasoning support the case for strong climate change policies"}
-{"input": "how does human activity affect climate change", "output": "hyde: Human activities\u2014primarily burning fossil fuels for energy, deforestation, and industrial agriculture\u2014release greenhouse gases like CO2 and methane into the atmosphere. Since 1850, atmospheric CO2 has risen from 280 to over 420 ppm, trapping heat and raising global average temperatures by 1.1\u00b0C.\nlex: human activity climate change greenhouse gas emissions\nlex: anthropogenic climate change fossil fuels deforestation\nvec: how do human activities like burning fossil fuels contribute to climate change\nvec: what is the scientific evidence linking human activity to global warming"}
-{"input": "how to create a wildlife-friendly garden?", "output": "hyde: Plant native flowering species to attract pollinators\u2014coneflower, milkweed, and lavender support bees and butterflies. Add a shallow water dish, leave leaf litter for insects, install nest boxes for birds, and avoid pesticides. A log pile provides habitat for beetles, frogs, and hedgehogs.\nlex: wildlife-friendly garden habitat plants\nlex: garden attract birds bees butterflies\nvec: how can I design a garden that attracts and supports local wildlife\nvec: what plants and features make a garden friendly to birds, bees, and butterflies"}
-{"input": "how to prepare for a long hike", "output": "hyde: Train by walking with a loaded pack for progressively longer distances over 4-6 weeks. Pack the ten essentials: navigation, sun protection, insulation, illumination, first aid, fire, tools, nutrition, hydration, and shelter. Check the weather forecast and file a trip plan with someone you trust.\nlex: long hike preparation gear checklist\nlex: hiking preparation training nutrition hydration\nvec: how should I prepare physically and logistically for a long day hike or multi-day trek\nvec: what gear, training, and planning is needed before a long hiking trip"}
-{"input": "how to use photoshop for digital painting?", "output": "hyde: In Photoshop, start a digital painting by creating a new canvas at 300 DPI. Use the Brush tool (B) with pressure sensitivity enabled on a graphics tablet. Block in shapes on separate layers, then refine details. Use layer blend modes like Multiply for shadows and Screen for highlights.\nlex: Photoshop digital painting brushes techniques\nlex: digital painting Photoshop tutorial layers\nvec: how do you use Adobe Photoshop for digital painting and illustration\nvec: what Photoshop tools, brushes, and techniques are essential for digital painting"}
-{"input": "what changed in kubernetes latest version", "output": "hyde: Kubernetes v1.32 introduced improvements to sidecar containers (now GA), enhanced pod scheduling with dynamic resource allocation, graduated the Gateway API to stable, and deprecated legacy in-tree cloud provider integrations in favor of external cloud controller managers.\nlex: Kubernetes latest version changes release notes 2025 2026\nlex: Kubernetes new features changelog update\nvec: what are the notable changes and new features in the latest Kubernetes release\nvec: what major features were added or deprecated in the most recent Kubernetes version in 2025 or 2026"}
-{"input": "what is e-commerce?", "output": "hyde: E-commerce (electronic commerce) is the buying and selling of goods or services over the internet. Business models include B2C (Amazon, Shopify stores), B2B (Alibaba), C2C (eBay, Etsy), and D2C (brands selling directly). Transactions are processed through payment gateways like Stripe or PayPal.\nlex: e-commerce electronic commerce online shopping\nlex: e-commerce platform business model\nvec: what is e-commerce and how do online businesses sell products and services\nvec: how does electronic commerce work from storefront to payment processing"}
-{"input": "what is meant by 'the good life' in philosophy", "output": "hyde: In Aristotelian ethics, the good life (eudaimonia) is achieved through the practice of virtue and the exercise of reason over a complete lifetime. It is not mere pleasure but a state of flourishing\u2014living in accordance with one's highest capacities within a community.\nlex: the good life philosophy eudaimonia ethics\nlex: philosophical good life Aristotle virtue happiness\nvec: what does the concept of the good life mean in philosophy and ethics\nvec: how did Aristotle and other philosophers define what it means to live a good life"}
-{"input": "how to obtain information on federal legislation", "output": "hyde: Congress.gov is the official source for federal legislation. Search by bill number, keyword, or sponsor. Each bill page shows full text, status, cosponsors, committee actions, and vote records. GovTrack.us and ProPublica's Congress API provide additional analysis and tracking tools.\nlex: federal legislation tracking Congress bills\nlex: federal law lookup Congress.gov bill status\nvec: how can I find information about federal legislation and bills in the U.S. Congress\nvec: what resources are available to track federal bills and laws through the legislative process"}
-{"input": "what are the elements of classical music?", "output": "hyde: Classical music is built on melody (a sequence of notes forming a theme), harmony (chords supporting the melody), rhythm (the timing and pattern of notes), dynamics (volume changes), and form (the structure, such as sonata, rondo, or theme and variations).\nlex: classical music elements melody harmony rhythm\nlex: classical music composition structure form\nvec: what are the fundamental elements and structures of classical music\nvec: how do melody, harmony, rhythm, and form work together in classical music compositions"}
-{"input": "what are celtic traditions and customs", "output": "hyde: Celtic traditions include seasonal festivals marking the agricultural calendar: Samhain (Oct 31) honored the dead and the start of winter, Imbolc (Feb 1) marked spring's return, Beltane (May 1) celebrated fertility with bonfires, and Lughnasadh (Aug 1) was the harvest festival. Many survive in Irish and Scottish culture today.\nlex: Celtic traditions customs festivals Ireland Scotland\nlex: Celtic culture Samhain Beltane druids\nvec: what are the traditional customs and cultural practices of the Celtic peoples\nvec: which Celtic traditions like Samhain and Beltane are still observed today"}
-{"input": "hash code", "output": "hyde: A hash code is an integer value computed from an object's data, used to quickly locate it in a hash table. In Java, every object has a hashCode() method. For HashMap, objects with equal hashCodes go to the same bucket, and equals() resolves collisions. Override both hashCode() and equals() together.\nlex: hash code function programming\nlex: hashCode Java hash table implementation\nlex: cryptographic hash function SHA MD5\nvec: what is a hash code and how are hash functions used in programming\nvec: how does the hashCode method work in Java for hash tables and collections"}
-{"input": "what is artificial intelligence", "output": "hyde: Artificial intelligence (AI) is the simulation of human intelligence by computer systems. It encompasses machine learning (learning from data), natural language processing (understanding language), and computer vision (interpreting images). AI systems are trained on large datasets to recognize patterns and make predictions.\nlex: artificial intelligence AI machine learning\nlex: artificial intelligence definition applications\nvec: what is artificial intelligence and how does it work at a fundamental level\nvec: what are the main types and applications of artificial intelligence technology"}
-{"input": "what is interfaith dialogue?", "output": "hyde: Interfaith dialogue is the cooperative interaction between people of different religious traditions, aimed at mutual understanding rather than conversion. Organizations like the Parliament of the World's Religions bring together leaders from Christianity, Islam, Judaism, Hinduism, Buddhism, and others to discuss shared values and address social issues.\nlex: interfaith dialogue religious traditions\nlex: interfaith dialogue ecumenism interreligious\nvec: what is interfaith dialogue and why is it important for religious communities\nvec: how do different religious groups engage in interfaith dialogue to promote understanding"}
-{"input": "what is darwin's theory of evolution", "output": "hyde: In On the Origin of Species (1859), Charles Darwin proposed that species evolve over generations through natural selection. Organisms with traits better suited to their environment survive and reproduce more, passing those advantageous traits to offspring. Over time, this leads to new species.\nlex: Darwin theory evolution natural selection\nlex: Darwin Origin of Species evolution\nvec: what is Charles Darwin's theory of evolution by natural selection\nvec: how did Darwin explain the origin of species through natural selection and adaptation"}
-{"input": "what is permaculture gardening?", "output": "hyde: Permaculture gardening applies ecological design principles to create self-sustaining food systems. It uses zones radiating from the home, guilds of companion plants, water harvesting with swales, and polyculture instead of monoculture. The goal is a garden that produces food with minimal external inputs.\nlex: permaculture gardening design principles\nlex: permaculture garden sustainable agriculture\nvec: what is permaculture gardening and how does it apply ecological design principles\nvec: how do you design a permaculture garden that mimics natural ecosystems"}
-{"input": "how to practice gratitude", "output": "hyde: Keep a gratitude journal and write three specific things you're grateful for each night\u2014not vague statements, but concrete moments. Write a gratitude letter to someone who impacted you. During meals, pause to appreciate the food. Research shows consistent gratitude practice reduces anxiety and improves sleep.\nlex: gratitude practice daily journal techniques\nlex: practicing gratitude mental health benefits\nvec: what are effective ways to practice gratitude in everyday life\nvec: how does a daily gratitude practice improve mental health and well-being"}
-{"input": "what are digital credentials?", "output": "hyde: Digital credentials are electronic records that verify a person's qualifications, skills, or achievements. They include digital badges, certificates, and micro-credentials issued by platforms like Credly or Accredible. Verifiable credentials use cryptographic signatures so employers can instantly confirm authenticity without contacting the issuer.\nlex: digital credentials badges certificates verification\nlex: digital credentials blockchain verifiable\nvec: what are digital credentials and how are they used to verify qualifications\nvec: how do digital badges and verifiable credentials work for education and employment"}
-{"input": "how does culture influence ethics", "output": "hyde: Culture shapes ethics by defining what a society considers right or wrong. Collectivist cultures may prioritize group harmony and duty to family, while individualist cultures emphasize personal autonomy and rights. Cultural relativism argues that moral standards are culturally defined, while universalists hold that some ethical principles transcend culture.\nlex: culture ethics moral values influence\nlex: cultural relativism ethics cross-cultural morality\nvec: how does culture shape people's ethical beliefs and moral values\nvec: what is the relationship between cultural norms and ethical decision-making"}
-{"input": "what is stream of consciousness?", "output": "hyde: Stream of consciousness is a literary method that captures the continuous flow of a character's thoughts, memories, and perceptions without conventional structure. James Joyce's Ulysses and Virginia Woolf's Mrs Dalloway are landmark examples, using free-flowing prose, associative leaps, and minimal punctuation.\nlex: stream of consciousness writing technique\nlex: stream of consciousness Joyce Woolf literature\nvec: what is the stream of consciousness technique in literature and who pioneered it\nvec: how do authors use stream of consciousness to portray inner thoughts in fiction"}
-{"input": "how do body systems work together", "output": "hyde: The circulatory system delivers oxygen absorbed by the respiratory system to muscles controlled by the nervous system. The digestive system breaks down nutrients that the circulatory system distributes. The endocrine system releases hormones that regulate metabolism, growth, and the immune response.\nlex: body systems interaction physiology\nlex: human body organ systems coordination\nvec: how do the different organ systems in the human body work together to maintain health\nvec: what are examples of body systems interacting with each other in human physiology"}
-{"input": "what are the principles of sustainable development", "output": "hyde: Sustainable development meets present needs without compromising future generations' ability to meet theirs (Brundtland Report, 1987). Its three pillars are environmental protection, social equity, and economic viability. The UN's 17 Sustainable Development Goals (SDGs) provide a framework for global action through 2030.\nlex: sustainable development principles environmental social economic\nlex: sustainable development goals UN SDGs\nvec: what are the core principles of sustainable development and why do they matter\nvec: how do the three pillars of sustainable development balance environmental, social, and economic needs"}
-{"input": "how to evaluate startup ideas", "output": "hyde: Evaluate a startup idea on four dimensions: problem severity (is this a hair-on-fire problem?), market size (TAM > $1B?), competitive landscape (what's the unfair advantage?), and founder-market fit (do you have unique insight?). Validate by talking to 50+ potential customers before writing any code.\nlex: evaluate startup ideas validation framework\nlex: startup idea assessment market viability\nvec: how do entrepreneurs evaluate whether a startup idea is worth pursuing\nvec: what frameworks and criteria help assess the viability of a new startup idea"}
-{"input": "how to write a business plan", "output": "hyde: A business plan includes: executive summary, company description, market analysis, organization structure, product/service line, marketing strategy, funding request, and financial projections. Start with a clear problem statement and your unique solution. Include 3-year revenue forecasts with assumptions clearly stated.\nlex: business plan writing template sections\nlex: business plan executive summary financial projections\nvec: how do you write a comprehensive business plan for a new company\nvec: what sections and information should be included in a startup business plan"}
-{"input": "what are greenhouse gases?", "output": "hyde: Greenhouse gases\u2014including carbon dioxide (CO2), methane (CH4), nitrous oxide (N2O), and fluorinated gases\u2014trap infrared radiation in the atmosphere, warming the planet. CO2 is the most abundant from fossil fuel combustion. Methane, though shorter-lived, is 80 times more potent over 20 years.\nlex: greenhouse gases CO2 methane atmosphere\nlex: greenhouse gas effect global warming climate\nvec: what are greenhouse gases and how do they contribute to global warming\nvec: which gases trap heat in Earth's atmosphere and cause the greenhouse effect"}
-{"input": "how do religions interpret the concept of sacredness?", "output": "hyde: In Christianity, sacredness is conferred by God's presence\u2014churches, sacraments, and scripture are holy. In Hinduism, sacred rivers like the Ganges and temples house divine energy. Indigenous traditions see sacredness in natural features\u2014mountains, groves, and animals. Islam treats the Quran and Mecca as inviolably sacred.\nlex: sacredness religion sacred concept interpretation\nlex: sacred space rituals holy religious traditions\nvec: how do different world religions define and interpret the concept of sacredness\nvec: what does sacredness mean across Christianity, Islam, Hinduism, Buddhism, and indigenous traditions"}
-{"input": "when to introduce solid foods to a baby?", "output": "hyde: Most pediatricians recommend introducing solid foods around 6 months of age. Signs of readiness include sitting up with support, showing interest in food, and loss of the tongue-thrust reflex. Start with single-ingredient purees like sweet potato, avocado, or iron-fortified cereal, one new food every 3-5 days.\nlex: introduce solid foods baby age months\nlex: baby first foods solids weaning schedule\nvec: at what age should you start introducing solid foods to a baby\nvec: what are the signs a baby is ready for solid foods and what foods to start with"}
-{"input": "renaissance literature", "output": "hyde: Renaissance literature (14th-17th century) was shaped by humanism's emphasis on individual experience and classical learning. Key figures include Petrarch (sonnets), Boccaccio (Decameron), Shakespeare (plays and sonnets), Cervantes (Don Quixote), and Machiavelli (The Prince). Vernacular languages replaced Latin as the literary standard.\nlex: Renaissance literature authors works\nlex: Renaissance literary period Shakespeare Petrarch humanism\nvec: what are the major works and characteristics of Renaissance literature\nvec: how did Renaissance humanism influence literature in Europe during the 14th-17th centuries"}
-{"input": "how digital twins transform industries", "output": "hyde: A digital twin is a virtual replica of a physical asset, process, or system, updated in real time with IoT sensor data. In manufacturing, digital twins simulate production lines to predict failures. In healthcare, patient-specific organ models guide surgical planning. Energy companies use them to optimize wind turbine performance.\nlex: digital twins industry transformation simulation\nlex: digital twin technology manufacturing IoT\nvec: how are digital twins being used to transform industries like manufacturing and healthcare\nvec: what is digital twin technology and how does it improve operational efficiency in industry"}
-{"input": "resilience training programs", "output": "hyde: Resilience training programs teach participants to manage stress, adapt to adversity, and recover from setbacks. Common frameworks include cognitive behavioral techniques, mindfulness practices, and strengths-based coaching. The U.S. Army's Master Resilience Training and Penn Resilience Program are widely studied evidence-based models.\nlex: resilience training programs mental toughness\nlex: resilience building workplace employee training\nvec: what are resilience training programs and how do they build mental toughness\nvec: how do organizations implement resilience training for employees and teams"}
-{"input": "how to jump-start a car?", "output": "hyde: To jump-start a car, connect the red clamp to the dead battery positive terminal, then to the donor battery positive. Connect black to donor negative, then to unpainted metal on the dead car. Start the donor car, wait 2 minutes, then start the dead car.\nlex: jump-start car battery jumper cables\nlex: jump start dead car battery steps\nvec: what is the correct procedure to jump-start a car with a dead battery?\nvec: how do you connect jumper cables between two cars to restart a dead battery?"}
-{"input": "google maps", "output": "hyde: Open Google Maps on your phone or browser, type your destination in the search bar, and tap \"Directions.\" Choose driving, transit, walking, or cycling. The app will show estimated travel time and alternative routes.\nlex: google maps directions navigation\nlex: google maps route planner\nlex: google maps API embed\nvec: how to use Google Maps for turn-by-turn driving directions\nvec: what features does Google Maps offer for route planning and navigation?"}
-{"input": "sail smooth", "output": "hyde: To sail smoothly, keep the boat balanced by adjusting the mainsheet and jib trim. Ease the sails slightly in gusts to reduce heeling, and steer at an angle that minimizes pitching through waves.\nlex: smooth sailing techniques\nlex: sailboat trim wind conditions\nlex: reduce boat heeling pitching\nvec: how do you achieve smooth sailing on a sailboat in varying wind conditions?\nvec: what techniques help reduce choppy motion and maintain a comfortable ride while sailing?"}
-{"input": "how to create a value proposition", "output": "hyde: A strong value proposition clearly states what your product does, who it's for, and why it's better than alternatives. Use this formula: We help [target customer] achieve [desired outcome] by [unique approach], unlike [competitors] who [limitation].\nlex: value proposition canvas template\nlex: unique value proposition statement\nlex: customer value proposition examples\nvec: how do you write a compelling value proposition for a product or service?\nvec: what framework helps define a unique value proposition that resonates with target customers?"}
-{"input": "where to buy used cars online", "output": "hyde: Popular online used car marketplaces include Carvana, CarMax, AutoTrader, and Cars.com. Carvana offers home delivery and a 7-day return policy. CarMax provides no-haggle pricing and certified inspections on all vehicles.\nlex: buy used cars online marketplace\nlex: certified pre-owned cars website\nlex: online used car dealers Carvana AutoTrader\nvec: what are the best websites for buying used cars online with delivery?\nvec: which online platforms sell certified pre-owned vehicles with warranties?"}
-{"input": "what are the main practices in zoroastrianism?", "output": "hyde: Zoroastrians pray five times daily (the five Gahs) facing a source of light. The sacred fire is maintained in fire temples as a symbol of Ahura Mazda's truth. Key rituals include the Navjote initiation ceremony, wearing the sudreh and kusti, and maintaining ritual purity.\nlex: zoroastrianism practices rituals worship\nlex: zoroastrian fire temple prayer\nlex: zoroastrian navjote purity rituals\nvec: what are the core religious practices and rituals observed in Zoroastrianism?\nvec: how do Zoroastrians worship and what daily rituals do they follow?"}
-{"input": "how to increase daily physical activity", "output": "hyde: Take the stairs instead of the elevator, park farther from entrances, and set a timer to stand and walk every 30 minutes. Aim for 10,000 steps daily by adding short walks after meals. Even 5-minute movement breaks reduce the health risks of prolonged sitting.\nlex: increase daily physical activity steps\nlex: exercise habits sedentary lifestyle\nlex: walking more daily movement tips\nvec: what are practical ways to add more physical activity to a sedentary daily routine?\nvec: how can someone gradually increase their daily step count and movement throughout the day?"}
-{"input": "how does bioethics address cloning", "output": "hyde: Bioethicists distinguish between reproductive cloning, which aims to create a new human being, and therapeutic cloning, which produces embryonic stem cells for medical research. Most bioethicists oppose reproductive cloning due to safety risks, concerns about human dignity, and the commodification of life.\nlex: bioethics cloning human reproductive therapeutic\nlex: ethical issues cloning debate\nlex: cloning moral arguments bioethics\nvec: what ethical arguments do bioethicists raise for and against human cloning?\nvec: how does the field of bioethics evaluate therapeutic versus reproductive cloning?"}
-{"input": "what is genetic engineering", "output": "hyde: Genetic engineering is the direct manipulation of an organism's DNA using biotechnology. Scientists can insert, delete, or modify genes to alter traits. Key techniques include recombinant DNA technology, which combines DNA from different sources, and CRISPR-Cas9, which allows precise editing at specific locations in the genome.\nlex: genetic engineering DNA modification\nlex: gene editing CRISPR recombinant DNA\nlex: genetically modified organisms GMO\nvec: what is genetic engineering and how does it work to modify an organism's DNA?\nvec: what are the main techniques used in genetic engineering such as CRISPR and recombinant DNA?"}
-{"input": "how to test drive a car?", "output": "hyde: During a test drive, check acceleration, braking response, and steering feel. Drive on highways, local roads, and over bumps. Listen for unusual noises. Test the infotainment system, climate control, and visibility from all mirrors. Make sure the seats are comfortable and adjust to your driving position.\nlex: test drive car checklist\nlex: car test drive tips what to check\nlex: dealership test drive questions\nvec: what should you look for and evaluate during a car test drive?\nvec: how do you properly test drive a vehicle before buying it?"}
-{"input": "how do philosophers approach death", "output": "hyde: Epicurus argued that death is nothing to fear because when death exists, we do not. Heidegger saw death as central to authentic existence, calling it \"Being-toward-death.\" The Stoics taught that meditating on mortality (memento mori) leads to a more purposeful life.\nlex: philosophy of death mortality\nlex: existentialism death Heidegger Epicurus\nlex: philosophical views afterlife mortality\nvec: how have major philosophers throughout history approached the concept of death and mortality?\nvec: what do existentialist and ancient philosophers say about the meaning of death?"}
-{"input": "what is the capital of japan", "output": "hyde: Tokyo is the capital city of Japan. It became the capital in 1868 when Emperor Meiji moved the imperial seat from Kyoto. Tokyo, located on the eastern coast of Honshu, is the most populous metropolitan area in the world with over 37 million residents.\nlex: capital Japan Tokyo\nlex: Tokyo capital city Japan\nvec: what city is the capital of Japan?\nvec: when did Tokyo become the capital of Japan?"}
-{"input": "what is the significance of the afterlife in different faiths?", "output": "hyde: In Christianity, the afterlife involves heaven or hell based on faith and deeds. Islam teaches judgment day followed by paradise (Jannah) or hellfire. Hinduism and Buddhism believe in reincarnation, where the soul is reborn based on karma until achieving moksha or nirvana.\nlex: afterlife beliefs religions Christianity Islam Buddhism\nlex: heaven hell reincarnation afterlife\nlex: religious views life after death\nvec: how do different world religions view the afterlife and what happens after death?\nvec: what role does belief in the afterlife play in Christianity, Islam, Hinduism, and Buddhism?"}
-{"input": "what is 3d printing and how does it work", "output": "hyde: 3D printing, or additive manufacturing, builds objects layer by layer from a digital CAD file. The most common method, FDM (Fused Deposition Modeling), melts plastic filament and extrudes it through a nozzle. SLA (Stereolithography) uses a UV laser to cure liquid resin into solid layers.\nlex: 3D printing additive manufacturing process\nlex: FDM SLA 3D printer filament resin\nlex: 3D printing layer by layer CAD model\nvec: how does 3D printing work to create objects layer by layer from a digital model?\nvec: what are the main types of 3D printing technologies such as FDM and SLA?"}
-{"input": "how do i contact my congressperson", "output": "hyde: Visit house.gov and enter your zip code to find your U.S. Representative. For senators, go to senate.gov. You can call their D.C. or district office, send an email through their website contact form, or mail a letter. Calling the Capitol switchboard at (202) 224-3121 connects you to any member's office.\nlex: contact congressperson phone email address\nlex: find elected representative congress\nlex: write letter senator representative\nvec: how can I find and contact my U.S. congressional representative or senator?\nvec: what is the best way to reach out to my congressperson about an issue?"}
-{"input": "what is stream of consciousness writing?", "output": "hyde: Stream of consciousness is a narrative technique that presents a character's continuous flow of thoughts, feelings, and associations without conventional structure. James Joyce's \"Ulysses\" and Virginia Woolf's \"Mrs Dalloway\" are landmark examples, using long unpunctuated passages to mimic the way the mind actually works.\nlex: stream of consciousness writing technique\nlex: stream of consciousness literature Joyce Woolf\nlex: interior monologue narrative style\nvec: what is stream of consciousness as a literary writing technique?\nvec: how did authors like James Joyce and Virginia Woolf use stream of consciousness in their novels?"}
-{"input": "how to use a ring light", "output": "hyde: Place the ring light directly in front of your face at eye level, with the camera positioned in the center of the ring. Keep the light 12-24 inches from your face for an even, shadow-free glow. Adjust brightness to avoid overexposure. The circular catchlights in the eyes are a signature look.\nlex: ring light setup photography video\nlex: ring light placement distance camera\nlex: ring light selfie video lighting\nvec: how do you set up and position a ring light for video recording or photography?\nvec: what are the best settings and distance for using a ring light for selfies and video calls?"}
-{"input": "how to engage in civic duties", "output": "hyde: Civic duties include voting in elections, serving on a jury when called, staying informed about local issues, attending town hall meetings, volunteering for community organizations, and contacting elected officials about policy concerns. Voting in local elections has the most direct impact on your daily life.\nlex: civic duties voting jury duty community\nlex: civic engagement participation democracy\nlex: citizen responsibilities voting volunteering\nvec: what are the main civic duties citizens should participate in beyond voting?\nvec: how can someone actively engage in civic responsibilities in their local community?"}
-{"input": "spain life", "output": "hyde: Life in Spain revolves around a later schedule than most of Europe. Lunch is the main meal, typically eaten between 2-3 PM, and dinner is served after 9 PM. The cost of living is lower than in northern Europe, with affordable housing outside Madrid and Barcelona. The climate, healthcare system, and social culture attract many expats.\nlex: living in Spain expat lifestyle\nlex: Spain cost of living culture daily life\nlex: move to Spain quality of life\nvec: what is daily life like for someone living in Spain as an expat or resident?\nvec: what is the cost of living and quality of life in Spain compared to other European countries?"}
-{"input": "ai-driven analytics", "output": "hyde: AI-driven analytics uses machine learning algorithms to automatically detect patterns, anomalies, and trends in large datasets. Unlike traditional BI tools, AI analytics can generate predictive forecasts, perform natural language queries, and surface insights without manual configuration.\nlex: AI-driven analytics machine learning data\nlex: artificial intelligence business analytics platform\nlex: AI predictive analytics tools\nvec: how are AI and machine learning used to power data analytics and business intelligence?\nvec: what AI-driven analytics platforms help businesses make data-driven predictions?"}
-{"input": "where to buy vintage home accessories", "output": "hyde: Shop vintage home accessories on Etsy, Chairish, and 1stDibs for curated antique finds. Local estate sales and flea markets often have unique pieces at lower prices. Ruby Lane specializes in antiques, while eBay offers a wide selection of retro decor from various eras.\nlex: vintage home accessories shop online\nlex: retro home decor antique store\nlex: vintage furniture accessories Etsy eBay\nvec: where can I buy vintage and antique home decor accessories online?\nvec: what are the best stores and websites for finding retro and vintage home furnishings?"}
-{"input": "how to join a political party", "output": "hyde: To join a political party in the U.S., register with your state's election office by selecting a party affiliation on your voter registration form. You can register online, by mail, or at your local DMV. Some states allow you to change party affiliation at any time, while others have deadlines before primary elections.\nlex: join political party registration\nlex: register Democrat Republican party membership\nlex: political party membership sign up\nvec: how do you officially join or register with a political party in the United States?\nvec: what is the process for becoming a member of a political party?"}
-{"input": "how to quit smoking?", "output": "hyde: The most effective approach combines nicotine replacement therapy (patches, gum, or lozenges) with behavioral support. Prescription medications like varenicline (Chantix) and bupropion can double quit rates. Set a quit date, identify triggers, and call 1-800-QUIT-NOW for free coaching.\nlex: quit smoking methods nicotine\nlex: stop smoking cessation plan\nlex: nicotine replacement therapy patches gum\nvec: what are the most effective methods and strategies to quit smoking permanently?\nvec: how do nicotine replacement therapies and medications help people stop smoking?"}
-{"input": "what is phenomenological existentialism", "output": "hyde: Phenomenological existentialism applies Husserl's phenomenological method to existential questions about human existence. Heidegger's \"Being and Time\" analyzes Dasein (being-there) through the structures of lived experience. Sartre extended this in \"Being and Nothingness,\" arguing that consciousness is always directed toward objects and that existence precedes essence.\nlex: phenomenological existentialism Heidegger Sartre\nlex: phenomenology existentialism lived experience\nlex: existential phenomenology philosophy\nvec: what is phenomenological existentialism and how does it differ from other branches of existentialism?\nvec: how did Heidegger and Sartre combine phenomenology with existentialist philosophy?"}
-{"input": "how to install car seat covers?", "output": "hyde: Pull the seat cover over the top of the headrest and stretch it down over the backrest. Tuck the excess fabric into the gap between the seat and backrest. Hook the elastic straps underneath the seat and clip them together. For bucket seats, align the cover's seams with the seat contours before securing.\nlex: install car seat covers DIY\nlex: car seat cover fitting instructions\nlex: universal seat covers installation steps\nvec: what is the step-by-step process for installing car seat covers?\nvec: how do you fit universal car seat covers on front and rear seats?"}
-{"input": "what is the scientific process for drug development", "output": "hyde: Drug development follows a pipeline: discovery and preclinical testing (3-6 years), Phase I trials testing safety in small groups, Phase II trials evaluating efficacy, Phase III large-scale trials confirming effectiveness, and FDA review. The entire process typically takes 10-15 years and costs over $1 billion.\nlex: drug development process phases clinical trials\nlex: pharmaceutical drug approval FDA pipeline\nlex: preclinical clinical trial Phase 1 2 3\nvec: what are the stages of the scientific process for developing and approving a new pharmaceutical drug?\nvec: how does a drug go from laboratory discovery through clinical trials to FDA approval?"}
-{"input": "what is climate change", "output": "hyde: Climate change refers to long-term shifts in global temperatures and weather patterns. Since the Industrial Revolution, burning fossil fuels has released CO2 and other greenhouse gases that trap heat in the atmosphere, raising the average global temperature by about 1.1\u00b0C. This causes rising sea levels, extreme weather, and ecosystem disruption.\nlex: climate change global warming greenhouse gases\nlex: climate change causes effects CO2\nlex: global temperature rise fossil fuels\nvec: what is climate change and what are its primary causes and effects on the planet?\nvec: how do greenhouse gas emissions from fossil fuels contribute to global climate change?"}
-{"input": "how to sell a car privately?", "output": "hyde: To sell a car privately, first determine a fair price using Kelley Blue Book or Edmunds. Gather the title, maintenance records, and smog certificate. List the car on Craigslist, Facebook Marketplace, or AutoTrader. When meeting buyers, accept cashier's checks or cash. Sign the title over and file a release of liability with your DMV.\nlex: sell car privately steps title transfer\nlex: private car sale listing price\nlex: sell used car by owner paperwork\nvec: what are the steps to sell a car privately without a dealer?\nvec: what paperwork and documentation do you need to sell a car to a private buyer?"}
-{"input": "how to analyze a political candidate's stance", "output": "hyde: Review the candidate's official website for stated policy positions. Check their voting record on congress.gov or VoteSmart.org. Compare their stances on key issues using tools like ISideWith or BallotReady. Look for consistency between their statements and votes, and check campaign finance records on OpenSecrets.\nlex: analyze political candidate stance positions\nlex: candidate policy positions voting record\nlex: compare political candidates issues\nvec: how do you research and analyze a political candidate's policy positions and voting record?\nvec: what tools and resources help voters compare political candidates on key issues?"}
-{"input": "what is lean startup methodology", "output": "hyde: The lean startup methodology, developed by Eric Ries, emphasizes rapid iteration through the Build-Measure-Learn feedback loop. Start by building a Minimum Viable Product (MVP), measure how customers respond using actionable metrics, and learn whether to pivot or persevere. The goal is to reduce waste by validating assumptions before investing heavily.\nlex: lean startup methodology MVP\nlex: lean startup build measure learn\nlex: Eric Ries lean startup principles\nvec: what is the lean startup methodology and how does the build-measure-learn cycle work?\nvec: how does the lean startup approach use minimum viable products to validate business ideas?"}
-{"input": "what is the renaissance", "output": "hyde: The Renaissance was a cultural movement spanning roughly the 14th to 17th centuries, originating in Florence, Italy. It marked a revival of classical Greek and Roman learning, emphasizing humanism, individualism, and secular inquiry. Major figures include Leonardo da Vinci, Michelangelo, and Galileo.\nlex: Renaissance period history art culture\nlex: Renaissance 14th 15th 16th century Italy Europe\nlex: Renaissance art Leonardo Michelangelo humanism\nvec: what was the Renaissance period and what were its major cultural and artistic achievements?\nvec: how did the Renaissance transform European art, science, and intellectual thought?"}
-{"input": "faith respect", "output": "hyde: Respecting others' faith means listening without judgment, learning about different religious traditions, and recognizing that spiritual beliefs are deeply personal. Interfaith dialogue builds mutual understanding by focusing on shared values like compassion, justice, and community while honoring theological differences.\nlex: interfaith respect tolerance\nlex: respecting different faiths religions\nlex: religious tolerance diversity beliefs\nvec: how can people show respect for different religious faiths and beliefs?\nvec: what does interfaith respect and dialogue look like in diverse communities?"}
-{"input": "where to find heirloom seed suppliers?", "output": "hyde: Top heirloom seed suppliers include Baker Creek Heirloom Seeds, Seed Savers Exchange, and Johnny's Selected Seeds. Baker Creek offers over 1,800 open-pollinated varieties with free shipping. Seed Savers Exchange is a nonprofit dedicated to preserving rare heirloom varieties through their seed bank and catalog.\nlex: heirloom seed suppliers catalog\nlex: buy heirloom seeds online non-GMO\nlex: heirloom vegetable seed company\nvec: where can I buy heirloom and non-GMO seeds from reputable suppliers?\nvec: what are the best heirloom seed companies that sell open-pollinated vegetable seeds?"}
-{"input": "how do christians celebrate easter", "output": "hyde: Christians celebrate Easter as the resurrection of Jesus Christ on the third day after his crucifixion. Holy Week begins with Palm Sunday, followed by Maundy Thursday communion, Good Friday services, and Easter Sunday worship. Many churches hold sunrise services, and traditions include Easter egg hunts, lilies, and special meals.\nlex: Christian Easter celebration traditions\nlex: Easter Sunday church service resurrection\nlex: Holy Week Good Friday Easter customs\nvec: how do Christians celebrate Easter and what are the main traditions of Holy Week?\nvec: what religious services and customs do Christians observe during the Easter season?"}
-{"input": "what are exchange-traded funds (etfs)", "output": "hyde: An exchange-traded fund (ETF) is a basket of securities that trades on a stock exchange like a single stock. ETFs typically track an index like the S&P 500 and offer diversification at a low expense ratio. Unlike mutual funds, ETFs can be bought and sold throughout the trading day at market price.\nlex: exchange-traded funds ETFs investing\nlex: ETF index fund stock market\nlex: ETF vs mutual fund comparison\nvec: what are exchange-traded funds (ETFs) and how do they work as an investment?\nvec: how do ETFs differ from mutual funds and what are their advantages for investors?"}
-{"input": "how to enhance creativity?", "output": "hyde: To enhance creativity, practice divergent thinking by generating many ideas without judgment. Keep a daily journal, expose yourself to new experiences, and set aside unstructured time for daydreaming. Research shows that walking, adequate sleep, and constraints can all stimulate creative problem-solving.\nlex: enhance creativity techniques exercises\nlex: boost creative thinking brainstorming\nlex: creativity habits daily practice\nvec: what are proven techniques and exercises to enhance creative thinking?\nvec: how can someone develop daily habits that boost creativity and generate new ideas?"}
-{"input": "what are the key features of taoist philosophy?", "output": "hyde: Taoism centers on the Tao (the Way), an ineffable force that underlies all existence. Key concepts include wu wei (non-action or effortless action), living in harmony with nature, and the balance of yin and yang. The Tao Te Ching by Laozi and the Zhuangzi are the foundational texts.\nlex: Taoist philosophy Taoism key concepts\nlex: Tao Te Ching wu wei Taoism\nlex: Taoism yin yang natural harmony\nvec: what are the central concepts and key features of Taoist philosophy?\nvec: how does Taoism emphasize living in harmony with the Tao and the concept of wu wei?"}
-{"input": "how to effectively visualize scientific data", "output": "hyde: Choose chart types that match your data: scatter plots for correlations, bar charts for comparisons, line plots for time series, and heatmaps for matrices. Use matplotlib or ggplot2 for publication figures. Minimize chart junk, label axes clearly, and use colorblind-friendly palettes like viridis.\nlex: scientific data visualization charts graphs\nlex: data visualization tools matplotlib Python\nlex: scientific figure plotting techniques\nvec: what are effective techniques for visualizing scientific data in charts and graphs?\nvec: which tools and software are best for creating publication-quality scientific data visualizations?"}
-{"input": "where to watch live nba games?", "output": "hyde: Live NBA games air on ESPN, TNT, and ABC during the regular season. NBA League Pass streams all out-of-market games. Streaming options include Sling TV, YouTube TV, and Hulu + Live TV for cable-free access. The NBA app offers free highlights and select live games on mobile.\nlex: watch live NBA games streaming\nlex: NBA League Pass live stream TV\nlex: NBA games broadcast ESPN TNT\nvec: where can I watch live NBA basketball games online or on TV?\nvec: what streaming services and TV channels broadcast live NBA games in 2025-2026?"}
-{"input": "what was the impact of the industrial revolution on society?", "output": "hyde: The Industrial Revolution (1760-1840) shifted economies from agrarian to industrial, triggering mass urbanization as workers moved to factory cities. It created a new working class, child labor, and pollution, but also raised living standards over time, enabled mass production, and spurred technological innovation in transportation and communication.\nlex: Industrial Revolution impact society economy\nlex: Industrial Revolution social changes urbanization\nlex: Industrial Revolution labor factories 18th 19th century\nvec: how did the Industrial Revolution transform society, economy, and daily life?\nvec: what were the major social and economic impacts of the Industrial Revolution on workers and cities?"}
-{"input": "wisdom gain", "output": "hyde: Wisdom is gained through a combination of diverse life experience, reflective thinking, and learning from mistakes. Psychologist Paul Baltes identified wisdom as expert knowledge about the fundamental pragmatics of life, including understanding uncertainty, managing emotions, and balancing competing interests.\nlex: gaining wisdom life experience\nlex: wisdom philosophy personal growth\nlex: how to become wiser decision making\nvec: how does a person gain wisdom through life experience and reflection?\nvec: what do philosophers and psychologists say about how wisdom is acquired?"}
-{"input": "what is the role of local government", "output": "hyde: Local governments provide essential services including public schools, police and fire departments, road maintenance, water and sewer systems, zoning and land use planning, parks, and public transit. City councils and county boards set local taxes, pass ordinances, and approve budgets that directly affect residents' daily lives.\nlex: local government role responsibilities\nlex: city county municipal government services\nlex: local government functions zoning schools police\nvec: what are the main roles and responsibilities of local government in a community?\nvec: how does local city and county government provide public services and manage community affairs?"}
-{"input": "what is metaphysical ethics", "output": "hyde: Metaphysical ethics, closely related to metaethics, examines the ontological status of moral values. It asks whether moral facts exist independently of human minds (moral realism) or are human constructions (anti-realism). This branch investigates the metaphysical foundations that underlie ethical claims, such as whether \"goodness\" is a real property in the world.\nlex: metaphysical ethics philosophy morality\nlex: metaphysics ethics moral realism\nlex: metaethics ontology moral facts\nvec: what is metaphysical ethics and how does it relate to the nature of moral reality?\nvec: how does metaphysics inform ethical theory and questions about whether moral facts exist?"}
-{"input": "what is empiricism", "output": "hyde: Empiricism is the philosophical theory that all knowledge is derived from sensory experience rather than innate ideas. John Locke argued the mind starts as a \"tabula rasa\" (blank slate), and David Hume extended this by arguing that even causal relationships are known only through observation and habit, not reason alone.\nlex: empiricism philosophy knowledge experience\nlex: empiricism Locke Hume sensory evidence\nlex: empiricism vs rationalism epistemology\nvec: what is empiricism in philosophy and how does it claim knowledge is acquired through experience?\nvec: how did philosophers like John Locke and David Hume develop the theory of empiricism?"}
-{"input": "what is epistemology", "output": "hyde: Epistemology is the branch of philosophy concerned with the nature, scope, and limits of knowledge. It examines questions like: What is knowledge? How is it different from mere belief? What counts as justification? The classic definition from Plato is that knowledge is justified true belief, though this was challenged by Gettier in 1963.\nlex: epistemology philosophy knowledge\nlex: epistemology theory of knowledge justified belief\nlex: epistemology truth belief justification\nvec: what is epistemology and what questions does it address about knowledge and belief?\nvec: how does epistemology study the nature, sources, and limits of human knowledge?"}
-{"input": "what is the significance of community in spirituality?", "output": "hyde: Spiritual communities provide shared worship, accountability, and mutual support that deepen individual faith. In Christianity, the church body gathers for fellowship; in Buddhism, the sangha is one of the Three Jewels; in Judaism, a minyan of ten is required for communal prayer. Communal practice reinforces commitment and provides belonging.\nlex: community spirituality religious fellowship\nlex: spiritual community congregation sangha\nlex: communal worship spiritual practice\nvec: why is community considered important in spiritual and religious practice?\nvec: how does belonging to a spiritual community enhance personal faith and practice?"}
-{"input": "what is the difference between memoir and autobiography?", "output": "hyde: An autobiography covers the author's entire life chronologically, from birth to the present. A memoir focuses on a specific theme, period, or set of experiences from the author's life, emphasizing emotional truth and reflection. Memoirs are often more literary and thematic, while autobiographies are more comprehensive and factual.\nlex: memoir vs autobiography difference\nlex: memoir autobiography literary genre\nlex: memoir personal narrative autobiography life story\nvec: what is the difference between a memoir and an autobiography as literary genres?\nvec: how does a memoir's scope and focus differ from a full autobiography?"}
-{"input": "what is the significance of allegory?", "output": "hyde: An allegory is a narrative in which characters, events, and settings symbolically represent abstract ideas or moral concepts. Orwell's \"Animal Farm\" allegorizes the Russian Revolution; Bunyan's \"Pilgrim's Progress\" represents the Christian spiritual journey. Allegory allows writers to critique society, explore complex ideas, and engage readers on multiple levels.\nlex: allegory literary device significance\nlex: allegory examples literature symbolism\nlex: allegorical writing Pilgrim's Progress Animal Farm\nvec: what is an allegory in literature and why is it a significant literary device?\nvec: how do authors use allegory to convey deeper moral or political meanings through symbolic narratives?"}
-{"input": "portrait photography tips", "output": "hyde: Use an 85mm or 50mm lens at f/1.8-f/2.8 to create a pleasing background blur. Position your subject near a window for soft natural light, or use a reflector to fill shadows. Focus on the nearest eye, shoot at eye level, and direct your subject to angle their body 45 degrees to the camera.\nlex: portrait photography tips lighting posing\nlex: portrait photo camera settings lens\nlex: headshot portrait natural light composition\nvec: what are the best tips for taking professional-quality portrait photographs?\nvec: how should you set up lighting, posing, and camera settings for portrait photography?"}
-{"input": "how to build passive income", "output": "hyde: Common passive income sources include dividend stocks yielding 3-5% annually, rental properties generating monthly cash flow, index fund investments, creating digital products or online courses, and building affiliate marketing websites. Start by investing in a low-cost S&P 500 index fund and reinvesting dividends.\nlex: build passive income streams\nlex: passive income ideas investments dividends\nlex: earn passive income rental property online\nvec: what are the most reliable ways to build passive income streams?\nvec: how can someone start generating passive income through investments, rental property, or online businesses?"}
-{"input": "how to choose the right camera", "output": "hyde: Decide what you'll shoot most: landscapes, portraits, video, or street photography. Mirrorless cameras are lighter with faster autofocus, while DSLRs offer longer battery life and more lens options. Key specs to compare: sensor size (full-frame vs APS-C), megapixels, autofocus points, and video capabilities. Budget $500-1000 for a capable starter body.\nlex: choose camera DSLR mirrorless beginner\nlex: camera buying guide sensor megapixels\nlex: best camera photography type budget\nvec: how do you choose the right camera for your photography needs and budget?\nvec: what factors should you consider when deciding between DSLR and mirrorless cameras?"}
-{"input": "what is the significance of the great barrier reef?", "output": "hyde: The Great Barrier Reef, stretching over 2,300 km along Australia's northeast coast, is the world's largest coral reef system and is visible from space. It supports over 1,500 fish species, 400 coral species, and countless marine organisms. It's a UNESCO World Heritage Site threatened by coral bleaching from rising ocean temperatures.\nlex: Great Barrier Reef significance ecosystem\nlex: Great Barrier Reef coral biodiversity Australia\nlex: Great Barrier Reef marine life conservation\nvec: why is the Great Barrier Reef ecologically significant and important to protect?\nvec: what makes the Great Barrier Reef the world's largest coral reef system and why is it under threat?"}
-{"input": "how to celebrate holi festival", "output": "hyde: Holi is celebrated over two days: Holika Dahan (bonfire night) and Rangwali Holi (color day). On the morning of Holi, people gather outdoors to throw colored powders (gulal) and spray colored water at each other. Traditional foods include gujiya (sweet dumplings), thandai (spiced milk drink), and puran poli.\nlex: Holi festival celebration traditions India\nlex: Holi festival of colors powder\nlex: how to celebrate Holi customs food\nvec: how is the Holi festival celebrated and what are its main traditions and customs?\nvec: what are the traditional ways to celebrate Holi with colors, food, and bonfires?"}
-{"input": "how to negotiate a salary?", "output": "hyde: Research the market rate for your role on Glassdoor, Levels.fyi, or Payscale before negotiating. When you receive an offer, express enthusiasm, then say \"I was hoping for something closer to [target].\" Always negotiate based on market data and your value, not personal needs. Aim 10-20% above the initial offer.\nlex: negotiate salary offer tips\nlex: salary negotiation techniques counter offer\nlex: job offer salary negotiation script\nvec: what are effective strategies for negotiating a higher salary during a job offer?\nvec: how do you prepare for and conduct a successful salary negotiation?"}
-{"input": "what is sacred geometry?", "output": "hyde: Sacred geometry assigns symbolic and spiritual meaning to geometric shapes and proportions found in nature. Key patterns include the Flower of Life (overlapping circles), Metatron's Cube, the golden ratio (1.618), and the Fibonacci spiral. These patterns appear in sunflower seeds, nautilus shells, and ancient temple architecture.\nlex: sacred geometry patterns symbols\nlex: sacred geometry golden ratio Fibonacci\nlex: sacred geometry Flower of Life Metatron\nvec: what is sacred geometry and what mathematical patterns are considered sacred?\nvec: how do sacred geometry concepts like the golden ratio and Flower of Life appear in nature and architecture?"}
-{"input": "what is political corruption", "output": "hyde: Political corruption is the abuse of public office for private gain. Forms include bribery (accepting payments for favorable decisions), embezzlement of public funds, nepotism (appointing relatives to positions), patronage, and vote-buying. Transparency International's Corruption Perceptions Index ranks countries by perceived levels of public sector corruption.\nlex: political corruption bribery abuse of power\nlex: government corruption examples types\nlex: political corruption embezzlement nepotism\nvec: what is political corruption and what forms does it take in government?\nvec: how does political corruption such as bribery and embezzlement undermine democratic governance?"}
-{"input": "what are the rituals of islam", "output": "hyde: The Five Pillars of Islam form the core rituals: Shahada (declaration of faith), Salat (five daily prayers facing Mecca), Zakat (annual charitable giving of 2.5% of wealth), Sawm (fasting during Ramadan from dawn to sunset), and Hajj (pilgrimage to Mecca at least once in a lifetime).\nlex: Islam rituals Five Pillars worship\nlex: Islamic prayer salat fasting Ramadan\nlex: Muslim rituals hajj pilgrimage zakat\nvec: what are the main rituals and religious practices in Islam?\nvec: how do Muslims observe the Five Pillars of Islam including prayer, fasting, and pilgrimage?"}
-{"input": "neural networks", "output": "hyde: A neural network consists of layers of interconnected nodes (neurons). Input data passes through hidden layers where each connection has a weight. Each neuron applies an activation function (like ReLU or sigmoid) to the weighted sum of its inputs. During training, backpropagation adjusts weights to minimize the loss function.\nlex: neural networks deep learning artificial\nlex: neural network architecture layers neurons\nlex: convolutional recurrent neural network CNN RNN\nvec: how do artificial neural networks work and what are the different types of architectures?\nvec: what are the basic components of a neural network including layers, weights, and activation functions?"}
-{"input": "what is the trolley problem", "output": "hyde: The trolley problem, introduced by Philippa Foot in 1967, asks: a runaway trolley will kill five people unless you pull a lever to divert it onto a track where it will kill one person. Do you pull the lever? Utilitarians say yes (saving more lives), while deontologists argue that actively causing someone's death is morally different from allowing deaths to occur.\nlex: trolley problem ethics thought experiment\nlex: trolley problem utilitarianism moral dilemma\nlex: trolley problem Philippa Foot\nvec: what is the trolley problem and why is it important in ethical philosophy?\nvec: how does the trolley problem illustrate the conflict between utilitarian and deontological ethics?"}
-{"input": "digital transformation in businesses", "output": "hyde: Digital transformation involves integrating digital technology into all areas of a business, changing how it operates and delivers value. Key components include migrating to cloud infrastructure, automating manual processes, adopting data analytics for decision-making, and building digital customer experiences. McKinsey reports that 70% of transformation efforts fall short of their goals.\nlex: digital transformation business strategy\nlex: digital transformation enterprise technology cloud\nlex: business digitization automation workflows\nvec: how are businesses implementing digital transformation to modernize their operations and strategy?\nvec: what technologies drive digital transformation in enterprises, including cloud computing and automation?"}
-{"input": "how to protect business data", "output": "hyde: Protect business data with layered security: encrypt data at rest and in transit using AES-256, implement role-based access controls, enable multi-factor authentication for all accounts, maintain automated offsite backups with the 3-2-1 rule, and train employees on phishing awareness. Conduct regular security audits and penetration testing.\nlex: protect business data security cybersecurity\nlex: data protection encryption backup strategy\nlex: business data security firewall access control\nvec: what are the most important steps to protect sensitive business data from breaches and loss?\nvec: how should a business implement data protection measures including encryption, backups, and access controls?"}
-{"input": "what is cellular respiration", "output": "hyde: Cellular respiration is the metabolic process by which cells break down glucose (C6H12O6) to produce ATP. It occurs in three stages: glycolysis (in the cytoplasm, producing 2 ATP), the Krebs cycle (in the mitochondrial matrix, producing 2 ATP), and the electron transport chain (on the inner mitochondrial membrane, producing 34 ATP).\nlex: cellular respiration ATP glucose\nlex: cellular respiration glycolysis Krebs cycle\nlex: aerobic respiration mitochondria electron transport\nvec: what is cellular respiration and how do cells convert glucose into ATP energy?\nvec: what are the three stages of cellular respiration: glycolysis, the Krebs cycle, and the electron transport chain?"}
-{"input": "how technology impacts scientific research", "output": "hyde: Technology has transformed scientific research through high-throughput sequencing (enabling genomics), electron microscopy (revealing molecular structures), supercomputers (running complex simulations), and machine learning (identifying patterns in massive datasets). AI tools like AlphaFold have predicted protein structures that took decades to solve experimentally.\nlex: technology impact scientific research tools\nlex: technology advances science instruments computing\nlex: AI machine learning scientific discovery\nvec: how has modern technology transformed the way scientific research is conducted?\nvec: what role do computing, AI, and advanced instruments play in accelerating scientific discovery?"}
-{"input": "how wearable technology is evolving", "output": "hyde: Wearable technology has evolved from basic step counters to sophisticated health monitors. Modern smartwatches track heart rate, blood oxygen, ECG, sleep stages, and skin temperature. Emerging features include continuous glucose monitoring, blood pressure sensing, and AI-powered health alerts that can detect atrial fibrillation and sleep apnea.\nlex: wearable technology evolution smartwatch fitness\nlex: wearable tech health monitoring sensors 2025 2026\nlex: wearable devices Apple Watch Garmin health tracking\nvec: how is wearable technology evolving in terms of health monitoring and smart features?\nvec: what are the latest advances in wearable devices for fitness tracking and medical diagnostics?"}
-{"input": "what is the significance of compassion in ethics?", "output": "hyde: Schopenhauer argued that compassion (Mitleid) is the foundation of all morality, as it allows us to recognize the suffering of others as our own. The ethics of care, developed by Carol Gilligan and Nel Noddings, places compassionate relationships at the center of moral reasoning, contrasting with abstract rule-based approaches like Kantianism.\nlex: compassion ethics moral philosophy\nlex: compassion morality empathy ethical theory\nlex: ethics of care compassion Schopenhauer\nvec: why is compassion considered a central virtue in ethical philosophy?\nvec: how do ethical theories incorporate compassion as a foundation for moral behavior?"}
-{"input": "what is the principle of double effect", "output": "hyde: The principle of double effect, originating from Thomas Aquinas, holds that an action with both good and bad effects is morally permissible if: (1) the action itself is not wrong, (2) the bad effect is not intended, (3) the bad effect is not the means to the good effect, and (4) the good effect outweighs the bad. It's commonly applied in medical ethics and just war theory.\nlex: principle of double effect ethics\nlex: double effect doctrine Aquinas moral philosophy\nlex: double effect intended foreseen consequences\nvec: what is the principle of double effect and how does it apply in moral philosophy?\nvec: how does the doctrine of double effect distinguish between intended and foreseen consequences of an action?"}
-{"input": "what are the latest trends in interior design", "output": "hyde: Top interior design trends for 2025-2026 include warm earth tones replacing cool grays, curved furniture and organic shapes, bold textured walls, sustainable and natural materials like rattan and stone, statement lighting, and maximalist layering. Warm woods, boucl\u00e9 fabrics, and vintage-inspired pieces continue to dominate living spaces.\nlex: interior design trends 2025 2026\nlex: interior design trends colors materials\nlex: home decor trends furniture styles\nvec: what are the newest interior design trends for homes in 2025 and 2026?\nvec: which colors, materials, and furniture styles are trending in interior design right now?"}
-{"input": "how to research candidates before voting", "output": "hyde: Before voting, check nonpartisan voter guides from Vote411.org (League of Women Voters) or BallotReady. Review candidates' official websites for policy positions, and check voting records on VoteSmart.org. Read local newspaper endorsements, watch candidate debates, and verify claims on fact-checking sites like PolitiFact.\nlex: research candidates before voting election\nlex: voter guide candidate positions issues\nlex: candidate research voting record platform\nvec: how can voters research political candidates and their positions before an election?\nvec: what resources help voters compare candidates' platforms and voting records before casting a ballot?"}
-{"input": "how did the roman empire impact culture?", "output": "hyde: The Roman Empire's cultural legacy includes Latin (the root of Romance languages), Roman law (the basis of civil law systems worldwide), architectural innovations like arches, aqueducts, and concrete, republican government concepts, road networks, and the spread of Christianity. Roman art, literature, and engineering influenced Western civilization for centuries.\nlex: Roman Empire cultural impact legacy\nlex: Roman Empire influence law language architecture\nlex: Rome culture art Latin Western civilization\nvec: how did the Roman Empire shape Western culture, law, and language?\nvec: what lasting cultural impacts did the Roman Empire have on architecture, government, and society?"}
-{"input": "explain monotheism", "output": "hyde: Monotheism is the belief in a single, all-powerful God. The three major monotheistic religions are Judaism, Christianity, and Islam, all tracing their roots to Abraham. Judaism was among the earliest monotheistic faiths, emerging around 2000 BCE. Monotheism contrasts with polytheism (many gods) and differs from henotheism (one chief god among many).\nlex: monotheism one God religion\nlex: monotheism Christianity Islam Judaism\nlex: monotheism definition history theology\nvec: what is monotheism and which major world religions practice the belief in one God?\nvec: how did monotheism develop historically and what distinguishes it from polytheism?"}
-{"input": "how to replace windshield wipers?", "output": "hyde: Lift the wiper arm away from the windshield. Press the small tab where the blade meets the arm and slide the old blade off the hook. Slide the new blade onto the J-hook until it clicks into place. Lower the arm back gently. Check your owner's manual or an auto parts store's fit guide for the correct blade size.\nlex: replace windshield wipers installation\nlex: change wiper blades car DIY\nlex: windshield wiper replacement size\nvec: how do you replace windshield wiper blades on a car step by step?\nvec: what size windshield wipers does my car need and how do I install them?"}
-{"input": "what are tectonic plates", "output": "hyde: Tectonic plates are massive slabs of Earth's lithosphere that float on the semi-fluid asthenosphere. There are 15 major plates that move 1-10 cm per year. At convergent boundaries, plates collide causing mountains and subduction zones; at divergent boundaries, plates separate creating mid-ocean ridges; at transform boundaries, plates slide past each other causing earthquakes.\nlex: tectonic plates Earth crust geology\nlex: plate tectonics continental drift boundaries\nlex: tectonic plates earthquake volcano subduction\nvec: what are tectonic plates and how does plate tectonics explain earthquakes and volcanic activity?\nvec: how do tectonic plates move and interact at convergent, divergent, and transform boundaries?"}
-{"input": "airbnb bookings", "output": "hyde: To book on Airbnb, search by destination and dates, filter by price, type, and amenities, and review photos and guest reviews. Request to book or use Instant Book listings for immediate confirmation. Airbnb charges a service fee of 14-16%. Check the cancellation policy (Flexible, Moderate, or Strict) before confirming.\nlex: Airbnb bookings reservations how to\nlex: Airbnb book rental property listing\nlex: Airbnb booking tips cancellation policy\nvec: how do you book a rental property on Airbnb and what should you know before reserving?\nvec: what are the Airbnb booking policies including cancellation, fees, and payment?"}
-{"input": "how do you develop a writing voice?", "output": "hyde: Developing a writing voice requires reading widely, writing consistently, and paying attention to what feels natural. Write the way you think and speak. Experiment with sentence length, word choice, and rhythm. Read your work aloud to hear your voice. Imitate writers you admire, then gradually let your own patterns emerge through regular practice.\nlex: develop writing voice style\nlex: writing voice tone author style\nlex: find unique writing voice techniques\nvec: how does a writer develop their own unique writing voice and style?\nvec: what exercises and practices help writers find and strengthen their authentic voice?"}
-{"input": "what is devotion in religious context", "output": "hyde: Religious devotion refers to profound love, loyalty, and dedication to God or a divine reality, expressed through prayer, worship, and spiritual practice. In Hinduism, bhakti (devotion) is a path to liberation through loving surrender to a deity. In Christianity, devotion involves daily prayer, scripture reading, and sacramental participation.\nlex: devotion religion religious worship\nlex: devotion faith prayer bhakti piety\nlex: religious devotion spiritual practice\nvec: what does devotion mean in a religious context and how is it practiced across faiths?\nvec: how do different religions express devotion through prayer, worship, and spiritual discipline?"}
-{"input": "what is skepticism in philosophy", "output": "hyde: Philosophical skepticism questions whether certain knowledge is possible. Pyrrhonian skepticism (from Pyrrho of Elis) suspends judgment on all claims, arguing that for every argument there is an equally strong counterargument. Descartes used methodological doubt\u2014doubting everything that could be doubted\u2014to arrive at \"cogito ergo sum\" as an indubitable foundation.\nlex: skepticism philosophy epistemology doubt\nlex: philosophical skepticism Pyrrhonism Descartes\nlex: skepticism knowledge certainty questioning\nvec: what is philosophical skepticism and how does it question the possibility of knowledge?\nvec: how did Pyrrhonian skepticism and Cartesian doubt influence Western philosophical thought?"}
-{"input": "fix teeth", "output": "hyde: Common dental repairs include bonding (composite resin applied to chipped teeth, $100-400), porcelain veneers (thin shells covering the front surface, $500-2500 per tooth), crowns (caps covering the entire tooth, $800-1500), and dental implants for missing teeth ($3000-5000). Treatment depends on the extent of damage.\nlex: fix teeth dental repair options\nlex: broken chipped teeth treatment dentist\nlex: dental restoration crowns veneers bonding\nvec: what are the options for fixing damaged, chipped, or broken teeth?\nvec: how do dentists repair teeth using crowns, veneers, bonding, and other dental treatments?"}
-{"input": "what are social media photography tips?", "output": "hyde: Shoot during golden hour (the hour after sunrise or before sunset) for warm, flattering light. Use the rule of thirds grid on your phone camera. Keep backgrounds clean and uncluttered. Edit consistently using the same preset or filter for a cohesive feed. Shoot in natural light whenever possible and avoid using flash.\nlex: social media photography tips Instagram\nlex: phone photography social media lighting composition\nlex: Instagram photo tips editing filters\nvec: what are the best photography tips for creating engaging social media content?\nvec: how do you take better photos for Instagram and other social media platforms using a phone?"}
-{"input": "what is gerrymandering", "output": "hyde: Gerrymandering is the manipulation of electoral district boundaries to favor a particular political party. Two main techniques are \"packing\" (concentrating opposition voters into a few districts) and \"cracking\" (spreading them across many districts to dilute their vote). The term dates to 1812 when Governor Elbridge Gerry approved a district shaped like a salamander.\nlex: gerrymandering redistricting electoral districts\nlex: gerrymandering political manipulation voting\nlex: gerrymandering packing cracking congressional\nvec: what is gerrymandering and how does it manipulate electoral district boundaries?\nvec: how does gerrymandering use techniques like packing and cracking to influence election outcomes?"}
-{"input": "how do the arts contribute to moral understanding?", "output": "hyde: Literature, theater, and film place audiences in the shoes of characters facing moral dilemmas, cultivating empathy and ethical reflection. Martha Nussbaum argues that novels develop moral imagination by exposing readers to lives unlike their own. Art invites us to confront injustice, question assumptions, and feel the weight of ethical choices.\nlex: arts moral understanding ethics\nlex: art literature ethics empathy\nlex: arts moral education philosophical perspective\nvec: how do the arts such as literature, film, and visual art contribute to moral understanding?\nvec: in what ways do artistic works cultivate empathy and ethical awareness in audiences?"}
-{"input": "what are the main beliefs of jainism?", "output": "hyde: Jainism's core beliefs include ahimsa (non-violence toward all living beings), anekantavada (many-sidedness of truth), and aparigraha (non-attachment). Jains believe the soul (jiva) accumulates karma through actions and must purify itself through ethical living, asceticism, and meditation to achieve moksha (liberation from the cycle of rebirth).\nlex: Jainism beliefs principles religion\nlex: Jainism ahimsa non-violence karma\nlex: Jain philosophy anekantavada moksha\nvec: what are the core beliefs and principles of Jainism as a religion?\nvec: how does Jainism emphasize non-violence (ahimsa) and what are its main philosophical tenets?"}
-{"input": "how do philosophers define happiness", "output": "hyde: Aristotle defined happiness (eudaimonia) as flourishing through virtuous activity over a complete life, not mere pleasure. Epicurus identified happiness with ataraxia (tranquility) and the absence of pain. Utilitarians like Mill equated happiness with pleasure but distinguished higher (intellectual) from lower (bodily) pleasures. Modern positive psychology studies happiness as subjective well-being.\nlex: philosophers define happiness philosophy\nlex: happiness eudaimonia Aristotle hedonism\nlex: philosophical theories happiness well-being\nvec: how have major philosophers throughout history defined happiness and well-being?\nvec: what is the difference between Aristotle's eudaimonia and hedonistic views of happiness?"}
-{"input": "how to train a dog to sit", "output": "hyde: Hold a treat close to your dog's nose, then slowly move your hand up so the dog's head follows the treat and their bottom lowers. The moment they sit, say \"sit,\" give the treat, and praise them. Repeat 5-10 times per session, 2-3 sessions daily. Within a week, most dogs learn to sit on verbal command alone.\nlex: train dog sit command\nlex: dog training sit positive reinforcement\nlex: teach puppy sit treat method\nvec: what is the step-by-step method for training a dog to sit on command?\nvec: how do you use positive reinforcement to teach a dog or puppy the sit command?"}
-{"input": "how to choose a family-friendly restaurant?", "output": "hyde: Look for restaurants with a dedicated kids' menu, high chairs, and a casual atmosphere that tolerates noise. Check Google or Yelp reviews filtered for \"family-friendly.\" Booth seating, crayons or activity sheets, and an early dinner option are good signs. Fast-casual restaurants often work well since kids don't have to wait long for food.\nlex: family-friendly restaurant kids menu\nlex: choose restaurant families children\nlex: kid-friendly dining options reviews\nvec: how do you find and choose a family-friendly restaurant suitable for dining with children?\nvec: what features make a restaurant good for families with young kids?"}
-{"input": "what is historical context in literature?", "output": "hyde: Historical context in literature refers to the social, political, economic, and cultural conditions during the time a work was written. Understanding that \"1984\" was written in 1948 during the rise of totalitarian states deepens its meaning. Historical context helps readers interpret themes, character motivations, and the author's intent within their time period.\nlex: historical context literature analysis\nlex: historical context literary criticism period\nlex: literature historical background social conditions\nvec: what does historical context mean when analyzing and interpreting a work of literature?\nvec: how does understanding the historical period and social conditions help interpret literary texts?"}
-{"input": "where to buy mid-century modern furniture", "output": "hyde: Shop mid-century modern furniture at West Elm, Design Within Reach (DWR), and Article for contemporary reproductions. For vintage originals, check Chairish, 1stDibs, and local estate sales. IKEA offers affordable MCM-inspired pieces. Facebook Marketplace and Craigslist often have authentic Eames, Knoll, and Herman Miller pieces at lower prices.\nlex: buy mid-century modern furniture store\nlex: mid-century modern furniture online vintage\nlex: MCM furniture West Elm Design Within Reach\nvec: where can I buy authentic or reproduction mid-century modern furniture?\nvec: what are the best stores and websites for purchasing mid-century modern style furniture?"}
-{"input": "how to transition kids to new schools?", "output": "hyde: Visit the new school together before the first day so the building feels familiar. Meet the teacher and tour the classroom. Maintain routines at home for stability. Encourage your child to talk about their feelings and validate their anxiety. Arrange playdates with new classmates early on, and stay in contact with teachers during the first few weeks.\nlex: transition kids new school tips\nlex: children changing schools adjustment\nlex: help child new school anxiety transfer\nvec: how can parents help their children transition smoothly to a new school?\nvec: what strategies help kids adjust emotionally and socially when changing schools?"}
-{"input": "what is graphic design?", "output": "hyde: Graphic design is the craft of creating visual content to communicate messages. Designers use typography, color theory, layout, and imagery to create logos, websites, posters, packaging, and more. Key tools include Adobe Photoshop, Illustrator, InDesign, and Figma. The field spans print design, web/UI design, branding, and motion graphics.\nlex: graphic design visual communication\nlex: graphic design typography layout color\nlex: graphic design tools Adobe Figma\nvec: what is graphic design and what skills and tools does a graphic designer use?\nvec: how does graphic design combine typography, color, and layout to communicate visually?"}
-{"input": "what is the latest iphone model", "output": "hyde: The iPhone 16 series launched in September 2024 with the A18 chip, a dedicated Camera Control button, and Apple Intelligence features. The iPhone 16 Pro and Pro Max feature a 48MP main camera, titanium design, and improved battery life. The iPhone 17 lineup is expected in September 2025.\nlex: latest iPhone model 2025 2026\nlex: newest iPhone Apple release\nlex: iPhone 17 features specs\nvec: what is the latest iPhone model released by Apple and what are its key features?\nvec: what are the specs and improvements in the newest iPhone compared to previous models?"}
-{"input": "where to find open access research papers", "output": "hyde: Access free research papers through PubMed Central (biomedical), arXiv (physics, math, CS), SSRN (social sciences), and DOAJ (Directory of Open Access Journals). Google Scholar often links to free PDF versions. Unpaywall is a browser extension that finds legal free versions of paywalled papers. Many universities also maintain institutional repositories.\nlex: open access research papers free\nlex: open access journals articles database\nlex: free academic papers PubMed arXiv\nvec: where can I find free open access research papers and academic articles?\nvec: what databases and websites provide open access to peer-reviewed scientific papers?"}
-{"input": "how to improve interpersonal skills", "output": "hyde: Improve interpersonal skills by practicing active listening: maintain eye contact, avoid interrupting, and paraphrase what you heard. Ask open-ended questions to show genuine interest. Develop empathy by considering others' perspectives before responding. Practice assertive communication\u2014express your needs clearly while respecting others. Seek feedback on how you come across.\nlex: improve interpersonal skills communication\nlex: interpersonal skills active listening empathy\nlex: people skills social interaction workplace\nvec: what are effective ways to improve interpersonal and communication skills?\nvec: how can someone develop better listening, empathy, and social skills in personal and professional settings?"}
-{"input": "math model", "output": "hyde: A mathematical model uses equations and formulas to represent the behavior of a real-world system. For example, the SIR model uses differential equations to predict disease spread: dS/dt = -\u03b2SI, dI/dt = \u03b2SI - \u03b3I, dR/dt = \u03b3I. Models are validated by comparing predictions to observed data and refined iteratively.\nlex: mathematical model equations simulation\nlex: math modeling real-world applications\nlex: mathematical model differential equations optimization\nvec: what is a mathematical model and how is it used to represent real-world systems?\nvec: how do mathematicians build models using equations to simulate and predict outcomes?"}
-{"input": "what is digital transformation", "output": "hyde: Digital transformation is the process of using digital technologies to fundamentally change how an organization operates and delivers value. It goes beyond digitizing existing processes\u2014it involves rethinking business models, customer experiences, and operational workflows using cloud computing, AI, data analytics, and automation.\nlex: digital transformation definition strategy\nlex: digital transformation technology business process\nlex: digital transformation cloud automation data-driven\nvec: what is digital transformation and how does it change how organizations operate?\nvec: what are the key components and stages of digital transformation in a business?"}
-{"input": "how to improve project outcomes", "output": "hyde: Improve project outcomes by defining clear objectives and success criteria upfront, engaging stakeholders early and often, breaking work into short iterations with regular checkpoints, and managing risks proactively. Use retrospectives to learn from each phase. Projects with clear scope, executive sponsorship, and empowered teams are 2-3x more likely to succeed.\nlex: improve project outcomes management\nlex: project success factors planning execution\nlex: project management methodology agile results\nvec: what strategies and practices improve project outcomes and increase the chance of success?\nvec: how can project managers improve delivery, stakeholder satisfaction, and results?"}
-{"input": "what is the relationship between ethics and happiness?", "output": "hyde: Aristotle argued that happiness (eudaimonia) is achieved through virtuous living\u2014not pleasure alone, but the active exercise of reason and moral virtue over a lifetime. The Stoics similarly held that virtue is sufficient for happiness. Utilitarianism inverts this: moral actions are those that maximize total happiness. The question of whether being moral makes you happy remains debated.\nlex: ethics happiness philosophy relationship\nlex: virtue ethics happiness eudaimonia Aristotle\nlex: morality well-being ethical living\nvec: what is the philosophical relationship between living ethically and being happy?\nvec: how does Aristotle argue that virtue and ethics are connected to happiness and human flourishing?"}
-{"input": "how does philosophy explore the nature of truth?", "output": "hyde: Philosophy examines truth through several theories. The correspondence theory holds that truth is agreement between a proposition and reality. The coherence theory says a statement is true if it fits consistently within a system of beliefs. The pragmatic theory (James, Dewey) defines truth as what works in practice. Deflationary theories argue that \"true\" adds nothing beyond the assertion itself.\nlex: philosophy truth nature theories\nlex: correspondence coherence pragmatic theory truth\nlex: truth philosophy epistemology logic\nvec: how do philosophical theories explain the nature of truth and what makes a statement true?\nvec: what are the main theories of truth in philosophy such as correspondence, coherence, and pragmatic theories?"}
-{"input": "rain drop", "output": "hyde: Raindrops form when water vapor condenses around tiny particles (condensation nuclei) in clouds. As droplets collide and merge, they grow heavy enough to fall. Contrary to the teardrop image, falling raindrops are actually shaped like hamburger buns\u2014flattened on the bottom by air resistance. Average raindrops are 1-2mm in diameter and fall at about 20 mph.\nlex: raindrop formation size shape\nlex: raindrop water cycle precipitation\nlex: rain droplet physics terminal velocity\nvec: how do raindrops form and what determines their size and shape as they fall?\nvec: what is the science behind raindrop formation in the water cycle and precipitation?"}
-{"input": "what is magical realism?", "output": "hyde: Magical realism is a literary genre in which supernatural elements appear in an otherwise realistic setting, treated as ordinary by the characters. Gabriel Garcia Marquez's \"One Hundred Years of Solitude\" is the quintessential example, where events like a character ascending to heaven while hanging laundry are narrated matter-of-factly alongside everyday life in Macondo.\nlex: magical realism literary genre\nlex: magical realism Garcia Marquez literature\nlex: magical realism Latin American fiction examples\nvec: what is magical realism as a literary genre and what are its defining characteristics?\nvec: how do authors like Gabriel Garcia Marquez blend the magical and mundane in magical realism?"}
-{"input": "how to write a film review", "output": "hyde: Start with a hook\u2014a striking observation about the film. Provide a brief, spoiler-free plot summary (2-3 sentences). Evaluate the directing, acting, cinematography, screenplay, and score. Support your opinion with specific scenes or examples. Address who would enjoy the film and rate it on your chosen scale. Keep the review between 400-800 words.\nlex: write film review movie critique\nlex: film review structure format examples\nlex: movie review writing tips analysis\nvec: how do you write a well-structured and engaging film review?\nvec: what elements should be included in a film review such as plot summary, analysis, and rating?"}
-{"input": "what is the current inflation rate", "output": "hyde: The U.S. Bureau of Labor Statistics measures inflation through the Consumer Price Index (CPI), which tracks the average change in prices paid by consumers for goods and services. The annual inflation rate is calculated by comparing the current CPI to the same month one year prior. Check bls.gov/cpi for the latest monthly release.\nlex: current inflation rate CPI 2025 2026\nlex: inflation rate United States economy\nlex: consumer price index inflation percentage\nvec: what is the current U.S. inflation rate and how is it measured by the CPI?\nvec: what is the latest consumer price index data showing the annual inflation rate?"}
-{"input": "what is the function of dialogue?", "output": "hyde: Dialogue serves multiple functions: it conveys information between characters, reveals personality and motivation, advances the plot, and creates tension. In everyday communication, dialogue enables mutual understanding and negotiation of meaning.\nlex: dialogue function purpose communication\nlex: dialogue conversation role\nvec: what purpose does dialogue serve in communication and storytelling\nvec: how does dialogue function in literature and everyday interaction"}
-{"input": "what is the importance of peer review", "output": "hyde: Peer review is the cornerstone of scientific publishing. Before a paper is accepted, independent experts evaluate the methodology, data analysis, and conclusions. This process catches errors, prevents fraudulent claims, and maintains the credibility of published research.\nlex: peer review importance scientific publishing\nlex: peer review process academic research\nvec: why is peer review important in academic and scientific publishing\nvec: how does the peer review process ensure quality in research papers"}
-{"input": "what is the impact of the printing press", "output": "hyde: Gutenberg's printing press, invented around 1440, revolutionized the production of books. By making texts affordable and widely available, it increased literacy rates, enabled the Protestant Reformation, and accelerated the Scientific Revolution across Europe.\nlex: printing press impact history Gutenberg\nlex: printing press effects literacy knowledge\nvec: how did the invention of the printing press change society and the spread of knowledge\nvec: what were the historical consequences of Gutenberg's printing press"}
-{"input": "what is open science", "output": "hyde: Open science is a movement to make scientific research, data, and dissemination accessible to all. It encompasses open access publishing, open data sharing, open-source software, and transparent methodologies, aiming to accelerate discovery through collaboration.\nlex: open science definition principles\nlex: open access open data research transparency\nvec: what does open science mean and what are its core principles\nvec: how does open science promote transparency and accessibility in research"}
-{"input": "swim class", "output": "hyde: Our swim classes are available for all ages and skill levels. Beginner classes focus on water safety, floating, and basic strokes. Intermediate classes cover freestyle, backstroke, and treading water. Sessions run 30-45 minutes with certified instructors.\nlex: swimming classes lessons beginner\nlex: swim class schedule enrollment\nvec: where can I find swimming classes for beginners or children\nvec: what should I expect from a swimming lesson and how to enroll"}
-{"input": "what is the bhagavad gita", "output": "hyde: The Bhagavad Gita is a 700-verse Hindu scripture that forms part of the Mahabharata epic. It is a dialogue between Prince Arjuna and the god Krishna, addressing duty (dharma), devotion (bhakti), knowledge (jnana), and selfless action (karma yoga).\nlex: Bhagavad Gita Hindu scripture meaning\nlex: Bhagavad Gita Krishna Arjuna teachings\nvec: what is the Bhagavad Gita and what are its central teachings\nvec: what role does the Bhagavad Gita play in Hindu philosophy and practice"}
-{"input": "how does plant photosynthesis work", "output": "hyde: Photosynthesis occurs in chloroplasts. In the light reactions, chlorophyll absorbs sunlight to split water molecules, producing ATP and NADPH. In the Calvin cycle, these molecules drive the fixation of CO2 into glucose, releasing oxygen as a byproduct.\nlex: photosynthesis process plants chlorophyll\nlex: light reactions Calvin cycle carbon dioxide\nvec: how do plants convert sunlight into energy through photosynthesis\nvec: what are the steps of photosynthesis in plant cells"}
-{"input": "what is a black hole", "output": "hyde: A black hole is a region in space where gravity is so intense that nothing, not even light, can escape. It forms when a massive star collapses at the end of its life. The boundary is called the event horizon, beyond which lies the singularity.\nlex: black hole definition physics space\nlex: black hole event horizon singularity\nvec: what is a black hole and how does it form in space\nvec: how do black holes work according to general relativity"}
-{"input": "how ecosystems function", "output": "hyde: Ecosystems function through interconnected processes: producers capture solar energy via photosynthesis, consumers transfer energy through food webs, and decomposers recycle nutrients back into the soil. Water, carbon, and nitrogen cycle continuously through biotic and abiotic components.\nlex: ecosystem function energy flow nutrient cycling\nlex: ecosystems trophic levels food web\nvec: how do ecosystems function through energy flow and nutrient cycling\nvec: what are the key processes that keep ecosystems balanced and healthy"}
-{"input": "how to increase home resale value", "output": "hyde: Kitchen and bathroom remodels offer the highest ROI, typically recovering 60-80% of costs. Other high-value improvements include replacing the front door, adding a deck, and upgrading to energy-efficient windows. Fresh paint and curb appeal landscaping are low-cost, high-impact upgrades.\nlex: increase home resale value renovations\nlex: home improvement ROI property value\nvec: what home improvements increase resale value the most\nvec: how can I boost my home's market price before selling"}
-{"input": "how to design an effective scientific study", "output": "hyde: An effective study begins with a clear hypothesis and defined variables. Choose an appropriate design (randomized controlled trial, cohort, etc.), calculate the required sample size for statistical power, establish controls, and pre-register your protocol to reduce bias.\nlex: scientific study design methodology\nlex: research design controls variables sample size\nvec: how do you design a rigorous and effective scientific study\nvec: what steps are involved in planning a well-controlled research experiment"}
-{"input": "how to set up a campfire", "output": "hyde: To build a campfire, clear a fire ring down to bare soil. Place a tinder bundle of dry leaves or paper in the center. Stack small kindling sticks in a teepee shape around it. Light the tinder and gradually add larger logs as the fire grows. Keep water nearby to extinguish.\nlex: campfire setup build fire outdoors\nlex: campfire fire pit kindling tinder logs\nvec: how do you properly build and start a campfire outdoors\nvec: what materials and steps are needed to set up a safe campfire"}
-{"input": "where to learn digital marketing", "output": "hyde: Google Digital Garage offers a free Fundamentals of Digital Marketing course with certification. HubSpot Academy covers inbound marketing and content strategy. Coursera and Udemy feature paid courses on SEO, PPC, email marketing, and social media advertising.\nlex: digital marketing courses online training\nlex: learn digital marketing SEO social media\nvec: where can I take courses to learn digital marketing skills\nvec: what are the best online platforms for learning SEO, social media, and digital advertising"}
-{"input": "how to remove car dents?", "output": "hyde: For small dents, try the boiling water method on plastic bumpers or use a suction cup dent puller. Paintless dent repair (PDR) uses metal rods to push dents out from behind the panel. For deeper dents, apply body filler, sand smooth, and repaint.\nlex: car dent removal DIY repair\nlex: paintless dent repair PDR technique\nvec: how can I remove dents from my car at home without repainting\nvec: what are the methods for fixing small dents on a car body"}
-{"input": "what is a moral code", "output": "hyde: A moral code is a set of principles or rules that define right and wrong conduct. It may be derived from religious teachings, cultural traditions, philosophical reasoning, or personal reflection. Examples include the Ten Commandments, Kantian ethics, and utilitarianism.\nlex: moral code definition ethics principles\nlex: moral code rules behavior right wrong\nvec: what is a moral code and how does it guide human behavior\nvec: how do societies and individuals develop a set of moral principles"}
-{"input": "what is cloud computing", "output": "hyde: Cloud computing delivers computing resources\u2014servers, storage, databases, networking, and software\u2014over the internet on a pay-as-you-go basis. The three main service models are Infrastructure as a Service (IaaS), Platform as a Service (PaaS), and Software as a Service (SaaS).\nlex: cloud computing definition services\nlex: cloud computing IaaS PaaS SaaS\nvec: what is cloud computing and how do cloud services work\nvec: what are the different types of cloud computing services like IaaS, PaaS, and SaaS"}
-{"input": "how to practice meditation", "output": "hyde: Start with 5-10 minutes daily. Sit comfortably, close your eyes, and focus on your breath. When thoughts arise, notice them without judgment and gently return attention to breathing. Guided meditation apps like Headspace or Insight Timer can help beginners build consistency.\nlex: meditation practice techniques beginners\nlex: mindfulness meditation breathing focus\nvec: how do I start a daily meditation practice as a beginner\nvec: what are simple meditation techniques for reducing stress and improving focus"}
-{"input": "what is xeriscaping?", "output": "hyde: Xeriscaping is a landscaping approach that minimizes water use by selecting drought-tolerant native plants, improving soil with compost, using efficient drip irrigation, applying mulch to retain moisture, and reducing lawn area. It originated in arid regions of the western United States.\nlex: xeriscaping drought-tolerant landscaping water conservation\nlex: xeriscape garden design dry climate plants\nvec: what is xeriscaping and how does it reduce water usage in landscaping\nvec: how do you design a xeriscape garden with drought-resistant plants"}
-{"input": "what are the main beliefs of buddhism", "output": "hyde: Buddhism is founded on the Four Noble Truths: life involves suffering (dukkha), suffering arises from craving (tanha), suffering can end (nirodha), and the path to its end is the Noble Eightfold Path. Key concepts include karma, rebirth, impermanence (anicca), and non-self (anatta).\nlex: Buddhism beliefs Four Noble Truths Eightfold Path\nlex: Buddhist teachings karma dharma nirvana\nvec: what are the core beliefs and teachings of Buddhism\nvec: what do Buddhists believe about suffering, enlightenment, and the path to nirvana"}
-{"input": "how to reduce carbon footprint?", "output": "hyde: The biggest personal reductions come from driving less or switching to an EV, flying less frequently, eating less red meat, improving home insulation, and switching to renewable energy. A plant-rich diet can cut food-related emissions by up to 50%.\nlex: reduce carbon footprint emissions tips\nlex: lower carbon footprint energy transportation diet\nvec: what are effective ways to reduce my personal carbon footprint\nvec: how can individuals lower their greenhouse gas emissions in daily life"}
-{"input": "how to save for a child's education?", "output": "hyde: A 529 plan is one of the most tax-advantaged ways to save for education. Contributions grow tax-free, and withdrawals for qualified expenses (tuition, books, room and board) are also tax-free. Many states offer additional tax deductions for contributions.\nlex: save child education fund college\nlex: 529 plan education savings account\nvec: how should I save money for my child's college education\nvec: what are the best investment accounts for saving for a child's education"}
-{"input": "what is the best way to learn python programming?", "output": "hyde: Start with an interactive tutorial like Python.org's official tutorial or Codecademy's Python course. Practice daily on sites like LeetCode or HackerRank. Build small projects\u2014a calculator, web scraper, or to-do app\u2014to solidify concepts. Read \"Automate the Boring Stuff with Python\" for practical applications.\nlex: learn Python programming beginner tutorial\nlex: Python programming course exercises projects\nvec: what is the most effective way to learn Python programming from scratch\nvec: which Python courses and resources are best for beginners learning to code"}
-{"input": "how to grow roses from cuttings?", "output": "hyde: Take a 6-8 inch cutting from a healthy rose stem just below a leaf node. Remove lower leaves, dip the cut end in rooting hormone, and insert into moist potting mix. Cover with a plastic bag to maintain humidity. Roots typically form in 4-8 weeks. Transplant once established.\nlex: grow roses cuttings propagation\nlex: rose cutting rooting hormone planting\nvec: how do you propagate roses from stem cuttings at home\nvec: what is the step-by-step process for rooting rose cuttings"}
-{"input": "sustainable architecture", "output": "hyde: Sustainable architecture minimizes environmental impact through passive solar design, natural ventilation, high-performance insulation, and renewable energy integration. Materials like cross-laminated timber, recycled steel, and low-VOC finishes reduce embodied carbon.\nlex: sustainable architecture green building design\nlex: sustainable building materials energy efficient\nvec: what is sustainable architecture and what design principles does it follow\nvec: how do architects design energy-efficient and environmentally friendly buildings"}
-{"input": "what is the concept of moral luck", "output": "hyde: Moral luck, introduced by Thomas Nagel and Bernard Williams in 1976, refers to situations where moral judgment depends on factors beyond a person's control. A drunk driver who arrives home safely is judged differently from one who kills a pedestrian, despite identical recklessness.\nlex: moral luck philosophy concept\nlex: moral luck Thomas Nagel Bernard Williams\nvec: what is the philosophical concept of moral luck and why is it controversial\nvec: how does moral luck challenge our ideas about responsibility and blame"}
-{"input": "task wait", "output": "hyde: Use `await task` in async/await patterns to wait for completion. In C#, `Task.Wait()` blocks synchronously while `await` yields control. In Python, `await asyncio.gather(*tasks)` waits for multiple coroutines. Use timeouts to prevent indefinite blocking.\nlex: async task wait await\nlex: task wait timeout concurrency\nvec: how to wait for an asynchronous task to complete in programming\nvec: how to use await or task wait for concurrent operations"}
-{"input": "latest findings in climate science", "output": "hyde: Recent studies in 2025 confirm that global average temperatures have exceeded 1.5\u00b0C above pre-industrial levels. Ocean heat content reached record highs, and Arctic sea ice extent continued its decline. New research links accelerated ice sheet loss in Greenland and Antarctica to rising sea levels.\nlex: climate science research findings 2025 2026\nlex: climate change latest studies temperature emissions\nvec: what are the most recent scientific findings about climate change in 2025-2026\nvec: what do the latest climate science studies reveal about global warming trends"}
-{"input": "how to lose weight fast?", "output": "hyde: Safe weight loss is 1-2 pounds per week through a calorie deficit of 500-1000 calories daily. Combine a protein-rich diet with strength training and cardio. Avoid crash diets\u2014they cause muscle loss and metabolic slowdown. Drink water, sleep 7-9 hours, and track food intake for accountability.\nlex: lose weight fast safe methods\nlex: weight loss diet exercise calorie deficit\nvec: what are safe and effective methods to lose weight quickly\nvec: how can I create a calorie deficit to lose weight without harming my health"}
-{"input": "ukraine", "output": "hyde: Ukraine is a country in Eastern Europe with a population of approximately 44 million. Since February 2022, it has been engaged in a full-scale war following Russia's invasion. Kyiv is the capital. Ukraine has deep historical ties to both European and post-Soviet geopolitics.\nlex: Ukraine country history conflict\nlex: Ukraine war geopolitics Kyiv\nvec: what is the current situation in Ukraine and the ongoing conflict\nvec: what is the history and geopolitical context of Ukraine"}
-{"input": "http client", "output": "hyde: An HTTP client sends requests to web servers and processes responses. In JavaScript, use `fetch()` or `axios`. In Python, use `requests` or `httpx`. In Go, use `net/http`. Typical methods include GET, POST, PUT, DELETE. Set headers, handle timeouts, and parse JSON responses.\nlex: HTTP client library request\nlex: HTTP client fetch API REST\nvec: how to make HTTP requests using an HTTP client library\nvec: which HTTP client libraries are available for making API calls in different languages"}
-{"input": "how to vlog with a smartphone", "output": "hyde: To vlog with a smartphone, use the rear camera for higher quality. Invest in a small tripod or gimbal for stability, a clip-on microphone for clear audio, and a ring light for indoor filming. Shoot in 1080p or 4K, frame at eye level, and edit with apps like CapCut or InShot.\nlex: vlog smartphone video recording tips\nlex: smartphone vlogging equipment setup\nvec: how do I start vlogging using only my smartphone\nvec: what equipment and techniques make smartphone vlogs look professional"}
-{"input": "what are the elements of short stories?", "output": "hyde: The essential elements of a short story are plot (the sequence of events), character (the people involved), setting (time and place), conflict (the central struggle), theme (the underlying message), and point of view (the narrative perspective). Short stories typically focus on a single incident.\nlex: short story elements plot character setting\nlex: short story structure literary elements\nvec: what are the key literary elements that make up a short story\nvec: how are plot, character, setting, and theme used in short story writing"}
-{"input": "how to fix car key fob?", "output": "hyde: If your key fob stops working, replace the battery first\u2014open the case with a flat screwdriver and swap in a new CR2032 or CR2025 coin cell. If it still fails, reprogram it: consult your owner's manual for the key-turn sequence or visit a dealer for re-pairing.\nlex: car key fob fix repair battery replacement\nlex: key fob not working reprogram\nvec: how do I fix a car key fob that stopped working\nvec: how to replace the battery or reprogram a car key fob"}
-{"input": "how to grow orchids indoors?", "output": "hyde: Phalaenopsis orchids thrive indoors with bright indirect light, such as an east-facing window. Water once a week by soaking the roots, then draining completely. Maintain 50-70% humidity with a pebble tray. Fertilize biweekly with diluted orchid fertilizer. Repot every 1-2 years in bark medium.\nlex: grow orchids indoors care guide\nlex: orchid indoor growing light water humidity\nvec: how do you care for orchids when growing them indoors\nvec: what light, water, and humidity conditions do indoor orchids need"}
-{"input": "how to prepare a scientific presentation", "output": "hyde: Structure your talk as: introduction with context, methods, key results, and conclusions. Use one main idea per slide. Minimize text\u2014use figures and graphs. Practice timing (typically 12 minutes for a 15-minute slot). Anticipate questions about methodology and limitations.\nlex: scientific presentation preparation slides\nlex: research talk conference presentation tips\nvec: how do you prepare and deliver an effective scientific presentation\nvec: what are tips for creating clear slides for a research conference talk"}
-{"input": "ai", "output": "hyde: Artificial intelligence (AI) refers to computer systems that perform tasks typically requiring human intelligence, such as recognizing speech, making decisions, and translating languages. Modern AI relies on machine learning, particularly deep neural networks and large language models (LLMs).\nlex: artificial intelligence AI machine learning\nlex: AI deep learning neural networks LLM\nvec: what is artificial intelligence and how does modern AI technology work\nvec: what are the main branches and applications of artificial intelligence"}
-{"input": "how to write a research proposal", "output": "hyde: A research proposal typically includes: title, abstract, introduction with background and significance, literature review, research questions or hypotheses, methodology, timeline, budget, and references. Clearly state the gap your research will fill and justify the chosen methods.\nlex: research proposal writing guide\nlex: research proposal structure sections\nvec: how do you write a strong research proposal for a grant or thesis\nvec: what sections and elements should a research proposal include"}
-{"input": "how to stop negative self-talk?", "output": "hyde: Cognitive behavioral therapy (CBT) teaches you to identify and challenge negative automatic thoughts. When you catch yourself thinking \"I always fail,\" reframe it: \"I struggled this time, but I've succeeded before.\" Keep a thought journal, practice self-compassion, and label thoughts as thoughts, not facts.\nlex: stop negative self-talk techniques\nlex: negative self-talk cognitive behavioral therapy\nvec: how can I stop negative self-talk and replace it with positive thinking\nvec: what psychological techniques help overcome critical inner dialogue"}
-{"input": "how scientific collaboration advances research", "output": "hyde: Multi-institutional collaboration allows researchers to share equipment, data, and expertise across disciplines. The Human Genome Project involved 20 institutions across six countries. Studies show that co-authored papers receive more citations and have higher reproducibility than single-author work.\nlex: scientific collaboration research advancement\nlex: interdisciplinary research teamwork co-authorship\nvec: how does collaboration between scientists accelerate research progress\nvec: why is interdisciplinary teamwork important in advancing scientific discovery"}
-{"input": "how to measure business performance", "output": "hyde: Key business performance metrics include revenue growth rate, net profit margin, customer acquisition cost (CAC), customer lifetime value (CLV), employee productivity, and return on investment (ROI). Use dashboards and quarterly reviews to track KPIs against targets.\nlex: business performance metrics KPIs\nlex: measure business performance revenue profit\nvec: what key performance indicators are used to measure business success\nvec: how do companies track and evaluate their business performance"}
-{"input": "how to volunteer for a political campaign", "output": "hyde: To volunteer, visit the candidate's website and fill out the volunteer form. Common roles include canvassing door-to-door, phone banking, text banking, organizing events, and driving voters to polls on election day. Most campaigns welcome volunteers of all experience levels.\nlex: volunteer political campaign election\nlex: campaign volunteering canvassing phone banking\nvec: how can I sign up to volunteer for a political campaign\nvec: what kinds of volunteer work are available on political campaigns"}
-{"input": "how to bake a chocolate cake?", "output": "hyde: Preheat oven to 350\u00b0F. Mix 2 cups flour, 2 cups sugar, 3/4 cup cocoa powder, 2 tsp baking soda, and 1 tsp salt. Add 2 eggs, 1 cup buttermilk, 1 cup hot coffee, and 1/2 cup oil. Pour into greased pans and bake 30-35 minutes. Frost with chocolate ganache.\nlex: chocolate cake recipe bake from scratch\nlex: baking chocolate cake ingredients instructions\nvec: how do I bake a moist chocolate cake from scratch at home\nvec: what is a simple recipe for homemade chocolate cake"}
-{"input": "how do mystics approach spirituality?", "output": "hyde: Mystics seek direct, personal experience of the divine through contemplation, prayer, and meditation. Christian mystics like Meister Eckhart pursued union with God; Sufi mystics practice dhikr (remembrance of God); and Hindu mystics use yoga and devotion to experience Brahman.\nlex: mystics spirituality mystical experience\nlex: mysticism spiritual practice contemplation\nvec: how do mystics across traditions approach spiritual experience and union with the divine\nvec: what practices and beliefs characterize mystical approaches to spirituality"}
-{"input": "how cultural festivals affect community bonding", "output": "hyde: Cultural festivals create shared experiences that reinforce collective identity. Studies show communities with regular festivals report higher levels of social trust and neighborly interaction. Events like Diwali, Carnival, and Lunar New Year bring together diverse groups through food, music, and ritual.\nlex: cultural festivals community bonding social cohesion\nlex: festivals community identity traditions\nvec: how do cultural festivals strengthen community bonds and social cohesion\nvec: what role do cultural celebrations play in bringing communities together"}
-{"input": "how to follow election results", "output": "hyde: Follow live election results on the Associated Press (AP) election page, which aggregates official county-level results. Major outlets like CNN, NYT, and BBC offer interactive maps. Sign up for push notifications from news apps. Official state election websites post certified results.\nlex: follow election results live tracking\nlex: election night results coverage 2026\nvec: how can I follow live election results on election night\nvec: what websites and apps provide real-time election result tracking"}
-{"input": "how to sell a car to a dealership?", "output": "hyde: Get your car's market value from Kelley Blue Book or Edmunds before visiting a dealer. Clean the car, gather maintenance records, and bring the title. Get quotes from multiple dealers. The dealer will inspect the car, run a vehicle history report, and make an offer based on condition and mileage.\nlex: sell car dealership trade-in value\nlex: selling car dealer offer negotiation\nvec: how do I sell my used car to a dealership and get a fair price\nvec: what steps should I follow when trading in or selling a car to a dealer"}
-{"input": "what is a conductor in physics", "output": "hyde: An electrical conductor is a material that allows electric current to flow freely through it. Metals like copper, silver, and aluminum are excellent conductors because they have free electrons in their outer shells that move easily when a voltage is applied. Conductivity depends on temperature and material structure.\nlex: conductor physics electrical conductivity\nlex: electrical conductor materials electrons\nvec: what is an electrical conductor and how does it work in physics\nvec: what makes certain materials good conductors of electricity"}
-{"input": "what is the significance of civil disobedience?", "output": "hyde: Civil disobedience\u2014the deliberate, nonviolent refusal to obey unjust laws\u2014has driven major social change. Thoreau coined the term in 1849; Gandhi used it to help end British rule in India; and Martin Luther King Jr. employed it during the American civil rights movement to challenge segregation.\nlex: civil disobedience significance history\nlex: civil disobedience Thoreau MLK Gandhi nonviolent protest\nvec: why is civil disobedience significant in political and social movements\nvec: how have acts of civil disobedience changed laws and society throughout history"}
-{"input": "how to understand research articles", "output": "hyde: Start by reading the abstract for the main findings. Then read the introduction for context and the conclusion for takeaways. Next, examine figures and tables. Finally, read methods and results in detail. Look up unfamiliar terms. Read the paper multiple times\u2014comprehension improves with each pass.\nlex: understand research articles reading papers\nlex: read scientific journal article structure\nvec: how do I read and understand scientific research articles effectively\nvec: what strategy helps beginners comprehend academic journal papers"}
-{"input": "how to start a 401(k)", "output": "hyde: Enroll through your employer's HR or benefits portal. Choose a contribution percentage\u2014aim for at least enough to get the full employer match (typically 3-6% of salary). Select investment funds based on your retirement timeline. For 2026, the contribution limit is $23,500 ($31,000 if over 50).\nlex: 401k start retirement plan employer\nlex: 401k enrollment contribution match\nvec: how do I set up and start contributing to a 401(k) retirement plan\nvec: what are the steps to enroll in my employer's 401(k) plan"}
-{"input": "how to organize a grassroots campaign", "output": "hyde: Start by defining your goal and identifying your base\u2014who cares about this issue? Build a leadership team, create a volunteer database, and develop talking points. Use door-to-door canvassing, community meetings, social media, and petitions to grow support. Track commitments and follow up consistently.\nlex: grassroots campaign organizing strategy\nlex: grassroots organizing community mobilization\nvec: how do you organize a grassroots political or community campaign from scratch\nvec: what are the key steps in building a grassroots movement for a cause"}
-{"input": "what are the fundamental teachings of sikhism?", "output": "hyde: Sikhism, founded by Guru Nanak in the 15th century Punjab, teaches belief in one God (Ik Onkar), equality of all people, honest living (kirat karni), sharing with others (vand chakko), and remembrance of God (naam japna). The Guru Granth Sahib is the eternal Guru and holy scripture.\nlex: Sikhism fundamental teachings beliefs\nlex: Sikh Guru Nanak five articles of faith\nvec: what are the core beliefs and teachings of Sikhism\nvec: what did Guru Nanak and the Sikh Gurus teach about God and living"}
-{"input": "what are aboriginal dreamtime stories", "output": "hyde: Dreamtime (or Dreaming) stories are the foundational narratives of Aboriginal Australian peoples. They describe how ancestral beings shaped the land, created animals and plants, and established laws and customs. These stories are passed down through oral tradition, song, dance, and art, and remain central to Indigenous identity.\nlex: Aboriginal Dreamtime stories Australian Indigenous\nlex: Dreamtime creation mythology Aboriginal culture\nvec: what are Aboriginal Australian Dreamtime stories and what do they represent\nvec: how do Dreamtime stories explain creation and law in Aboriginal culture"}
-{"input": "how do philosophers approach the meaning of life", "output": "hyde: Existentialists like Sartre argued life has no inherent meaning\u2014we must create it through our choices. Aristotle proposed eudaimonia (flourishing) as life's purpose. Camus explored the absurd, suggesting we must find meaning despite an indifferent universe. Eastern philosophy often points to liberation from suffering.\nlex: meaning of life philosophy existentialism\nlex: philosophers purpose existence meaning\nvec: how have different philosophers addressed the question of life's meaning\nvec: what do existentialist and other philosophical traditions say about the purpose of life"}
-{"input": "how to make compost at home?", "output": "hyde: Layer brown materials (dried leaves, cardboard) and green materials (kitchen scraps, grass clippings) in a 3:1 ratio. Keep the pile moist like a wrung-out sponge. Turn it every 1-2 weeks with a pitchfork. Avoid meat, dairy, and oils. Finished compost is dark, crumbly, and earthy-smelling in 2-6 months.\nlex: compost home DIY composting bin\nlex: composting kitchen scraps yard waste\nvec: how do I start composting food scraps and yard waste at home\nvec: what is the step-by-step process for making compost in a backyard bin"}
-{"input": "how to reduce food waste?", "output": "hyde: Plan meals weekly and shop with a list to avoid overbuying. Store produce properly\u2014leafy greens in airtight containers, herbs in water. Use FIFO (first in, first out) in your fridge. Freeze leftovers and overripe fruit. Compost scraps you can't eat. The average household wastes 30% of purchased food.\nlex: reduce food waste tips prevention\nlex: food waste reduction meal planning storage\nvec: how can I reduce food waste at home through planning and storage\nvec: what strategies help households throw away less food"}
-{"input": "how to learn about native american culture", "output": "hyde: Visit the National Museum of the American Indian (Smithsonian) or local tribal cultural centers. Read works by Native authors like Joy Harjo, Tommy Orange, and Robin Wall Kimmerer. Attend powwows and cultural events when open to the public. Learn which tribal nations are indigenous to your area.\nlex: Native American culture history learn\nlex: Indigenous peoples traditions tribal nations\nvec: how can I respectfully learn about Native American culture and history\nvec: what are good resources for understanding Indigenous peoples' traditions and heritage"}
-{"input": "how to participate in a town hall meeting", "output": "hyde: Check your local government website or social media for upcoming town hall schedules. Arrive early and sign up to speak if required. Prepare a concise statement (usually 2-3 minutes). Stay respectful and on-topic. Bring supporting data or personal stories to strengthen your point.\nlex: town hall meeting participate attend\nlex: town hall public meeting local government\nvec: how do I attend and participate in a local town hall meeting\nvec: what should I know before speaking at a town hall meeting"}
-{"input": "how to choose a photo backdrop", "output": "hyde: Choose a backdrop that complements your subject without competing for attention. Solid colors (white, gray, black) are versatile for portraits. Muslin provides a painterly texture. For outdoor shoots, look for uncluttered backgrounds with good depth. Consider the color of your subject's clothing to avoid clashing.\nlex: photo backdrop choose background photography\nlex: photography backdrop portrait studio\nvec: how do I choose the right backdrop for portrait or studio photography\nvec: what factors should I consider when selecting a photo backdrop"}
-{"input": "what is the nature of god in christianity", "output": "hyde: Christianity teaches that God is one being existing as three persons: the Father, the Son (Jesus Christ), and the Holy Spirit. This is the doctrine of the Trinity. God is described as omniscient, omnipotent, omnipresent, eternal, and perfectly good. God is both transcendent and personally involved in creation.\nlex: nature of God Christianity Trinity\nlex: Christian God attributes Father Son Holy Spirit\nvec: how does Christianity describe the nature and attributes of God\nvec: what is the doctrine of the Trinity in Christian theology"}
-{"input": "how to scale a business", "output": "hyde: Scaling requires repeatable processes, automation, and a strong team. Standardize operations with SOPs, invest in technology to reduce manual work, and hire ahead of demand. Monitor unit economics\u2014ensure customer acquisition cost stays below lifetime value. Secure funding for growth through revenue, debt, or equity.\nlex: scale business growth strategies\nlex: business scaling operations revenue expansion\nvec: how do you scale a business effectively while managing growth challenges\nvec: what strategies help companies expand operations and increase revenue"}
-{"input": "what is yoga and its benefits", "output": "hyde: Yoga is an ancient practice combining physical postures (asanas), breathing techniques (pranayama), and meditation. Regular practice improves flexibility, builds strength, reduces stress and anxiety, lowers blood pressure, and enhances sleep quality. Styles range from gentle Hatha to vigorous Vinyasa and Ashtanga.\nlex: yoga benefits health practice\nlex: yoga physical mental health flexibility stress\nvec: what is yoga and what physical and mental health benefits does it provide\nvec: how does regular yoga practice improve flexibility, strength, and well-being"}
-{"input": "how to get rid of self-limiting beliefs?", "output": "hyde: Identify limiting beliefs by noticing recurring thoughts like \"I'm not smart enough\" or \"I don't deserve success.\" Challenge each belief: what evidence supports it? What evidence contradicts it? Replace it with a realistic affirmation. Take small actions that disprove the belief to build new neural pathways.\nlex: self-limiting beliefs overcome remove\nlex: limiting beliefs mindset change techniques\nvec: how can I identify and overcome self-limiting beliefs that hold me back\nvec: what techniques help replace self-limiting beliefs with empowering ones"}
-{"input": "how are seasons determined by geography", "output": "hyde: Seasons result from Earth's 23.5\u00b0 axial tilt. As Earth orbits the Sun, the Northern and Southern Hemispheres alternately tilt toward or away from the Sun, varying the angle and duration of sunlight. Near the equator, seasons are minimal; at higher latitudes, seasonal variation is extreme.\nlex: seasons geography Earth axial tilt\nlex: seasons latitude hemisphere climate\nvec: how does geography and Earth's axial tilt determine the seasons\nvec: why do different parts of the world experience different seasons at the same time"}
-{"input": "how to create a scalable business model", "output": "hyde: A scalable business model increases revenue without proportional increases in costs. SaaS, marketplace, and platform models are inherently scalable. Key elements: low marginal cost per customer, automation of delivery, network effects, and recurring revenue. Test with a minimum viable product before scaling.\nlex: scalable business model design\nlex: business model scalability revenue growth\nvec: how do you design a business model that scales efficiently with growth\nvec: what makes a business model scalable and what are common scalable model types"}
-{"input": "can pets help reduce kids' anxiety?", "output": "hyde: Studies show that children with pets exhibit lower cortisol levels and reduced anxiety. A 2015 study in Preventing Chronic Disease found that children living with dogs had significantly lower rates of childhood anxiety. Petting an animal for 10 minutes reduces cortisol and increases oxytocin levels.\nlex: pets children anxiety reduction\nlex: pet therapy kids stress mental health\nvec: can having pets help reduce anxiety and stress in children\nvec: what research shows about the effect of pets on children's mental health"}
-{"input": "date parse", "output": "hyde: In JavaScript, use `new Date('2025-01-15')` or `Date.parse()` for ISO strings. For complex formats, use `date-fns` parse function or `dayjs('12/25/2025', 'MM/DD/YYYY')`. In Python, use `datetime.strptime('2025-01-15', '%Y-%m-%d')` or the `dateutil.parser.parse()` function for flexible parsing.\nlex: date parse string format\nlex: date parsing datetime library\nvec: how to parse date strings into date objects in programming\nvec: which libraries handle date parsing and formatting in JavaScript or Python"}
-{"input": "how do christians observe lent?", "output": "hyde: Lent is a 40-day period before Easter beginning on Ash Wednesday. Christians observe it through fasting (abstaining from certain foods or luxuries), increased prayer, and almsgiving (charitable giving). Many give up a habit or take on a spiritual discipline. Catholic tradition requires abstaining from meat on Fridays.\nlex: Christians observe Lent fasting prayer\nlex: Lent Christian observance Ash Wednesday Easter\nvec: how do Christians observe the season of Lent before Easter\nvec: what are the traditional Lenten practices of fasting, prayer, and almsgiving"}
-{"input": "what are literary short stories?", "output": "hyde: Literary short stories prioritize character development, thematic depth, and prose style over plot-driven entertainment. They often explore the human condition through interior conflict and ambiguity. Notable practitioners include Anton Chekhov, Alice Munro, Raymond Carver, and Jorge Luis Borges.\nlex: literary short stories fiction genre\nlex: short story literary fiction writers\nvec: what defines literary short stories as distinct from other fiction genres\nvec: what are the characteristics of literary short fiction and who are notable writers in the genre"}
-{"input": "thailand", "output": "hyde: Thailand is a Southeast Asian country known for tropical beaches, ornate temples, and rich cuisine. Bangkok is the capital. Popular destinations include Chiang Mai, Phuket, and the islands of Koh Samui and Phi Phi. Thai food staples include pad thai, green curry, and tom yum soup.\nlex: Thailand country travel Southeast Asia\nlex: Thailand Bangkok culture tourism\nvec: what should I know about Thailand as a travel destination or country\nvec: what are the key facts about Thailand's culture, geography, and tourist attractions"}
-{"input": "how to do a flip on a trampoline", "output": "hyde: Start by mastering high, controlled bounces. Practice tucking your knees to your chest mid-air. For a backflip, bounce high, throw your arms back, tuck tightly, and spot your landing. Always practice on a trampoline with safety nets and a spotter. Progress from seat drops to back drops before attempting flips.\nlex: trampoline flip backflip technique\nlex: trampoline flip tutorial safety\nvec: how do I safely learn to do a backflip on a trampoline\nvec: what is the proper technique for doing flips on a trampoline"}
-{"input": "how to efficiently use time at work?", "output": "hyde: Use time-blocking to schedule focused work in 90-minute intervals. Prioritize with the Eisenhower Matrix: do urgent-important tasks first, schedule important-not-urgent ones, delegate urgent-not-important tasks, and eliminate the rest. Batch similar tasks, limit meetings, and turn off notifications during deep work.\nlex: time management work productivity\nlex: efficient time work techniques scheduling\nvec: how can I manage my time more efficiently at work to increase productivity\nvec: what time management techniques help get more done during the workday"}
-{"input": "what is venture capital funding", "output": "hyde: Venture capital is equity financing provided to high-growth startups in exchange for ownership stakes. Funding stages include pre-seed, seed ($500K-$2M), Series A ($2-15M), Series B ($15-50M), and later rounds. VCs evaluate the team, market size, traction, and scalability before investing.\nlex: venture capital funding investment startups\nlex: VC funding rounds Series A seed\nvec: what is venture capital and how does VC funding work for startups\nvec: what are the different stages of venture capital funding from seed to Series C"}
-{"input": "app build", "output": "hyde: For mobile apps, use `xcodebuild` (iOS) or `./gradlew assembleRelease` (Android). For web apps, run `npm run build` or `vite build` to bundle and optimize assets. Configure environment variables, set the build target, and use CI/CD pipelines (GitHub Actions, CircleCI) for automated builds.\nlex: app build compile deploy\nlex: mobile app build process configuration\nvec: how to build and compile a mobile or web application for deployment\nvec: what are the steps in the app build process and common build tools"}
-{"input": "how to build strong relationships?", "output": "hyde: Strong relationships are built on trust, open communication, and mutual respect. Practice active listening\u2014give full attention without planning your response. Express appreciation regularly. Handle conflicts by addressing issues directly without blame. Invest quality time and show up consistently during both good and hard times.\nlex: build strong relationships communication trust\nlex: healthy relationships skills connection\nvec: how do you build and maintain strong personal relationships\nvec: what habits and communication skills help strengthen relationships"}
-{"input": "when to start prenatal classes?", "output": "hyde: Most experts recommend starting prenatal classes during the second trimester, around weeks 20-24, and completing them by week 36. Early classes cover nutrition, exercise, and fetal development. Later classes focus on labor stages, breathing techniques, pain management options, breastfeeding, and newborn care.\nlex: prenatal classes start when pregnancy\nlex: childbirth education classes timing\nvec: when during pregnancy should I start taking prenatal classes\nvec: what is the recommended timing for beginning childbirth education classes"}
-{"input": "how to choose kitchen cabinet hardware", "output": "hyde: Match hardware to your kitchen style: brushed nickel or stainless for modern kitchens, oil-rubbed bronze for traditional, brass for transitional. Use pulls (3-4 inches) on drawers and knobs on doors. Test ergonomics before buying in bulk. Standard mounting holes are 3 or 3.75 inches apart.\nlex: kitchen cabinet hardware handles knobs\nlex: cabinet hardware style finish selection\nvec: how do I choose the right handles and knobs for kitchen cabinets\nvec: what styles and finishes of kitchen cabinet hardware work with different designs"}
-{"input": "what is the significance of the torah?", "output": "hyde: The Torah comprises the five books of Moses (Genesis, Exodus, Leviticus, Numbers, Deuteronomy) and is the most sacred text in Judaism. It contains the 613 commandments (mitzvot), the creation narrative, and the covenant between God and the Israelites. It is read publicly in synagogue every week.\nlex: Torah significance Judaism sacred text\nlex: Torah five books Moses Jewish law\nvec: what is the Torah and why is it significant in Judaism\nvec: what role does the Torah play in Jewish religious life and law"}
-{"input": "test mock", "output": "hyde: Mocks replace real dependencies with controlled objects during testing. In Python, use `unittest.mock.patch()` to replace a function. In JavaScript, use `jest.fn()` or `jest.spyOn()`. Mocks verify that methods were called with expected arguments. Stubs return fixed values; spies track calls without replacing behavior.\nlex: test mock unit testing\nlex: mock object stub spy testing\nvec: how to use mocks and stubs in unit testing\nvec: what are mock objects and how do they help isolate components in tests"}
-{"input": "how does culture influence identity?", "output": "hyde: Culture shapes identity through language, traditions, values, and social norms internalized from childhood. Family, community, religion, and media all transmit cultural frameworks. Identity is constructed through negotiation between personal experiences and cultural expectations, creating a sense of belonging and self-understanding.\nlex: culture influence identity formation\nlex: cultural identity socialization values\nvec: how does culture shape a person's sense of identity\nvec: in what ways do cultural values and traditions influence who we become"}
-{"input": "how to be a good listener", "output": "hyde: Active listening means giving full attention: maintain eye contact, put away distractions, and don't interrupt. Reflect back what you heard (\"It sounds like you're saying...\"). Ask open-ended questions to show interest. Avoid jumping to advice\u2014sometimes people just need to feel heard. Validate their emotions.\nlex: good listener active listening skills\nlex: listening skills empathy communication\nvec: how can I become a better and more active listener in conversations\nvec: what techniques improve listening skills and show empathy"}
-{"input": "how to improve public speaking skills", "output": "hyde: Join Toastmasters for regular practice in a supportive environment. Record yourself speaking and review for filler words and pacing. Structure talks with a clear opening hook, three key points, and a memorable close. Practice in front of friends. Manage nerves through deep breathing and visualization beforehand.\nlex: public speaking skills improve presentation\nlex: public speaking confidence practice tips\nvec: how can I improve my public speaking and overcome stage fright\nvec: what techniques help deliver confident and engaging presentations"}
-{"input": "log debug", "output": "hyde: Set the log level to DEBUG to capture detailed diagnostic output. In Python: `logging.basicConfig(level=logging.DEBUG)`. In Node.js with winston: `logger.level = 'debug'`. In Java with SLF4J: configure logback.xml with `<root level=\"DEBUG\">`. Use debug logs for variable values, flow tracing, and conditional paths.\nlex: log debug logging level\nlex: debug logging output configuration\nvec: how to configure debug-level logging in an application\nvec: how to use log debug statements for troubleshooting code"}
-{"input": "what is the large hadron collider", "output": "hyde: The Large Hadron Collider (LHC) at CERN near Geneva is the world's largest and most powerful particle accelerator. It accelerates protons to near light speed in a 27-kilometer ring and collides them to study fundamental particles. In 2012, it confirmed the existence of the Higgs boson.\nlex: Large Hadron Collider LHC CERN\nlex: LHC particle accelerator Higgs boson\nvec: what is the Large Hadron Collider and what has it discovered\nvec: how does the LHC at CERN work to study particle physics"}
-{"input": "what is the significance of worship practices?", "output": "hyde: Worship practices\u2014prayer, ritual, song, and meditation\u2014serve to connect individuals with the divine, reinforce communal identity, and express gratitude and devotion. In Christianity, worship centers on liturgy and sacraments; in Islam, the five daily prayers (salat); in Hinduism, puja and temple ceremonies.\nlex: worship practices significance religion\nlex: worship rituals prayer spiritual meaning\nvec: what is the significance of worship practices across different religions\nvec: why do religious communities engage in rituals, prayer, and worship"}
-{"input": "what are fair trade products?", "output": "hyde: Fair trade products are goods certified to meet standards ensuring producers in developing countries receive fair prices, safe working conditions, and sustainable practices. Common fair trade products include coffee, chocolate, tea, bananas, and cotton. Look for the Fairtrade International or Fair Trade USA label.\nlex: fair trade products certification\nlex: fair trade coffee chocolate ethical\nvec: what are fair trade products and how does fair trade certification work\nvec: what does the fair trade label mean for farmers and consumers"}
-{"input": "what is the significance of community in ethics", "output": "hyde: Communitarian ethics argues that moral reasoning is rooted in community values and shared traditions, not just individual rights. Philosophers like Alasdair MacIntyre and Charles Taylor emphasize that virtues and moral identity are shaped by the communities in which we participate.\nlex: community ethics significance moral philosophy\nlex: communitarian ethics social responsibility\nvec: what role does community play in ethical theory and moral life\nvec: how does communitarian philosophy view the relationship between community and ethics"}
-{"input": "what are index funds", "output": "hyde: An index fund is a type of mutual fund or ETF that tracks a market index like the S&P 500. It holds all (or a representative sample of) the stocks in that index. Index funds offer broad diversification, low expense ratios (typically 0.03-0.20%), and historically outperform most actively managed funds.\nlex: index funds investing passive\nlex: index fund S&P 500 ETF low cost\nvec: what are index funds and why are they popular for investing\nvec: how do index funds work and what are their advantages over actively managed funds"}
-{"input": "what is hinduism", "output": "hyde: Hinduism is one of the world's oldest religions, originating in the Indian subcontinent. It encompasses diverse beliefs but key concepts include dharma (duty), karma (action and consequence), samsara (cycle of rebirth), and moksha (liberation). Sacred texts include the Vedas, Upanishads, and Bhagavad Gita.\nlex: Hinduism religion beliefs practices\nlex: Hindu dharma gods Vedas karma reincarnation\nvec: what is Hinduism and what are its main beliefs and practices\nvec: what do Hindus believe about God, karma, and the cycle of rebirth"}
-{"input": "what is sufism?", "output": "hyde: Sufism is the mystical dimension of Islam, emphasizing the inward search for God and the purification of the soul. Sufis practice dhikr (repetitive remembrance of God), meditation, and poetry to achieve closeness to the divine. Rumi and Al-Ghazali are among the most famous Sufi masters.\nlex: Sufism Islamic mysticism spiritual\nlex: Sufi practices dhikr whirling dervishes\nvec: what is Sufism and how does it relate to Islam\nvec: what are the spiritual practices and beliefs of Sufi mystics"}
-{"input": "how to outline a novel", "output": "hyde: Start with a one-sentence premise, then expand to a paragraph summary. Use the three-act structure: setup, confrontation, resolution. Create character profiles with goals and arcs. Write a chapter-by-chapter outline with scene goals. Methods include the Snowflake Method, Save the Cat beat sheet, or index cards on a corkboard.\nlex: outline novel plot structure\nlex: novel outline writing planning chapters\nvec: how do I create an outline for writing a novel\nvec: what methods do authors use to plan and structure a novel before writing"}
-{"input": "what is the role of the who in pandemics", "output": "hyde: The World Health Organization (WHO) coordinates international pandemic response by issuing health guidelines, declaring Public Health Emergencies of International Concern (PHEIC), distributing vaccines through COVAX, providing technical assistance to countries, and monitoring disease surveillance data from member states.\nlex: WHO World Health Organization pandemic role\nlex: WHO pandemic response disease outbreak\nvec: what role does the World Health Organization play during pandemics\nvec: how does the WHO coordinate international responses to disease outbreaks"}
-{"input": "how are glaciers formed", "output": "hyde: Glaciers form when annual snowfall exceeds snowmelt over many years. The accumulated snow compresses into firn (granular ice) and eventually into dense glacial ice. When the ice mass becomes thick enough, gravity causes it to flow slowly downhill. This process takes decades to centuries.\nlex: glacier formation process ice\nlex: glaciers formed snow compaction accumulation\nvec: how do glaciers form from accumulated snow and ice over time\nvec: what is the process of glacier formation and movement"}
-{"input": "how to ensure research reproducibility", "output": "hyde: Ensure reproducibility by pre-registering your study, sharing raw data and analysis code in public repositories (e.g., GitHub, Zenodo), documenting every methodological step, using version control, and providing computational environments (Docker containers). Report all results, including null findings.\nlex: research reproducibility replication methods\nlex: reproducible research data sharing protocols\nvec: how do researchers ensure their studies are reproducible by others\nvec: what practices improve the reproducibility and replication of scientific research"}
-{"input": "how do different religions view angels?", "output": "hyde: In Christianity, angels are messengers of God (e.g., Gabriel, Michael) who serve as protectors and intermediaries. Islam teaches that angels (mala'ika) are created from light and include Jibril (Gabriel) who delivered the Quran. Judaism describes angels as divine agents carrying out God's will in the Hebrew Bible.\nlex: angels religions Christianity Islam Judaism\nlex: angels religious beliefs spiritual beings\nvec: how do different religions like Christianity, Islam, and Judaism view angels\nvec: what roles do angels play across major world religions"}
-{"input": "how does the social contract theory explain governance", "output": "hyde: Social contract theory holds that governments derive legitimacy from the consent of the governed. Hobbes argued people surrender freedoms to a sovereign for security. Locke emphasized natural rights to life, liberty, and property, with government protecting them. Rousseau proposed the general will as the basis for collective governance.\nlex: social contract theory governance political philosophy\nlex: social contract Hobbes Locke Rousseau\nvec: how does social contract theory explain the legitimacy of government\nvec: what did Hobbes, Locke, and Rousseau argue about the social contract and governance"}
-{"input": "how to use trekking poles", "output": "hyde: Adjust pole length so your elbow is at 90\u00b0 on flat ground. Shorten poles for uphill, lengthen for downhill. Plant the pole opposite your stepping foot. Use wrist straps for support\u2014push down through the strap, not the grip. On steep descents, poles reduce knee impact by up to 25%.\nlex: trekking poles hiking technique\nlex: trekking poles adjustment grip walking\nvec: how do you properly use trekking poles while hiking\nvec: what is the correct technique for adjusting and using trekking poles on trails"}
-{"input": "how does blockchain technology work", "output": "hyde: A blockchain is a distributed ledger where transactions are grouped into blocks. Each block contains a cryptographic hash of the previous block, creating an immutable chain. Nodes validate transactions through consensus mechanisms like Proof of Work or Proof of Stake. No central authority controls the network.\nlex: blockchain technology distributed ledger\nlex: blockchain cryptography decentralized consensus\nvec: how does blockchain technology work at a technical level\nvec: what are the key components of blockchain like blocks, hashing, and consensus mechanisms"}
-{"input": "how to plant a wildflower meadow?", "output": "hyde: Clear existing vegetation by mowing low and raking away debris. Loosen the top inch of soil. Mix wildflower seeds with sand for even distribution and scatter in fall or early spring. Press seeds into soil but don't cover them\u2014most need light to germinate. Water gently until established. Avoid fertilizer, which favors grasses.\nlex: wildflower meadow planting seeds\nlex: plant wildflower meadow soil preparation native\nvec: how do I plant and establish a wildflower meadow in my yard\nvec: what steps are needed to create a wildflower meadow from seed"}
-{"input": "how to engage in civil political discussions", "output": "hyde: Start by listening to understand, not to rebut. Ask questions like \"What experiences led you to that view?\" Avoid personal attacks and generalizations. Find common ground before addressing differences. Use \"I\" statements instead of \"you always\" accusations. Accept that changing minds takes time and repeated respectful engagement.\nlex: civil political discussion respectful debate\nlex: political conversation etiquette disagreement\nvec: how can I have respectful and productive political discussions with people who disagree\nvec: what strategies help keep political conversations civil and constructive"}
-{"input": "where to watch super bowl 2024", "output": "hyde: Super Bowl LVIII airs on CBS on February 11, 2024. You can stream it live on Paramount+ or through the CBS Sports app. Kickoff is at 6:30 PM ET from Allegiant Stadium in Las Vegas.\nlex: super bowl 2024 streaming channel\nlex: super bowl LVIII broadcast network\nlex: watch super bowl 2024 live\nvec: what channel or streaming service is broadcasting Super Bowl 2024\nvec: where can I watch the 2024 Super Bowl LVIII game live online"}
-{"input": "what is the mind-body problem", "output": "hyde: The mind-body problem asks how mental states like thoughts, feelings, and consciousness relate to physical states of the brain. Descartes proposed substance dualism, arguing mind and body are fundamentally different substances.\nlex: mind-body problem philosophy\nlex: dualism consciousness physicalism\nlex: mental states physical brain\nvec: what is the philosophical mind-body problem and why is it difficult to solve\nvec: how do philosophers explain the relationship between consciousness and the physical brain"}
-{"input": "how to report scientific findings", "output": "hyde: When reporting scientific findings, organize your paper into Introduction, Methods, Results, and Discussion (IMRaD). Present results with tables and figures, include statistical analyses, and state findings objectively before interpreting them.\nlex: scientific findings report writing\nlex: research results publication format\nlex: academic paper methodology results\nvec: how should scientists structure and report their research findings in a paper\nvec: what is the standard format for reporting results in a scientific publication"}
-{"input": "code test", "output": "hyde: Unit tests verify individual functions in isolation. Use a testing framework like Jest, pytest, or JUnit to write assertions that check expected outputs against actual results. Run tests with `npm test` or `pytest`.\nlex: software unit testing framework\nlex: code testing automated tests\nlex: test-driven development TDD\nvec: how to write and run automated tests for software code\nvec: what are the common approaches to testing code including unit tests and integration tests"}
-{"input": "what is human rights", "output": "hyde: Human rights are inherent rights belonging to every person regardless of nationality, sex, ethnicity, or religion. The Universal Declaration of Human Rights (1948) established 30 articles covering civil, political, economic, social, and cultural rights.\nlex: human rights definition universal declaration\nlex: fundamental human rights UDHR\nlex: civil political economic social rights\nvec: what are human rights and what does the Universal Declaration of Human Rights guarantee\nvec: what fundamental freedoms and protections are considered universal human rights"}
-{"input": "what is the function of dna", "output": "hyde: DNA stores the genetic instructions needed for the development and functioning of all living organisms. It encodes genes as sequences of nucleotide bases (A, T, G, C) that are transcribed into RNA and translated into proteins.\nlex: DNA function genetic information\nlex: deoxyribonucleic acid protein synthesis\nlex: DNA replication transcription translation\nvec: what role does DNA play in storing and transmitting genetic information in cells\nvec: how does DNA encode instructions for building proteins in living organisms"}
-{"input": "how to advocate for a cause", "output": "hyde: Start by clearly defining your cause and goals. Build a coalition of supporters, create a compelling message, and use multiple channels: social media, petitions, letters to legislators, public events, and media outreach to amplify your message.\nlex: cause advocacy strategies campaigning\nlex: grassroots advocacy organizing\nlex: political advocacy lobbying petition\nvec: what are effective ways to advocate and campaign for a social or political cause\nvec: how can individuals organize and mobilize support for a cause they care about"}
-{"input": "how to grow blueberries at home?", "output": "hyde: Blueberries thrive in acidic soil with a pH of 4.5-5.5. Plant in full sun with well-drained soil amended with peat moss. Space bushes 4-6 feet apart and mulch with pine needles. Water regularly and prune dead wood in late winter.\nlex: grow blueberries home garden\nlex: blueberry bush planting acidic soil\nlex: container blueberry growing care\nvec: how do I plant and care for blueberry bushes in my home garden\nvec: what soil pH and conditions do blueberries need to grow well at home"}
-{"input": "what causes market volatility", "output": "hyde: Market volatility is driven by economic data releases, interest rate changes, geopolitical events, earnings surprises, and investor sentiment. High uncertainty about inflation, central bank policy, or political instability increases price fluctuations across asset classes.\nlex: stock market volatility causes\nlex: financial market fluctuations economic factors\nlex: market volatility interest rates inflation\nvec: what economic and geopolitical factors cause stock market volatility\nvec: why do financial markets experience sudden price swings and instability"}
-{"input": "what is the importance of spiritual leadership?", "output": "hyde: Spiritual leadership theory proposes that leaders who foster a sense of calling, meaning, and membership create more engaged and productive organizations. It emphasizes vision, altruistic love, and hope as core values that transcend traditional management.\nlex: spiritual leadership organizations values\nlex: spiritual leadership workplace meaning purpose\nvec: how does spiritual leadership influence organizations and their members\nvec: what role does spiritual leadership play in providing meaning and purpose at work"}
-{"input": "what is the paris agreement", "output": "hyde: The Paris Agreement is a legally binding international treaty on climate change adopted in 2015. Its goal is to limit global warming to well below 2\u00b0C, preferably 1.5\u00b0C, above pre-industrial levels. Countries submit nationally determined contributions (NDCs) outlining emission reduction targets.\nlex: Paris Agreement climate change 2015\nlex: Paris climate accord greenhouse gas emissions\nlex: Paris Agreement temperature goals\nvec: what is the Paris Agreement and what are its goals for addressing climate change\nvec: what commitments did countries make under the 2015 Paris climate accord"}
-{"input": "how to enhance customer engagement", "output": "hyde: Personalize communications using customer data and segmentation. Implement loyalty programs, respond promptly on social media, send targeted email campaigns, and gather feedback through surveys. Omnichannel engagement ensures consistent experience across touchpoints.\nlex: customer engagement strategies retention\nlex: increase customer interaction loyalty\nlex: customer engagement marketing personalization\nvec: what strategies can businesses use to improve customer engagement and loyalty\nvec: how can companies create more meaningful interactions with their customers"}
-{"input": "how to encourage children to read?", "output": "hyde: Read aloud to children daily from an early age. Let them choose their own books based on interests. Create a cozy reading nook, visit the library regularly, and set a family reading time. Avoid using reading as punishment; make it enjoyable.\nlex: encourage children reading habits\nlex: kids reading motivation tips\nlex: children literacy books engagement\nvec: what strategies help encourage children to develop a love of reading\nvec: how can parents motivate reluctant children to read more books"}
-{"input": "what is base jumping?", "output": "hyde: BASE jumping involves parachuting from fixed objects: Buildings, Antennas, Spans (bridges), and Earth (cliffs). Unlike skydiving from aircraft, BASE jumps occur at much lower altitudes, giving jumpers only seconds to deploy their parachute.\nlex: base jumping extreme sport parachute\nlex: BASE jump fixed object skydiving\nlex: base jumping wingsuit cliff\nvec: what is BASE jumping and how does it differ from skydiving\nvec: what does BASE stand for and what are the risks of base jumping"}
-{"input": "how to clean car engine bay?", "output": "hyde: Cover sensitive electrical components with plastic bags. Apply engine degreaser to the entire bay, let it sit 5-10 minutes, then agitate with a brush. Rinse with low-pressure water, avoiding direct spray on the alternator, fuse box, and air intake.\nlex: clean car engine bay degreaser\nlex: engine bay detailing wash\nlex: engine compartment cleaning steps\nvec: what is the safest way to clean and degrease a car engine bay\nvec: step by step process to clean under the hood of a car"}
-{"input": "how to manage sibling rivalry?", "output": "hyde: Avoid comparing siblings to each other. Give each child individual attention and acknowledge their unique strengths. Teach conflict resolution skills rather than always intervening. Set clear family rules about respectful behavior and let children solve minor disputes themselves.\nlex: sibling rivalry management parenting\nlex: brothers sisters fighting conflict\nlex: sibling jealousy fairness strategies\nvec: how can parents effectively manage fighting and rivalry between siblings\nvec: what are proven strategies to reduce sibling conflict and jealousy"}
-{"input": "how to build a raised garden bed?", "output": "hyde: Cut four boards of untreated cedar or redwood to size: two at 4 feet and two at 8 feet for a standard 4x8 bed. Screw corners together with deck screws. Place on level ground, line the bottom with cardboard, and fill with a mix of topsoil, compost, and peat moss.\nlex: build raised garden bed DIY\nlex: raised bed construction lumber soil\nlex: raised garden bed plans dimensions\nvec: how do I build a raised garden bed from wood step by step\nvec: what materials and dimensions work best for a DIY raised garden bed"}
-{"input": "what is the g7", "output": "hyde: The G7 (Group of Seven) is an intergovernmental forum of seven major advanced economies: Canada, France, Germany, Italy, Japan, the United Kingdom, and the United States. The EU also participates. Members meet annually to discuss global economic policy, security, and trade.\nlex: G7 group of seven nations\nlex: G7 summit member countries\nlex: G7 economic political alliance\nvec: what is the G7 and which countries are members of this international group\nvec: what role does the Group of Seven play in global economic and political governance"}
-{"input": "what is the role of choice in ethics?", "output": "hyde: Choice is central to ethics because moral responsibility presupposes the ability to choose freely. Aristotle argued that virtuous action requires deliberate choice (prohairesis). Without genuine alternatives, praise and blame lose their foundation.\nlex: choice ethics moral philosophy\nlex: free will moral responsibility\nlex: ethical decision-making autonomy\nvec: what role does personal choice play in moral philosophy and ethical responsibility\nvec: how do ethicists view free will and autonomous choice in determining moral accountability"}
-{"input": "home fix", "output": "hyde: Common DIY home repairs include fixing leaky faucets, patching drywall holes, unclogging drains, replacing light switches, re-caulking bathrooms, and fixing squeaky doors. Most require only basic tools: screwdriver, pliers, wrench, and putty knife.\nlex: home repair DIY fix\nlex: house maintenance common repairs\nlex: home improvement handyman tasks\nvec: how to do common home repairs and fixes yourself\nvec: what are typical household problems and how to fix them without a professional"}
-{"input": "what should i wear hiking?", "output": "hyde: Dress in moisture-wicking layers: a synthetic or merino wool base layer, an insulating mid layer like fleece, and a waterproof shell. Wear sturdy hiking boots or trail shoes with wool socks. Avoid cotton, which retains moisture and causes chafing.\nlex: hiking clothing layers gear\nlex: hiking outfit shoes weather\nlex: what to wear hiking trail\nvec: what is the best clothing to wear for a day hike in different weather conditions\nvec: how should I layer my clothes for hiking to stay comfortable"}
-{"input": "what are the main tenets of jainism?", "output": "hyde: Jainism centers on three jewels: right faith, right knowledge, and right conduct. Its five vows are ahimsa (non-violence), satya (truth), asteya (non-stealing), brahmacharya (chastity), and aparigraha (non-attachment). Jains believe in karma and the soul's liberation through self-discipline.\nlex: Jainism main tenets principles\nlex: Jain beliefs ahimsa non-violence\nlex: Jainism five vows anekantavada\nvec: what are the core beliefs and principles of the Jain religion\nvec: what are the five main vows and philosophical tenets of Jainism"}
-{"input": "what is universal healthcare", "output": "hyde: Universal healthcare ensures all residents have access to medical services without financial hardship. Models vary: single-payer systems (Canada), national health services (UK's NHS), and mandatory insurance systems (Germany). Funding comes through taxes or mandatory premiums.\nlex: universal healthcare single payer system\nlex: universal health coverage public insurance\nlex: universal healthcare countries policy\nvec: what is universal healthcare and how do different countries implement it\nvec: how does a universal healthcare system provide coverage to all citizens"}
-{"input": "where to buy rare plant seeds?", "output": "hyde: Specialty seed suppliers for rare plants include Baker Creek Heirloom Seeds, Chiltern Seeds, Plant World Seeds, and Rare Seeds. Online marketplaces like Etsy also have independent growers selling unusual varieties. Check import regulations for international orders.\nlex: buy rare plant seeds online\nlex: rare exotic seed suppliers shop\nlex: unusual heirloom seeds catalog\nvec: where can I purchase rare and exotic plant seeds online\nvec: what are reputable suppliers for hard-to-find and unusual plant seeds"}
-{"input": "how to kayak for the first time", "output": "hyde: For your first kayak outing, choose calm, flat water like a lake or slow river. Adjust the foot pegs so your knees are slightly bent. Hold the paddle with hands shoulder-width apart, knuckles aligned with the blade edge. Use torso rotation, not just arms, for each stroke.\nlex: beginner kayaking first time tips\nlex: kayak basics paddling technique\nlex: learn kayaking beginner guide\nvec: what should a beginner know before going kayaking for the first time\nvec: how do I paddle and balance a kayak as a first-time kayaker"}
-{"input": "what are the major teachings in rumi's poetry?", "output": "hyde: Rumi's poetry centers on divine love as the path to spiritual union with God. His Masnavi explores themes of longing, surrender, and the dissolution of the ego. He uses metaphors of wine, the beloved, and the reed flute to express the soul's yearning for its source.\nlex: Rumi poetry teachings themes\nlex: Rumi Sufi mysticism divine love\nlex: Rumi Masnavi spiritual wisdom\nvec: what are the central spiritual and philosophical themes in Rumi's poems\nvec: what does Rumi teach about love, the soul, and union with the divine"}
-{"input": "what is the purpose of a pilgrimage", "output": "hyde: A pilgrimage is a sacred journey to a holy site undertaken for spiritual renewal, penance, or devotion. In Islam, Hajj to Mecca is obligatory. Christians walk the Camino de Santiago. Hindus visit Varanasi. The journey itself is seen as transformative, not just the destination.\nlex: pilgrimage purpose religious spiritual\nlex: pilgrimage meaning journey sacred site\nvec: what is the spiritual purpose of making a pilgrimage to a sacred site\nvec: why do people of different religions undertake pilgrimages"}
-{"input": "craigslist ads", "output": "hyde: To post a Craigslist ad, go to craigslist.org, select your city, and click \"create a posting.\" Choose a category (for sale, housing, jobs, services), write a clear title and description, add photos, and set your price. Most postings are free for individuals.\nlex: Craigslist ads posting classified\nlex: Craigslist listings buy sell\nlex: Craigslist marketplace local ads\nvec: how to post and browse classified ads on Craigslist\nvec: how does Craigslist work for buying, selling, and listing items locally"}
-{"input": "what is a primary election", "output": "hyde: A primary election is a vote held by a political party to choose its candidates for the general election. In a closed primary, only registered party members can vote. In an open primary, any registered voter may participate regardless of party affiliation.\nlex: primary election definition process\nlex: primary election presidential nomination\nlex: open closed primary voting\nvec: what is a primary election and how does it determine party nominees\nvec: how do primary elections work in the United States political system"}
-{"input": "what was the role of the catholic church in the middle ages?", "output": "hyde: The Catholic Church was the dominant institution in medieval Europe. It controlled vast lands, collected tithes, and wielded political power through the papacy. The Church ran schools and universities, preserved classical texts in monasteries, and regulated moral life through canon law and sacraments.\nlex: Catholic Church Middle Ages role\nlex: medieval church political power papacy\nlex: Catholic Church feudalism education medieval\nvec: what political, social, and cultural role did the Catholic Church play during the Middle Ages\nvec: how did the Catholic Church influence governance, education, and daily life in medieval Europe"}
-{"input": "what to pack in a hospital bag for labor?", "output": "hyde: Hospital bag essentials for labor: ID and insurance card, birth plan, comfortable robe or gown, slippers, toiletries, phone charger, going-home outfit for you and baby, car seat, nursing bra, newborn diapers, snacks, and a pillow from home.\nlex: hospital bag labor delivery packing list\nlex: what to bring hospital birth bag\nlex: labor bag essentials mother baby\nvec: what items should I pack in my hospital bag before going into labor\nvec: what is a complete packing checklist for the hospital for giving birth"}
-{"input": "how international trade agreements affect local economies", "output": "hyde: Trade agreements lower tariffs and open markets, which can reduce consumer prices and expand exports. However, local industries that cannot compete with cheaper imports may shrink, leading to job losses in manufacturing regions. The net effect depends on the economy's structure and adjustment policies.\nlex: international trade agreements local economy impact\nlex: trade deal tariff local jobs wages\nlex: free trade agreement economic effects\nvec: how do international trade agreements impact jobs and economies at the local level\nvec: what are the positive and negative effects of free trade agreements on local industries"}
-{"input": "what is the ring of fire", "output": "hyde: The Ring of Fire is a 40,000 km horseshoe-shaped zone around the Pacific Ocean where about 75% of the world's volcanoes and 90% of earthquakes occur. It follows boundaries of tectonic plates including the Pacific, Nazca, and Philippine Sea plates.\nlex: Ring of Fire Pacific Ocean volcanoes\nlex: Pacific Ring of Fire earthquakes tectonic\nlex: ring of fire map plate boundaries\nvec: what is the Pacific Ring of Fire and why does it have so many earthquakes and volcanoes\nvec: which tectonic plates form the Ring of Fire around the Pacific Ocean"}
-{"input": "how does relativism differ from absolutism", "output": "hyde: Moral absolutism holds that certain actions are universally right or wrong regardless of context or culture. Moral relativism argues that moral judgments are not universal but depend on cultural, social, or personal frameworks. Absolutists point to human rights; relativists emphasize cultural diversity.\nlex: moral relativism absolutism difference\nlex: ethical relativism vs moral absolutism\nlex: relativism absolutism philosophy comparison\nvec: what is the philosophical difference between moral relativism and moral absolutism\nvec: how do relativists and absolutists disagree about the nature of moral truth"}
-{"input": "how to harvest rainwater for gardening?", "output": "hyde: Install a rain barrel or cistern under a downspout to collect roof runoff. Use a first-flush diverter to discard initial dirty water. A screen keeps debris and mosquitoes out. Connect a spigot or hose at the bottom for gravity-fed garden irrigation. A 1,000 sq ft roof yields ~600 gallons per inch of rain.\nlex: rainwater harvesting garden setup\nlex: rain barrel collection irrigation\nlex: harvest rainwater system DIY\nvec: how can I set up a rainwater collection system to water my garden\nvec: what equipment do I need to harvest rainwater for garden irrigation"}
-{"input": "what is the significance of the sacred tree in various faiths?", "output": "hyde: Sacred trees appear across religions: the Bodhi tree where Buddha attained enlightenment, the Tree of Life in Genesis, Yggdrasil in Norse mythology connecting the nine worlds, and the banyan in Hinduism symbolizing eternal life. Trees represent growth, connection between earth and heaven, and renewal.\nlex: sacred tree symbolism religion\nlex: tree of life world tree spiritual traditions\nlex: sacred trees Buddhism Hinduism Christianity Norse\nvec: what role do sacred trees play in the religious symbolism of different faiths\nvec: how are trees like the Bodhi tree and Yggdrasil significant in world religions"}
-{"input": "code dep", "output": "hyde: Dependency management tools track and install external libraries your code relies on. Package managers like npm (JavaScript), pip (Python), and cargo (Rust) resolve version conflicts, maintain lock files, and ensure reproducible builds across environments.\nlex: code dependency management\nlex: software dependency package manager\nlex: dependency resolution version conflicts\nvec: how to manage code dependencies and packages in a software project\nvec: what tools help resolve and manage dependencies in programming"}
-{"input": "what is the concept of rebirth in buddhism?", "output": "hyde: In Buddhism, rebirth is not the transmigration of a fixed soul but the continuation of a stream of consciousness shaped by karma. Beings cycle through samsara\u2014the realms of existence\u2014until achieving nirvana. Unlike Hindu reincarnation, Buddhism denies a permanent self (anatta) that transfers between lives.\nlex: rebirth Buddhism reincarnation concept\nlex: Buddhist rebirth samsara karma cycle\nlex: rebirth reincarnation Buddhism difference\nvec: how does Buddhism explain the concept of rebirth and the cycle of samsara\nvec: what is the difference between rebirth in Buddhism and reincarnation in Hinduism"}
-{"input": "cultural iconography", "output": "hyde: Cultural iconography studies the identification and interpretation of visual symbols in art and media. Icons like the Christian cross, Buddhist lotus, or American bald eagle carry layered meanings shaped by history, religion, and politics. Erwin Panofsky formalized iconographic analysis in three levels.\nlex: cultural iconography symbols art\nlex: iconographic symbols meaning culture\nlex: visual symbolism iconography history\nvec: what is cultural iconography and how are visual symbols used to convey meaning across cultures\nvec: how do art historians study and interpret iconographic symbols in different cultural traditions"}
-{"input": "current trends in ai research", "output": "hyde: Key AI research trends in 2025-2026 include scaling reasoning models, multimodal foundation models combining text, image, and video, AI agents that use tools autonomously, efficient fine-tuning methods like LoRA, and alignment research on safety and interpretability.\nlex: AI research trends 2025 2026\nlex: artificial intelligence latest developments\nlex: machine learning LLM multimodal research\nvec: what are the most important current trends and breakthroughs in AI research in 2025-2026\nvec: what directions is artificial intelligence research heading in areas like large language models and multimodal AI"}
-{"input": "how artificial intelligence is used in healthcare", "output": "hyde: AI in healthcare is used for medical image analysis (detecting tumors in radiology scans), drug discovery (predicting molecular interactions), clinical decision support, electronic health record analysis, robotic surgery assistance, and predicting patient outcomes in intensive care.\nlex: AI healthcare applications medical\nlex: artificial intelligence diagnosis treatment\nlex: machine learning medical imaging drug discovery\nvec: how is artificial intelligence being applied in healthcare for diagnosis and treatment\nvec: what are the main uses of AI and machine learning in the medical field"}
-{"input": "what is gothic literature?", "output": "hyde: Gothic literature is a genre that combines horror, romance, and mystery, originating with Horace Walpole's The Castle of Otranto (1764). Characteristics include gloomy settings (castles, ruins), supernatural elements, heightened emotion, and themes of decay, madness, and the sublime.\nlex: gothic literature definition genre\nlex: gothic fiction horror romance 18th century\nlex: gothic novel characteristics examples\nvec: what defines gothic literature as a genre and what are its key characteristics\nvec: what are the origins and major works of gothic fiction"}
-{"input": "how to foster inclusivity in interactions?", "output": "hyde: Use people's correct names and pronouns. Practice active listening without interrupting. Avoid assumptions based on appearance. Invite quieter voices into conversations. Be aware of cultural differences in communication styles. Acknowledge and address microaggressions when they occur.\nlex: foster inclusivity interactions communication\nlex: inclusive language behavior workplace\nlex: diversity inclusion interpersonal skills\nvec: how can I be more inclusive in my daily interactions with diverse people\nvec: what communication strategies foster inclusivity and make everyone feel welcome"}
-{"input": "how to prune hydrangeas?", "output": "hyde: Pruning depends on the hydrangea type. Bigleaf (H. macrophylla) and oakleaf hydrangeas bloom on old wood\u2014prune just after flowering in summer. Panicle (H. paniculata) and smooth (H. arborescens) bloom on new wood\u2014prune in late winter. Remove dead stems to the base and cut back to a pair of healthy buds.\nlex: prune hydrangeas when how\nlex: hydrangea pruning guide timing\nlex: cut back hydrangea old new wood\nvec: when and how should I prune different types of hydrangeas\nvec: what is the correct pruning technique for hydrangeas that bloom on old versus new wood"}
-{"input": "how do philosophers address moral ambiguity", "output": "hyde: Philosophers address moral ambiguity through competing frameworks. Utilitarians weigh outcomes, deontologists look to duties and rules, and virtue ethicists ask what a person of good character would do. Moral particularists argue each situation is unique and cannot be reduced to universal principles.\nlex: moral ambiguity philosophy ethics\nlex: ethical dilemma moral uncertainty philosophers\nlex: moral gray area philosophical perspectives\nvec: how do different philosophical traditions deal with situations of moral ambiguity\nvec: what do philosophers say about making ethical decisions when right and wrong are unclear"}
-{"input": "what is a bildungsroman", "output": "hyde: A bildungsroman is a novel that follows the psychological and moral growth of a protagonist from youth to adulthood. The genre originated in German literature with Goethe's Wilhelm Meister's Apprenticeship. Classic examples include Jane Eyre, David Copperfield, and The Catcher in the Rye.\nlex: bildungsroman definition coming-of-age novel\nlex: bildungsroman literary genre examples\nlex: bildungsroman character development growth\nvec: what is a bildungsroman and what are the defining features of this literary genre\nvec: what are famous examples of bildungsroman or coming-of-age novels in literature"}
-{"input": "thai cooking classes online", "output": "hyde: Online Thai cooking classes teach dishes like pad thai, green curry, tom yum soup, and mango sticky rice. Platforms include Udemy, Skillshare, and dedicated sites like Hot Thai Kitchen. Live Zoom classes with Thai chefs offer real-time guidance on techniques and ingredient sourcing.\nlex: Thai cooking class online course\nlex: learn Thai cuisine virtual cooking\nlex: Thai food cooking lesson video\nvec: where can I take online Thai cooking classes to learn authentic Thai cuisine\nvec: what are the best virtual courses for learning to cook Thai food at home"}
-{"input": "how automation affects employment", "output": "hyde: Automation displaces routine manual and cognitive tasks but creates new roles in technology maintenance, programming, and oversight. Studies estimate 14% of jobs are highly automatable. Workers in manufacturing, data entry, and transportation face the highest displacement risk, while creative and interpersonal roles are less affected.\nlex: automation employment impact jobs\nlex: automation job displacement workforce\nlex: robots AI replacing workers labor market\nvec: how does increasing automation and robotics affect employment and job availability\nvec: what impact does workplace automation have on different types of jobs and wages"}
-{"input": "what is a moral compass", "output": "hyde: A moral compass is a person's internal sense of right and wrong that guides their decisions and behavior. It is shaped by upbringing, culture, religious beliefs, education, and personal experience. It acts as an ethical guide when facing difficult choices without clear external rules.\nlex: moral compass definition ethics\nlex: moral compass inner sense right wrong\nlex: personal values moral guidance\nvec: what does it mean to have a moral compass and how does it guide ethical behavior\nvec: how do people develop an internal sense of right and wrong known as a moral compass"}
-{"input": "how to set financial goals", "output": "hyde: Set SMART financial goals: Specific (save $10,000), Measurable (track monthly), Achievable (based on income), Relevant (emergency fund), Time-bound (within 12 months). Categorize into short-term (under 1 year), medium-term (1-5 years), and long-term (5+ years) goals. Automate savings to stay on track.\nlex: set financial goals planning budget\nlex: financial goal setting SMART savings\nlex: personal finance goals short long term\nvec: how do I set effective short-term and long-term financial goals\nvec: what is a step-by-step process for creating and achieving personal financial goals"}
-{"input": "how to improve car gas mileage?", "output": "hyde: Keep tires inflated to the recommended PSI\u2014underinflation increases rolling resistance. Drive at steady speeds using cruise control, avoid rapid acceleration, and reduce idling. Remove excess weight and roof racks. Replace air filters and spark plugs on schedule. Properly inflated tires alone can improve MPG by 3%.\nlex: improve car gas mileage fuel economy\nlex: better fuel efficiency driving tips\nlex: increase MPG car maintenance\nvec: what are the best ways to improve a car's gas mileage and fuel efficiency\nvec: what driving habits and car maintenance steps help reduce fuel consumption"}
-{"input": "how to embrace change positively?", "output": "hyde: Reframe change as an opportunity for growth rather than a threat. Practice mindfulness to stay present instead of worrying about the unknown. Set small, manageable goals during transitions. Build a support network and reflect on past changes you navigated successfully to build confidence.\nlex: embrace change positive mindset\nlex: adapting change personal growth resilience\nlex: coping with change acceptance\nvec: how can I learn to embrace change in life with a positive attitude\nvec: what psychological strategies help people adapt to change instead of resisting it"}
-{"input": "how to develop patience?", "output": "hyde: Practice the pause: when you feel impatient, take three deep breaths before responding. Mindfulness meditation trains present-moment awareness and reduces reactivity. Reframe waiting as an opportunity. Set realistic expectations and practice delaying gratification with small exercises.\nlex: develop patience self-control techniques\nlex: building patience mindfulness practice\nlex: patience skills emotional regulation\nvec: what techniques can help a person develop more patience in daily life\nvec: how do you train yourself to be more patient and less reactive"}
-{"input": "how to design surveys for scientific research", "output": "hyde: Design surveys by first defining clear research questions. Use validated scales where available. Write neutral, unambiguous items avoiding leading questions. Include a mix of Likert-scale and open-ended questions. Pilot test with a small sample, assess reliability (Cronbach's alpha), and use random sampling for generalizability.\nlex: design survey scientific research methodology\nlex: research questionnaire design validity\nlex: survey instrument Likert scale sampling\nvec: how should researchers design valid and reliable surveys for scientific studies\nvec: what are the principles of good questionnaire design in scientific research"}
-{"input": "how to get rid of garden pests naturally?", "output": "hyde: Introduce beneficial insects like ladybugs and lacewings to eat aphids. Plant marigolds and basil as companion plants to repel pests. Spray diluted neem oil or insecticidal soap on affected leaves. Use diatomaceous earth around plant bases. Hand-pick slugs and caterpillars in the evening.\nlex: natural garden pest control organic\nlex: garden pests organic remedies\nlex: beneficial insects companion planting pest\nvec: what are natural and organic methods to get rid of garden pests without chemicals\nvec: how can I control insects and pests in my garden using companion planting and beneficial insects"}
-{"input": "how to build a green roof", "output": "hyde: A green roof consists of layers: waterproof membrane, root barrier, drainage layer (gravel or drainage mat), filter fabric, lightweight growing substrate (4-6 inches for extensive, 6-24 for intensive), and drought-tolerant plants like sedums. The roof must support 15-30 lbs/sqft when saturated.\nlex: green roof construction installation\nlex: build living roof layers materials\nlex: green roof waterproof membrane substrate plants\nvec: how do you build a green roof on a residential or commercial building\nvec: what are the structural layers and materials needed for a green roof installation"}
-{"input": "what are the sacred texts of judaism", "output": "hyde: The primary sacred text of Judaism is the Torah (Five Books of Moses), part of the Tanakh (Hebrew Bible), which also includes Nevi'im (Prophets) and Ketuvim (Writings). The Talmud, comprising the Mishnah and Gemara, contains rabbinic commentary and Jewish law (halakha).\nlex: sacred texts Judaism Torah Talmud\nlex: Jewish scripture Hebrew Bible Tanakh\nlex: Judaism holy books Mishnah\nvec: what are the main sacred texts and scriptures in the Jewish religious tradition\nvec: what is the Torah and what other texts are considered holy in Judaism"}
-{"input": "how technology has impacted communication", "output": "hyde: Technology has transformed communication from letters and landlines to instant messaging, video calls, and social media. Email replaced postal mail for business. Smartphones made communication continuous. Social media platforms enabled global, public conversations but also raised concerns about misinformation and reduced face-to-face interaction.\nlex: technology impact communication changes\nlex: digital communication evolution internet social media\nlex: technology transformed how people communicate\nvec: how has technology changed the way people communicate over the last few decades\nvec: what are the major effects of digital technology and the internet on human communication"}
-{"input": "what are the voting rights", "output": "hyde: Voting rights in the US expanded through constitutional amendments: the 15th (race, 1870), 19th (women, 1920), and 26th (age 18, 1971). The Voting Rights Act of 1965 prohibited racial discrimination in voting, including literacy tests and poll taxes, and required federal oversight of elections in certain jurisdictions.\nlex: voting rights law history\nlex: Voting Rights Act suffrage amendments\nlex: voter rights eligibility protection\nvec: what are voting rights in the United States and how have they evolved over time\nvec: what laws protect citizens' right to vote and prevent voter discrimination"}
-{"input": "wedding photography package", "output": "hyde: Our wedding photography packages start at $2,500 for 6 hours of coverage with one photographer, 300+ edited digital images, and an online gallery. Premium packages include a second shooter, engagement session, 10x10 album, and 8-10 hours of coverage for $4,500.\nlex: wedding photography package pricing\nlex: wedding photographer booking services\nlex: wedding photo package hours albums\nvec: what is typically included in a wedding photography package and how much does it cost\nvec: how to choose the right wedding photographer and package for your budget"}
-{"input": "how to address political division in communities", "output": "hyde: Host structured community dialogues where participants follow ground rules: listen without interrupting, speak from personal experience, and seek understanding over agreement. Focus on shared local issues\u2014schools, infrastructure, safety\u2014rather than national partisan topics. Train facilitators in conflict mediation techniques.\nlex: political division community healing\nlex: political polarization bridging divides dialogue\nlex: community political disagreement civil discourse\nvec: how can communities address political divisions and find common ground\nvec: what strategies help reduce political polarization and promote civil dialogue at the local level"}
-{"input": "how to clean car headlights?", "output": "hyde: Sand the headlight lens with wet sandpaper, starting at 800 grit and progressing to 2000 and 3000 grit. Polish with a rubbing compound or plastic polish. Apply a UV-resistant clear coat to prevent future yellowing. Toothpaste works as a mild abrasive for light haze.\nlex: clean car headlights restore foggy\nlex: headlight restoration oxidation yellowing\nlex: headlight lens cleaning toothpaste sanding\nvec: how do I clean and restore foggy or yellowed car headlights\nvec: what is the best method for removing oxidation from plastic headlight lenses"}
-{"input": "what defines gothic literature", "output": "hyde: Gothic literature is defined by dark, atmospheric settings (ruined castles, monasteries), supernatural or uncanny events, psychological terror, and themes of isolation, decay, and transgression. Protagonists often face hidden secrets and tyrannical figures. Key works include Frankenstein, Dracula, and The Turn of the Screw.\nlex: gothic literature characteristics define\nlex: gothic fiction genre elements tropes\nlex: gothic novel dark romantic supernatural\nvec: what are the defining features and conventions of gothic literature as a literary genre\nvec: what themes, settings, and narrative techniques characterize gothic fiction"}
-{"input": "what is the importance of cultural heritage in photography?", "output": "hyde: Photography plays a vital role in documenting cultural heritage\u2014recording endangered architectural sites, traditional crafts, ceremonies, and oral traditions before they disappear. Organizations like UNESCO use photographic archives to catalog World Heritage Sites and support restoration efforts.\nlex: cultural heritage photography documentation\nlex: photography preserving culture traditions\nlex: cultural heritage visual documentation ethnographic\nvec: why is photography important for preserving and documenting cultural heritage\nvec: how has photography been used to record and protect cultural traditions and historical sites"}
-{"input": "what is logical positivism", "output": "hyde: Logical positivism, developed by the Vienna Circle in the 1920s-30s, holds that only statements verifiable through empirical observation or logical proof are meaningful. Metaphysical, ethical, and aesthetic claims are considered cognitively meaningless. Key figures include Carnap, Schlick, and Ayer.\nlex: logical positivism Vienna Circle philosophy\nlex: logical positivism verification principle\nlex: logical empiricism analytic philosophy\nvec: what is logical positivism and what did the Vienna Circle philosophers argue\nvec: how does the verification principle define meaningful statements in logical positivism"}
-{"input": "how to create a self-improvement plan?", "output": "hyde: Start by assessing your current strengths and weaknesses across life areas: health, career, relationships, finances, and personal growth. Set 2-3 SMART goals per area. Break each goal into weekly habits and milestones. Track progress in a journal and review monthly. Adjust the plan based on what's working.\nlex: self-improvement plan personal development\nlex: personal growth plan goals habits\nlex: self-improvement roadmap steps\nvec: how do I create an effective self-improvement plan with clear goals and actionable steps\nvec: what steps should I follow to build a personal development plan that I can stick to"}
-{"input": "how robotics is transforming industries", "output": "hyde: Robotics is transforming manufacturing with collaborative robots (cobots) that work alongside humans on assembly lines. In logistics, warehouse robots from companies like Amazon Robotics sort and move packages. Surgical robots like da Vinci enable minimally invasive procedures. Agricultural robots handle harvesting and weeding autonomously.\nlex: robotics industry transformation manufacturing\nlex: industrial robots automation sectors\nlex: robotics applications logistics healthcare agriculture\nvec: how is robotics transforming industries like manufacturing, healthcare, and logistics\nvec: what impact are advanced robots and automation having on different industrial sectors"}
-{"input": "famous photographers", "output": "hyde: Ansel Adams is known for dramatic black-and-white landscapes of the American West. Henri Cartier-Bresson pioneered street photography and the decisive moment. Dorothea Lange documented the Great Depression. Annie Leibovitz is renowned for celebrity portraiture. Sebasti\u00e3o Salgado captures powerful social documentary images.\nlex: famous photographers history notable\nlex: iconic photographers Ansel Adams Cartier-Bresson\nlex: renowned photographers influential works\nvec: who are the most famous and influential photographers in history\nvec: which photographers are known for iconic images that shaped the art of photography"}
-{"input": "how does climate change affect global politics", "output": "hyde: Climate change reshapes global politics through resource competition (water, arable land), climate-driven migration, and diplomatic tensions over emissions targets. Arctic ice melt opens new shipping routes and territorial disputes. Island nations face existential threats, driving climate justice advocacy at the UN.\nlex: climate change global politics geopolitics\nlex: climate change international relations policy\nlex: climate politics diplomacy conflict resources\nvec: how does climate change influence international relations and global political dynamics\nvec: what are the geopolitical consequences of climate change including resource conflicts and migration"}
-{"input": "how to organize a scientific conference", "output": "hyde: Start 12-18 months ahead. Form a program committee, select a venue, set dates, and issue a call for papers. Use a submission system like EasyChair. Arrange keynote speakers, peer review, and session scheduling. Handle registration, catering, AV equipment, and proceedings publication.\nlex: organize scientific conference planning\nlex: academic conference logistics program committee\nlex: scientific meeting venue call for papers\nvec: what are the steps to organizing a successful scientific conference\nvec: how do you plan an academic conference including call for papers, venue, and scheduling"}
-{"input": "how to fix a leaking faucet", "output": "hyde: Turn off the water supply valves under the sink. Remove the faucet handle by unscrewing the decorative cap and handle screw. Pull out the cartridge or stem and inspect the rubber washer or O-ring. Replace worn parts, reassemble, and turn the water back on. Most leaks are caused by a degraded washer.\nlex: fix leaking faucet repair dripping\nlex: faucet leak washer cartridge replacement\nlex: kitchen bathroom faucet drip fix\nvec: how do I fix a dripping faucet in my kitchen or bathroom\nvec: what are the steps to repair a leaking faucet by replacing the washer or cartridge"}
-{"input": "how social media influences behavior", "output": "hyde: Social media influences behavior through social comparison, echo chambers, and dopamine-driven feedback loops. Users curate idealized self-presentations, leading to anxiety and low self-esteem in viewers. Algorithmic content feeds reinforce existing beliefs and can radicalize opinions through filter bubbles.\nlex: social media influence behavior psychology\nlex: social media impact mental health habits\nlex: social media behavioral effects users\nvec: how does social media use influence people's behavior, opinions, and mental health\nvec: what psychological effects does regular social media use have on user behavior"}
-{"input": "how does intertextuality work?", "output": "hyde: Intertextuality, coined by Julia Kristeva, describes how every text is shaped by and references other texts. Meaning is not contained in a single work but emerges from its relationships with prior texts through allusion, quotation, parody, and genre conventions. Roland Barthes argued the reader constructs meaning from these textual connections.\nlex: intertextuality literary theory texts\nlex: intertextuality allusion reference literature\nlex: Kristeva Barthes intertextuality meaning\nvec: how does intertextuality work as a concept in literary theory and criticism\nvec: what does intertextuality mean and how do texts reference and build on other texts"}
-{"input": "how does stoicism inspire inner peace", "output": "hyde: Stoicism teaches inner peace through the dichotomy of control: focus only on what you can influence (your thoughts and actions) and accept what you cannot (external events). Marcus Aurelius wrote in Meditations that disturbance comes not from things themselves but from our judgments about them.\nlex: Stoicism inner peace philosophy\nlex: Stoic philosophy tranquility Marcus Aurelius Epictetus\nlex: Stoic practices equanimity calm\nvec: how do Stoic philosophical principles help achieve inner peace and tranquility\nvec: what Stoic practices and teachings from Marcus Aurelius and Epictetus promote emotional calm"}
-{"input": "how to install a car stereo?", "output": "hyde: Disconnect the battery. Remove the factory stereo using DIN removal tools or dash panel screws. Connect the aftermarket wiring harness adapter to the car's plug\u2014match wire colors (red=accessory, yellow=battery, black=ground). Mount the new head unit in a dash kit, slide it in, and reconnect the battery.\nlex: install car stereo aftermarket head unit\nlex: car stereo replacement wiring harness\nlex: car radio installation dash kit\nvec: how do I install an aftermarket car stereo and connect the wiring\nvec: what tools and adapters do I need to replace a factory car radio with a new head unit"}
-{"input": "art class", "output": "hyde: Beginner art classes cover fundamentals like drawing, color theory, and composition. Options include community college courses, local studio workshops, and online platforms like Skillshare and Domestika. Classes range from watercolor and acrylic painting to charcoal drawing and digital illustration.\nlex: art class painting drawing course\nlex: art classes beginners local online\nlex: learn art lessons studio workshop\nvec: where can I find art classes for beginners to learn painting or drawing\nvec: what types of art classes are available online and in person for adults"}
-{"input": "what is the concept of ahimsa", "output": "hyde: Ahimsa means non-violence or non-harm and is a central principle in Hinduism, Jainism, and Buddhism. In Jainism, ahimsa extends to all living beings, including insects. Gandhi adopted ahimsa as the foundation of his political resistance, using nonviolent civil disobedience against British colonial rule.\nlex: ahimsa non-violence concept Hinduism Jainism Buddhism\nlex: ahimsa meaning Indian philosophy\nlex: ahimsa Gandhi non-harm\nvec: what is the concept of ahimsa and how is non-violence practiced in Indian religions\nvec: how did Gandhi apply the principle of ahimsa in his philosophy and political movement"}
-{"input": "what was the byzantine empire", "output": "hyde: The Byzantine Empire was the continuation of the Eastern Roman Empire, centered on Constantinople (modern Istanbul). It lasted from 330 CE to 1453 CE when it fell to the Ottoman Turks. It preserved Greek and Roman culture, developed Eastern Orthodox Christianity, and Justinian's legal code influenced European law.\nlex: Byzantine Empire history Eastern Roman\nlex: Byzantine Empire Constantinople medieval\nlex: Byzantine Empire culture government fall 1453\nvec: what was the Byzantine Empire and how did it continue from the Roman Empire\nvec: what were the major achievements and eventual fall of the Byzantine Empire"}
-{"input": "how to run for public office", "output": "hyde: To run for public office, first research eligibility requirements (age, residency, citizenship) for your target seat. File candidacy paperwork with the local election office by the deadline. Build a campaign team, set a budget, raise funds, and collect any required petition signatures. Develop a platform and begin voter outreach.\nlex: run for public office campaign steps\nlex: running for election candidate requirements\nlex: political campaign filing candidacy\nvec: what are the steps to running for public office in the United States\nvec: how do I start a political campaign and file as a candidate for local or state office"}
-{"input": "how to contact local government officials", "output": "hyde: Find your local officials through your city or county website's \"elected officials\" page or use usa.gov's elected officials lookup tool. Contact methods include email, phone calls to their office, attending public town hall meetings, and submitting comments during city council sessions.\nlex: contact local government officials representatives\nlex: reach city council county officials email phone\nlex: local elected officials contact information\nvec: how can I find contact information for and reach out to my local government representatives\nvec: what is the best way to contact city council members or county officials about local issues"}
-{"input": "what is the metaphysics of morality", "output": "hyde: The metaphysics of morality examines whether moral facts exist independently of human minds (moral realism) or are constructed by societies and individuals (anti-realism). Moral realists argue that \"murder is wrong\" is objectively true. Constructivists and expressivists argue moral claims express attitudes or social agreements, not metaphysical truths.\nlex: metaphysics of morality moral philosophy\nlex: metaethics moral realism anti-realism\nlex: metaphysical foundations ethics moral facts\nvec: what is the metaphysics of morality and how does it address the nature of moral facts\nvec: how do metaethicists debate whether moral truths exist objectively or are constructed"}
-{"input": "latest research on climate change", "output": "hyde: Recent research in 2025 shows global temperatures exceeded 1.5\u00b0C above pre-industrial levels for a full calendar year. Studies in Nature Climate Change report accelerating ice sheet loss in Greenland and West Antarctica. New modeling suggests tipping points for the Amazon rainforest may be closer than previously estimated.\nlex: latest climate change research 2025 2026\nlex: recent climate science findings studies\nlex: climate change new research global warming\nvec: what are the latest scientific findings and research on climate change in 2025-2026\nvec: what do recent climate studies say about global warming trends and projections"}
-{"input": "where to find eco-friendly furniture", "output": "hyde: Eco-friendly furniture brands include West Elm (FSC-certified wood), Medley (organic fabrics, solid wood), and Sabai (recycled and recyclable materials). Thrift stores and Habitat for Humanity ReStores sell secondhand furniture. Look for FSC certification, non-toxic finishes, and reclaimed or recycled materials.\nlex: eco-friendly furniture sustainable shop\nlex: sustainable furniture store green materials\nlex: eco furniture reclaimed wood organic\nvec: where can I buy eco-friendly and sustainably made furniture\nvec: what brands and stores sell furniture made from sustainable or recycled materials"}
-{"input": "how to stay informed about politics", "output": "hyde: Read multiple news sources across the political spectrum: AP News and Reuters for wire reporting, then compare coverage from different outlets. Subscribe to newsletters like The Morning (NYT) or Axios AM. Follow legislative trackers like Congress.gov. Attend local government meetings and candidate forums.\nlex: stay informed politics news sources\nlex: follow political news reliable media\nlex: political awareness current events tracking\nvec: how can I stay well-informed about politics and current political events\nvec: what are reliable sources and strategies for keeping up with political news"}
-{"input": "what is the tao te ching", "output": "hyde: The Tao Te Ching, attributed to Laozi (6th century BCE), is the foundational text of Taoism. Its 81 short chapters describe the Dao (the Way)\u2014an ineffable cosmic principle\u2014and De (virtue/power). It advocates wu wei (effortless action), simplicity, humility, and living in harmony with nature.\nlex: Tao Te Ching Laozi Taoism text\nlex: Tao Te Ching Daodejing philosophy\nlex: Tao Te Ching teachings Dao virtue\nvec: what is the Tao Te Ching and what does it teach about the Dao and living wisely\nvec: who wrote the Tao Te Ching and what are its main philosophical ideas"}
-{"input": "what is the ethics of ai", "output": "hyde: AI ethics addresses bias in training data that leads to discriminatory outputs, lack of transparency in black-box models, accountability when AI causes harm, privacy concerns from mass data collection, and the alignment problem of ensuring AI systems act according to human values. Frameworks include fairness, accountability, and transparency (FAccT).\nlex: AI ethics artificial intelligence ethical issues\nlex: ethics of AI bias fairness accountability\nlex: AI ethics alignment safety\nvec: what are the major ethical issues and concerns surrounding artificial intelligence\nvec: how do ethicists address bias, fairness, transparency, and safety in AI systems"}
-{"input": "what is the difference between realism and idealism", "output": "hyde: Realism holds that an external world exists independently of our minds and perceptions. Idealism argues that reality is fundamentally mental or mind-dependent. Plato's Forms represent a kind of realism about abstract objects, while Berkeley argued that to exist is to be perceived (esse est percipi).\nlex: realism idealism philosophy difference\nlex: realism vs idealism metaphysics epistemology\nlex: philosophical realism idealism comparison\nvec: what is the philosophical difference between realism and idealism in metaphysics\nvec: how do realists and idealists disagree about the nature of reality and perception"}
-{"input": "how to prevent garden soil erosion?", "output": "hyde: Prevent soil erosion by mulching garden beds with 2-3 inches of wood chips or straw. Plant ground covers like creeping thyme or clover on slopes. Install retaining walls or terraces on steep grades. Use rain gardens to absorb runoff. Avoid leaving soil bare between seasons\u2014plant cover crops like rye or clover.\nlex: prevent garden soil erosion methods\nlex: soil erosion control garden mulch ground cover\nlex: garden erosion prevention retaining wall\nvec: how can I prevent soil erosion in my garden or yard\nvec: what methods and ground covers help stop soil from washing away in a garden"}
-{"input": "how to write a scientific research paper", "output": "hyde: A scientific research paper follows the IMRaD structure: Introduction (background, hypothesis, objectives), Methods (detailed procedures for reproducibility), Results (data presented with figures and tables), and Discussion (interpretation, limitations, implications). Include an abstract, references in the journal's required citation style, and acknowledgments.\nlex: write scientific research paper structure\nlex: scientific paper writing IMRaD format\nlex: academic research paper methodology results discussion\nvec: how do you write a scientific research paper following the standard academic format\nvec: what is the structure and process for writing a research paper for journal publication"}
-{"input": "how to diversify investment portfolio", "output": "hyde: Diversify across asset classes: stocks, bonds, real estate, and commodities. Within stocks, spread across sectors (tech, healthcare, energy) and geographies (US, international, emerging markets). Use index funds or ETFs for broad exposure. A common allocation is 60% stocks, 30% bonds, 10% alternatives, adjusted by age and risk tolerance.\nlex: diversify investment portfolio strategy\nlex: portfolio diversification asset allocation\nlex: investment diversification stocks bonds ETFs\nvec: how should I diversify my investment portfolio across different asset classes\nvec: what is a good strategy for spreading risk through portfolio diversification"}
-{"input": "how to use social media for business", "output": "hyde: Choose platforms where your target audience is active: Instagram for visual products, LinkedIn for B2B, TikTok for younger demographics. Post consistently, mix promotional content with value-added posts (tips, behind-the-scenes). Use analytics to track engagement. Run targeted ads with clear CTAs and A/B test creative assets.\nlex: social media business marketing strategy\nlex: social media marketing business growth\nlex: business social media content engagement\nvec: how can small businesses effectively use social media platforms for marketing and growth\nvec: what strategies work best for using social media to promote a business and attract customers"}
-{"input": "what is zero waste?", "output": "hyde: Zero waste is a philosophy and lifestyle aiming to send nothing to landfills by reducing consumption, reusing items, recycling, and composting. Practical steps include using reusable bags, bottles, and containers, buying in bulk, composting food scraps, and choosing products with minimal or recyclable packaging.\nlex: zero waste lifestyle definition\nlex: zero waste reduce reuse recycle\nlex: zero waste living tips practices\nvec: what is the zero waste movement and how do people reduce waste in daily life\nvec: what does zero waste mean and what are practical ways to minimize household waste"}
-{"input": "what is the role of civil society in governance", "output": "hyde: Civil society organizations\u2014NGOs, advocacy groups, media, and community organizations\u2014serve as intermediaries between citizens and government. They monitor government transparency, advocate for policy changes, provide public services, and mobilize civic participation. A strong civil society holds government accountable and strengthens democracy.\nlex: civil society governance role function\nlex: civil society organizations NGOs democratic governance\nlex: civil society accountability transparency\nvec: what role does civil society play in democratic governance and government accountability\nvec: how do non-governmental organizations and civic groups contribute to governance"}
-{"input": "what is the meaning of diwali", "output": "hyde: Diwali, the festival of lights, is celebrated by Hindus, Jains, and Sikhs over five days in autumn. It symbolizes the victory of light over darkness and good over evil. Hindus celebrate Lord Rama's return to Ayodhya and honor Lakshmi, goddess of prosperity. Traditions include lighting diyas, fireworks, rangoli art, and sharing sweets.\nlex: Diwali meaning festival of lights\nlex: Diwali Hindu celebration significance\nlex: Diwali traditions Lakshmi Rama\nvec: what is Diwali and what does the festival of lights celebrate in Hindu tradition\nvec: what is the religious and cultural significance of the Diwali festival"}
-{"input": "what is a political debate", "output": "hyde: A political debate is a structured event where candidates for elected office discuss policy positions and respond to questions from moderators and sometimes the audience. Debates follow agreed-upon formats with time limits for responses and rebuttals. They allow voters to compare candidates' positions on key issues directly.\nlex: political debate definition election\nlex: political debate format candidates issues\nlex: political debate presidential election\nvec: what is a political debate and how do candidates discuss issues in structured debates\nvec: how are political debates organized and what role do they play in elections"}
-{"input": "macro photography", "output": "hyde: Macro photography captures subjects at 1:1 magnification or greater, revealing details invisible to the naked eye. Use a dedicated macro lens (100mm is popular) or extension tubes. Shoot at f/8-f/16 for sufficient depth of field. Use a tripod and focus stacking to get the entire subject sharp.\nlex: macro photography techniques close-up\nlex: macro photography lens equipment\nlex: macro photography insects flowers detail\nvec: what is macro photography and what equipment and techniques does it require\nvec: how do I take high-quality macro photographs of small subjects like insects and flowers"}
-{"input": "what was the enlightenment", "output": "hyde: The Enlightenment was an 18th-century intellectual movement emphasizing reason, science, individual liberty, and skepticism of authority. Key thinkers include John Locke (natural rights), Voltaire (free speech), Montesquieu (separation of powers), and Kant (\"dare to know\"). It directly influenced the American and French Revolutions.\nlex: Enlightenment 18th century intellectual movement\nlex: Age of Enlightenment reason philosophy\nlex: Enlightenment thinkers Voltaire Locke Kant\nvec: what was the Enlightenment and how did it change Western philosophy and politics\nvec: who were the key Enlightenment thinkers and what ideas did they promote"}
-{"input": "how do philosophers interpret free will", "output": "hyde: Three main positions dominate: hard determinism (all events are causally determined, free will is an illusion), libertarianism (genuine free will exists and is incompatible with determinism), and compatibilism (free will and determinism can coexist\u2014you act freely when acting on your own desires without external coercion). Hume and Frankfurt defend compatibilism.\nlex: free will philosophy determinism\nlex: philosophers free will debate libertarian compatibilist\nlex: free will hard determinism compatibilism\nvec: how do different philosophers interpret the problem of free will and determinism\nvec: what are the main philosophical positions on whether humans have free will"}
-{"input": "how to stay engaged in local politics", "output": "hyde: Attend city council and school board meetings, which are open to the public. Subscribe to your local government's agenda notifications. Join neighborhood associations or civic groups. Vote in every local election\u2014municipal and school board elections often have low turnout, amplifying each vote's impact.\nlex: engaged local politics civic participation\nlex: local politics involvement community\nlex: civic engagement local government attend meetings\nvec: how can I stay actively engaged and involved in local politics and government\nvec: what are practical ways to participate in local political decision-making"}
-{"input": "how to paint abstract landscapes?", "output": "hyde: Start with a loose underpainting to block in the horizon and major shapes. Use a palette knife or large brush for expressive marks. Simplify landscape elements\u2014hills, sky, water\u2014into geometric shapes and bold color fields. Layer transparent glazes over opaque areas. Let the painting suggest the landscape rather than depict it literally.\nlex: paint abstract landscape technique\nlex: abstract landscape painting acrylic oil\nlex: abstract landscape art color composition\nvec: how do I paint abstract landscape art using acrylic or oil paints\nvec: what techniques and approaches do artists use when painting abstract landscapes"}
-{"input": "how to decorate a small apartment", "output": "hyde: Use mirrors and light colors to make a small apartment feel larger. Choose multi-functional furniture like a storage ottoman or a fold-down desk. Vertical shelving frees up floor space while adding display areas.\nlex: small apartment decorating ideas\nlex: tiny apartment interior design\nlex: space-saving furniture small rooms\nvec: what are the best ways to decorate and furnish a small apartment to maximize space?\nvec: interior design tips for making a compact apartment look bigger and more stylish"}
-{"input": "what is an allegory", "output": "hyde: An allegory is a narrative in which characters, events, and settings represent abstract ideas or moral qualities. For example, George Orwell's Animal Farm is an allegory for the Russian Revolution, with farm animals standing in for political figures.\nlex: allegory literary device definition\nlex: allegory examples literature\nvec: what does allegory mean as a literary device and how is it used in storytelling?\nvec: how do authors use allegory to convey hidden meanings through characters and events?"}
-{"input": "what is wildlife photography?", "output": "hyde: Wildlife photography involves capturing images of animals in their natural environments. Photographers typically use long telephoto lenses (300mm-600mm) and fast shutter speeds to freeze motion. Patience and knowledge of animal behavior are essential for getting close without disturbing subjects.\nlex: wildlife photography techniques\nlex: wildlife photography camera gear\nlex: photographing animals in nature\nvec: what is wildlife photography and what skills and equipment does it require?\nvec: how do photographers capture images of wild animals in their natural habitats?"}
-{"input": "what is chaos theory", "output": "hyde: Chaos theory studies deterministic systems that are highly sensitive to initial conditions. A tiny change in starting values can produce vastly different outcomes over time \u2014 the so-called butterfly effect. The Lorenz attractor, discovered in 1963, was one of the first examples of chaotic behavior in weather modeling.\nlex: chaos theory mathematics\nlex: butterfly effect deterministic systems\nlex: nonlinear dynamics sensitive dependence\nvec: what is chaos theory and how does it explain unpredictable behavior in deterministic systems?\nvec: how does the butterfly effect relate to chaos theory in mathematics and physics?"}
-{"input": "what is the role of ethics in scientific research", "output": "hyde: Ethics in scientific research ensures the integrity of findings and the protection of human and animal subjects. Researchers must obtain informed consent, avoid fabrication or falsification of data, and disclose conflicts of interest. Institutional Review Boards (IRBs) review proposed studies before they begin.\nlex: research ethics scientific integrity\nlex: ethical guidelines human subjects research\nlex: scientific misconduct fraud prevention\nvec: why are ethical standards important in conducting scientific research?\nvec: how do ethics committees and institutional review boards regulate scientific experiments?"}
-{"input": "how to shoot video in low light", "output": "hyde: For low light video, open your aperture to f/1.4\u2013f/2.8 and lower your shutter speed to 1/50 for 24fps footage. Raise ISO gradually \u2014 modern cameras handle ISO 3200\u20136400 with acceptable noise. Use a fast prime lens and add practical lights in the scene when possible.\nlex: low light video settings camera\nlex: filming dark environments ISO aperture\nlex: low light videography tips\nvec: what camera settings and techniques produce the best video quality in low light conditions?\nvec: how do filmmakers shoot usable footage in dark or dimly lit environments?"}
-{"input": "what is compositional balance?", "output": "hyde: Compositional balance refers to the distribution of visual weight within an image or artwork. Symmetrical balance places equal elements on both sides of a central axis, while asymmetrical balance uses contrasting elements \u2014 such as a large shape offset by a smaller, brighter one \u2014 to create dynamic equilibrium.\nlex: compositional balance art design\nlex: symmetrical asymmetrical balance visual\nlex: balance principles composition photography\nvec: what does compositional balance mean in art, photography, and graphic design?\nvec: how do artists achieve visual balance through symmetrical and asymmetrical arrangements?"}
-{"input": "what is the impact of lobbyists on legislation", "output": "hyde: Lobbyists meet with lawmakers, draft model legislation, and organize campaign contributions to influence policy outcomes. In the U.S., spending on lobbying exceeded $4 billion annually. Critics argue this gives wealthy interests disproportionate power, while proponents say lobbyists provide expertise legislators need.\nlex: lobbyists influence legislation policy\nlex: lobbying congress lawmaking\nlex: corporate lobbying political spending\nvec: how do lobbyists influence the legislative process and shape laws passed by government?\nvec: what impact does corporate and special interest lobbying have on policy outcomes?"}
-{"input": "how to navigate with a compass", "output": "hyde: Hold the compass flat and rotate the bezel until the orienting arrow aligns with the magnetic needle pointing north. Place the compass on your map, align the edge with your start and destination, and rotate the bezel to match the map's grid lines. Adjust for magnetic declination, then follow the bearing.\nlex: compass navigation orienteering\nlex: magnetic compass bearing map reading\nlex: compass declination true north\nvec: how do you use a magnetic compass and topographic map to navigate outdoors?\nvec: what are the steps for taking a bearing with a compass and following it in the field?"}
-{"input": "what is genetic drift", "output": "hyde: Genetic drift is a mechanism of evolution where allele frequencies change randomly from one generation to the next due to chance sampling. Its effects are strongest in small populations. The bottleneck effect occurs when a population is drastically reduced, and the founder effect occurs when a small group colonizes a new area.\nlex: genetic drift population genetics\nlex: bottleneck effect founder effect allele frequency\nvec: what is genetic drift and how does it cause random changes in allele frequencies in small populations?\nvec: how do the bottleneck effect and founder effect relate to genetic drift in evolution?"}
-{"input": "what is the significance of the alhambra?", "output": "hyde: The Alhambra is a palace and fortress complex in Granada, Spain, built primarily by the Nasrid dynasty in the 13th and 14th centuries. Its intricate stucco work, muqarnas ceilings, and geometric tile patterns represent the pinnacle of Moorish art in Europe. The Court of the Lions features 124 marble columns surrounding a central fountain.\nlex: Alhambra palace Granada Spain\nlex: Alhambra Islamic architecture Nasrid\nlex: Alhambra historical significance\nvec: why is the Alhambra in Granada, Spain considered a masterpiece of Islamic architecture?\nvec: what is the cultural and historical significance of the Alhambra palace?"}
-{"input": "how the human brain functions", "output": "hyde: The human brain contains approximately 86 billion neurons that communicate via electrical and chemical signals across synapses. The cerebral cortex handles higher-order functions like reasoning and language. The hippocampus is critical for forming new memories, while the cerebellum coordinates movement and balance.\nlex: human brain function neuroscience\nlex: brain regions neurons synapses\nlex: cerebral cortex brain anatomy\nvec: how does the human brain process information through neurons and different brain regions?\nvec: what are the major parts of the brain and their roles in cognition, memory, and movement?"}
-{"input": "how is love viewed in different religions?", "output": "hyde: In Christianity, love (agape) is the highest virtue \u2014 \"God is love\" (1 John 4:8). Islam teaches that Allah is Al-Wadud, the Loving, and compassion toward others is a core duty. In Buddhism, metta (loving-kindness) is cultivated through meditation. Hinduism describes divine love (bhakti) as devotion to God.\nlex: love religion Christianity Islam Buddhism\nlex: divine love spiritual traditions\nlex: religious teachings about love\nvec: how do different world religions like Christianity, Islam, Hinduism, and Buddhism define and teach about love?\nvec: what role does love play in the spiritual teachings of major religions?"}
-{"input": "what is literary symbolism?", "output": "hyde: Literary symbolism is the use of objects, characters, or events to represent abstract ideas beyond their literal meaning. In The Great Gatsby, the green light symbolizes Gatsby's unattainable dream. The conch shell in Lord of the Flies represents order and democratic authority.\nlex: literary symbolism examples\nlex: symbolism in literature meaning\nlex: symbolic imagery fiction poetry\nvec: what is symbolism as a literary device and how do authors use symbols to convey deeper meaning?\nvec: how do readers identify and interpret symbols in novels, poems, and short stories?"}
-{"input": "what is the relationship between ethics and law?", "output": "hyde: Ethics and law overlap but are distinct. Laws are formal rules enforced by the state, while ethics are moral principles guiding individual conduct. Something can be legal yet unethical \u2014 such as exploitative pricing \u2014 or illegal yet ethically defensible, as in acts of civil disobedience against unjust laws.\nlex: ethics versus law differences\nlex: morality legality relationship\nlex: ethical standards legal requirements\nvec: how do ethics and law relate to each other, and where do they diverge?\nvec: can something be legal but unethical, or illegal but morally justified?"}
-{"input": "json load", "output": "hyde: In Python, use json.load(f) to read from a file object and json.loads(s) to parse a string. In JavaScript, use JSON.parse(str) to convert a JSON string into an object, or fetch a file and call response.json() to parse the result.\nlex: JSON parse load file\nlex: JSON.parse read file\nlex: json load Python JavaScript\nvec: how do you load and parse a JSON file in Python or JavaScript?\nvec: what functions are used to read JSON data from a file or string?"}
-{"input": "how to remove oil stains from clothes", "output": "hyde: Apply dish soap or liquid detergent directly to the oil stain and gently rub it in. Let it sit for 10-15 minutes, then wash in the hottest water safe for the fabric. For stubborn stains, sprinkle baking soda or cornstarch on the spot to absorb excess oil before treating.\nlex: remove oil stains clothing\nlex: grease stain removal fabric\nlex: oil stain laundry treatment\nvec: what is the best method for removing oil and grease stains from clothing fabric?\nvec: how do you get cooking oil or motor oil stains out of clothes at home?"}
-{"input": "where to buy greenhouse supplies?", "output": "hyde: Greenhouse supplies are available at garden centers like Home Depot and Lowe's, as well as specialty retailers like Greenhouse Megastore and Bootstrap Farmer. Online, Amazon carries polycarbonate panels, shade cloth, heating mats, and ventilation fans. For commercial-grade supplies, contact manufacturers like Rimol Greenhouses directly.\nlex: greenhouse supplies store online\nlex: buy greenhouse panels heaters shelving\nlex: greenhouse gardening equipment\nvec: where can I purchase greenhouse supplies like panels, heaters, ventilation, and shelving?\nvec: what are the best online and local stores for buying greenhouse building materials and accessories?"}
-{"input": "how to support climbing roses?", "output": "hyde: Install a sturdy trellis, arbor, or wire system at least 3 inches from the wall to allow air circulation. Tie canes horizontally with soft plant ties to encourage lateral growth and more blooms. Prune in late winter, removing dead wood and shortening side shoots to 2-3 buds.\nlex: climbing roses trellis support\nlex: train climbing roses wall fence\nlex: rose arbor lattice structure\nvec: what structures and techniques are used to support and train climbing roses?\nvec: how do you attach and guide climbing roses along a trellis, wall, or arbor?"}
-{"input": "how to manage debt", "output": "hyde: List all debts with their balances, interest rates, and minimum payments. With the avalanche method, pay extra toward the highest-interest debt first to save the most money. With the snowball method, pay off the smallest balance first for psychological momentum. Consider consolidation loans if you qualify for a lower rate.\nlex: debt management repayment plan\nlex: pay off debt strategies snowball avalanche\nlex: credit card debt consolidation\nvec: what are the most effective strategies for managing and paying off personal debt?\nvec: how does the debt snowball versus debt avalanche method work for debt repayment?"}
-{"input": "sailing adventures", "output": "hyde: Popular sailing adventures include island-hopping in the Greek Cyclades, crossing the Atlantic via the trade winds from the Canary Islands to the Caribbean, and navigating the fjords of Norway. Charter companies offer bareboat and crewed options for all experience levels, from weekend coastal cruises to month-long blue water passages.\nlex: sailing adventure trips voyages\nlex: sailing vacation destinations cruises\nlex: ocean sailing expedition\nvec: what are some popular sailing adventure destinations and voyages around the world?\nvec: how do people plan and prepare for multi-day sailing trips and ocean crossings?"}
-{"input": "paint flow", "output": "hyde: Paint flow refers to how freely paint moves and levels on a surface. For acrylic pouring, mix paint with a flow medium like Floetrol at a 2:1 ratio to achieve a honey-like consistency. For spray guns, thin paint to the manufacturer's recommended viscosity using a flow cup to measure.\nlex: paint flow viscosity consistency\nlex: acrylic paint flow medium pouring\nlex: paint flow rate spray gun\nvec: how do you control paint flow and viscosity for acrylic pouring or spray application?\nvec: what is a flow medium and how does it affect paint consistency?"}
-{"input": "how to create a budget plan", "output": "hyde: Start by listing your monthly after-tax income. Track all expenses for one month, categorizing them as needs, wants, and savings. Apply the 50/30/20 rule: 50% to necessities, 30% to discretionary spending, and 20% to savings and debt repayment. Use a spreadsheet or app like YNAB to monitor progress.\nlex: budget plan personal monthly\nlex: create budget spreadsheet expenses income\nlex: 50/30/20 budgeting rule\nvec: how do you create a personal monthly budget plan to track income and expenses?\nvec: what steps are involved in building a budget and sticking to it?"}
-{"input": "how to apply for research funding", "output": "hyde: Identify funding agencies that match your research area \u2014 NIH for biomedical, NSF for science and engineering, NEH for humanities. Read the request for proposals (RFP) carefully. Write a clear specific aims page, include preliminary data, and describe your methodology in detail. Submit through the agency's online portal before the deadline.\nlex: research funding application grant\nlex: apply grant NIH NSF proposal\nlex: research grant writing tips\nvec: what is the process for applying for academic or scientific research funding grants?\nvec: how do researchers write successful grant proposals for agencies like NIH and NSF?"}
-{"input": "how to improve credit score", "output": "hyde: Pay all bills on time \u2014 payment history accounts for 35% of your FICO score. Keep credit utilization below 30% of your total credit limit. Avoid opening too many new accounts at once. Check your credit report for errors and dispute inaccuracies. Keeping old accounts open increases your average account age.\nlex: improve credit score FICO\nlex: raise credit score fast tips\nlex: credit score factors payment history\nvec: what are the most effective ways to raise your credit score quickly?\nvec: which factors affect your FICO credit score the most and how can you improve them?"}
-{"input": "what is literary criticism?", "output": "hyde: Literary criticism is the study, evaluation, and interpretation of literature. Major approaches include formalism (focusing on the text itself), structuralism (analyzing underlying structures), feminist criticism (examining gender representation), and post-colonialism (exploring power dynamics). Each lens offers a different way to interpret a work's meaning.\nlex: literary criticism theory analysis\nlex: literary criticism schools formalism structuralism\nlex: literary analysis methods approaches\nvec: what is literary criticism and what are its major schools of thought?\nvec: how do literary critics analyze and interpret works of literature using different theoretical frameworks?"}
-{"input": "how do ethical theories apply to social issues", "output": "hyde: Utilitarian ethics evaluates social policies by their overall consequences \u2014 a policy is just if it maximizes well-being for the greatest number. Deontological ethics focuses on rights and duties regardless of outcome. Applying these frameworks to issues like healthcare access reveals tensions between collective welfare and individual rights.\nlex: ethical theories social issues applied ethics\nlex: utilitarianism deontology social justice\nlex: ethics poverty inequality healthcare\nvec: how are ethical theories like utilitarianism and deontology applied to real-world social issues?\nvec: what ethical frameworks do philosophers use to analyze problems like poverty, inequality, and healthcare?"}
-{"input": "where to buy affordable art prints", "output": "hyde: Affordable art prints are available on Society6, Redbubble, and Etsy, where independent artists sell prints starting at $15\u2013$30. IKEA offers framed prints under $20. For museum-quality reproductions, check Artsy or Saatchi Art's prints section. King & McGaw specializes in licensed fine art reproductions at mid-range prices.\nlex: buy affordable art prints online\nlex: cheap art prints posters wall decor\nlex: art print shops Etsy Society6\nvec: where can I buy affordable and high-quality art prints for home decoration?\nvec: what are the best online stores for purchasing inexpensive art prints and posters?"}
-{"input": "how do you critique a literary work?", "output": "hyde: To critique a literary work, start by reading it closely and noting your initial reactions. Identify the theme, narrative structure, character development, and use of literary devices. Evaluate how effectively the author conveys their message. Support your assessment with specific textual evidence and quotations from the work.\nlex: critique literary work analysis\nlex: literary critique essay writing\nlex: evaluate novel poem fiction\nvec: what steps do you follow to write a literary critique of a novel or poem?\nvec: how do you analyze and evaluate the strengths and weaknesses of a literary work?"}
-{"input": "what are the principles of democracy", "output": "hyde: The core principles of democracy include popular sovereignty (power derives from the people), free and fair elections, rule of law, separation of powers among branches of government, protection of individual rights and civil liberties, and majority rule with minority rights. An independent judiciary ensures laws are applied equally.\nlex: principles democracy government\nlex: democratic principles rule of law elections\nlex: democracy separation of powers rights\nvec: what are the fundamental principles that define a democratic system of government?\nvec: how do free elections, rule of law, and separation of powers form the foundation of democracy?"}
-{"input": "how to grow tomatoes at home?", "output": "hyde: Plant tomato seedlings after the last frost in a spot receiving 6-8 hours of direct sunlight. Use well-draining soil amended with compost. Water deeply at the base 1-2 inches per week. Stake or cage plants for support. Feed with a balanced fertilizer every two weeks once fruit begins to set.\nlex: grow tomatoes home garden\nlex: tomato plant care watering sunlight\nlex: container tomatoes growing tips\nvec: how do you grow tomato plants at home in a garden bed or container?\nvec: what soil, sunlight, and watering conditions do tomato plants need to produce fruit?"}
-{"input": "how to fix a loud exhaust?", "output": "hyde: A loud exhaust is usually caused by a hole in the muffler, a cracked exhaust pipe, or a failed gasket at the manifold. For small holes, apply exhaust repair tape or paste as a temporary fix. For larger damage, replace the affected section. A rusted-through muffler should be replaced entirely \u2014 bolt-on universal mufflers cost $30\u2013$80.\nlex: fix loud exhaust car muffler\nlex: exhaust leak repair pipe\nlex: muffler replacement noisy exhaust\nvec: how do you diagnose and fix a loud or rattling car exhaust system?\nvec: what causes a car exhaust to become loud and how do you repair or replace the muffler?"}
-{"input": "what is kinetic art?", "output": "hyde: Kinetic art is a genre of art that incorporates real or apparent movement. Alexander Calder pioneered the mobile \u2014 hanging sculptures that move with air currents. Jean Tinguely built complex mechanical assemblages that rattled and spun. Modern kinetic artists use motors, wind, and magnets to create motion.\nlex: kinetic art sculpture movement\nlex: kinetic art artists Calder Tinguely\nlex: moving art installation mechanical\nvec: what is kinetic art and how do artists create sculptures and installations that move?\nvec: who are the most famous kinetic artists and what are their notable works?"}
-{"input": "async web", "output": "hyde: Asynchronous web programming allows a server to handle multiple requests concurrently without blocking. In Python, frameworks like FastAPI and aiohttp use async/await syntax with an event loop. In JavaScript, Express with async handlers or Fastify process requests non-blockingly. This improves throughput for I/O-bound workloads.\nlex: async web framework server\nlex: asynchronous HTTP request JavaScript Python\nlex: async await web API\nvec: how do asynchronous programming patterns work in web development and API requests?\nvec: what are the best async web frameworks for building non-blocking HTTP servers?"}
-{"input": "what is the philosophy of nonviolence", "output": "hyde: Nonviolence (ahimsa) as a philosophy holds that physical force is never justified as a means of conflict resolution. Mahatma Gandhi developed satyagraha \u2014 truth-force \u2014 as a method of nonviolent resistance against British colonial rule. Martin Luther King Jr. adapted these principles to the American civil rights movement.\nlex: philosophy nonviolence ahimsa pacifism\nlex: nonviolence Gandhi King civil disobedience\nvec: what is the philosophical basis for nonviolence as practiced by Gandhi and Martin Luther King Jr.?\nvec: how does the concept of ahimsa relate to the broader philosophy of nonviolent resistance?"}
-{"input": "what are the main sects of islam?", "output": "hyde: The two main sects of Islam are Sunni (approximately 85-90% of Muslims) and Shia (10-15%). The split originated from a disagreement over succession after Prophet Muhammad's death in 632 CE. Sunnis accepted Abu Bakr as caliph, while Shia believed leadership belonged to Ali, Muhammad's cousin and son-in-law. Sufism is a mystical tradition found within both branches.\nlex: sects of Islam Sunni Shia Sufi\nlex: Islamic denominations branches\nlex: Sunni Shia differences beliefs\nvec: what are the major sects and branches within Islam and how do they differ?\nvec: what caused the split between Sunni and Shia Muslims and what are their key theological differences?"}
-{"input": "how to use charcoal for drawing?", "output": "hyde: Vine charcoal is soft and ideal for light sketching and easy erasing. Compressed charcoal is denser, producing darker, richer marks. Hold the charcoal on its side for broad strokes and use the tip for fine lines. Blend with a tortillon or chamois cloth. Fix finished drawings with spray fixative to prevent smudging.\nlex: charcoal drawing techniques\nlex: vine compressed charcoal sketching\nlex: charcoal shading blending paper\nvec: what are the techniques for drawing and shading with charcoal on paper?\nvec: what types of charcoal are used for drawing and how do they differ in effect?"}
-{"input": "what is mindfulness", "output": "hyde: Mindfulness is the practice of paying attention to the present moment without judgment. It involves observing thoughts, feelings, and sensations as they arise and letting them pass. Jon Kabat-Zinn developed Mindfulness-Based Stress Reduction (MBSR), an eight-week program shown to reduce anxiety, depression, and chronic pain.\nlex: mindfulness meditation practice\nlex: mindfulness definition awareness present moment\nlex: mindfulness stress reduction MBSR\nvec: what is mindfulness and how is it practiced as a form of meditation?\nvec: what are the psychological and health benefits of practicing mindfulness regularly?"}
-{"input": "latest updates on the ukraine conflict", "output": "hyde: As fighting continues along the eastern front, diplomatic efforts have intensified with multiple rounds of negotiations. Ukraine's forces have focused on defensive operations in the Donetsk region while maintaining pressure on supply lines. International support continues with new aid packages and sanctions enforcement.\nlex: Ukraine conflict war 2025 2026 updates\nlex: Ukraine Russia war latest news\nlex: Ukraine ceasefire negotiations frontline\nvec: what are the most recent developments in the Russia-Ukraine war as of 2025-2026?\nvec: what is the current status of the Ukraine conflict including ceasefire talks and territorial changes?"}
-{"input": "git push", "output": "hyde: Use `git push origin main` to push your local main branch to the remote. For a new branch, use `git push -u origin feature-branch` to set the upstream tracking reference. If the push is rejected because the remote has new commits, run `git pull --rebase` first, then push again.\nlex: git push remote origin\nlex: git push branch upstream\nlex: git push force rejected\nvec: how do you push commits to a remote repository using git push?\nvec: what do you do when git push is rejected and how do you set upstream tracking branches?"}
-{"input": "what is hedonism", "output": "hyde: Hedonism is the philosophical view that pleasure is the highest good and the proper aim of human life. Epicurus distinguished between kinetic pleasures (active enjoyment) and katastematic pleasures (the absence of pain). He argued that simple pleasures, friendship, and tranquility produce the most lasting happiness \u2014 not excess or indulgence.\nlex: hedonism philosophy pleasure\nlex: hedonism Epicurus ethical theory\nlex: hedonistic ethics pleasure pain\nvec: what is hedonism as a philosophical doctrine about pleasure and the good life?\nvec: how did Epicurus define hedonism and how does it differ from popular conceptions of pleasure-seeking?"}
-{"input": "what is a mathematical model", "output": "hyde: A mathematical model uses equations and variables to represent a real-world system. For example, the SIR model uses differential equations to predict infectious disease spread: dS/dt = -\u03b2SI, dI/dt = \u03b2SI - \u03b3I, dR/dt = \u03b3I. Models are validated by comparing predictions against observed data and refined iteratively.\nlex: mathematical model definition\nlex: mathematical modeling equations simulation\nlex: applied mathematics modeling real world\nvec: what is a mathematical model and how is it used to represent real-world systems?\nvec: how do scientists and engineers build mathematical models to simulate and predict phenomena?"}
-{"input": "how to grow an herb garden", "output": "hyde: Start with easy herbs like basil, parsley, mint, rosemary, and thyme. Plant in well-draining soil with 6+ hours of sunlight. Herbs in containers need pots with drainage holes and regular watering when the top inch of soil is dry. Harvest regularly by pinching stems above leaf nodes to encourage bushy growth.\nlex: grow herb garden home indoor outdoor\nlex: herb garden planting basil cilantro thyme\nlex: container herb garden windowsill\nvec: how do you start and maintain an herb garden at home, indoors or outdoors?\nvec: which herbs grow best together and what soil and light conditions do they need?"}
-{"input": "how to evaluate a scientific claim", "output": "hyde: Check if the claim is published in a peer-reviewed journal. Look at the sample size, methodology, and whether results have been replicated independently. Consider whether the source has conflicts of interest. Distinguish between correlation and causation. Evaluate the statistical significance and effect size reported in the study.\nlex: evaluate scientific claim evidence\nlex: critical thinking scientific evidence peer review\nlex: assess scientific study credibility\nvec: how do you critically evaluate whether a scientific claim is supported by credible evidence?\nvec: what criteria should you use to judge the reliability of a scientific study or finding?"}
-{"input": "what is virtue signaling?", "output": "hyde: Virtue signaling refers to the public expression of moral values or opinions primarily intended to demonstrate one's good character rather than to effect change. The term is often used critically to describe performative displays on social media \u2014 such as posting a hashtag or changing a profile picture \u2014 without taking meaningful action on the issue.\nlex: virtue signaling definition examples\nlex: virtue signaling social media politics\nvec: what does virtue signaling mean and how is the term used in political and social discourse?\nvec: how do people use virtue signaling to publicly express moral values without substantive action?"}
-{"input": "what is impact investing?", "output": "hyde: Impact investing directs capital toward companies and projects that generate measurable social or environmental benefits alongside financial returns. Unlike ESG screening, which excludes harmful sectors, impact investing actively targets positive outcomes \u2014 such as affordable housing, renewable energy, or microfinance. The Global Impact Investing Network (GIIN) estimates the market at over $1 trillion.\nlex: impact investing ESG social return\nlex: impact investing funds sustainable\nlex: socially responsible investing SRI\nvec: what is impact investing and how does it generate both financial returns and social or environmental benefit?\nvec: how does impact investing differ from traditional investing and ESG strategies?"}
-{"input": "stellar cartography", "output": "hyde: Stellar cartography is the science of mapping the positions, distances, and motions of stars. The ESA's Gaia mission has cataloged over 1.8 billion stars with precise positions and parallax measurements. Stellar maps use right ascension and declination coordinates, with distances measured in parsecs from trigonometric parallax.\nlex: stellar cartography star mapping\nlex: star chart celestial mapping catalog\nlex: astronomical survey stellar positions\nvec: what is stellar cartography and how do astronomers map the positions and movements of stars?\nvec: what tools and surveys are used to create detailed maps of stars in the galaxy?"}
-{"input": "what are hedge funds?", "output": "hyde: A hedge fund is a pooled investment fund that employs diverse strategies \u2014 including long/short equity, arbitrage, and derivatives trading \u2014 to generate returns for accredited investors. Unlike mutual funds, hedge funds face fewer regulatory restrictions and typically charge a 2% management fee plus 20% of profits (the \"2 and 20\" model).\nlex: hedge funds investment strategy\nlex: hedge fund accredited investors returns\nlex: hedge fund management fee structure\nvec: what are hedge funds and how do they differ from mutual funds and other investment vehicles?\nvec: what strategies do hedge funds use to generate returns and manage risk?"}
-{"input": "github repository", "output": "hyde: To create a GitHub repository, click \"New repository\" on github.com, name it, and choose public or private visibility. Clone it locally with `git clone https://github.com/user/repo.git`. Add files, commit changes, and push with `git push origin main`. Collaborate through pull requests and code reviews.\nlex: GitHub repository create manage\nlex: GitHub repo clone push pull\nlex: git repository hosting GitHub\nvec: how do you create and manage a repository on GitHub for version control?\nvec: what are the basic operations for working with a GitHub repository including cloning, pushing, and pull requests?"}
-{"input": "how to enhance positive social impact?", "output": "hyde: To enhance social impact, define clear measurable goals aligned with community needs. Use a theory of change to map how activities lead to outcomes. Partner with local organizations for culturally informed approaches. Measure results with both quantitative metrics (people served, outcomes achieved) and qualitative feedback from beneficiaries.\nlex: enhance social impact community\nlex: positive social impact strategies nonprofit\nlex: social change community engagement\nvec: what are effective strategies for individuals and organizations to create positive social impact?\nvec: how can nonprofits and businesses measure and increase their social impact in communities?"}
-{"input": "how to negotiate rent prices", "output": "hyde: Research comparable rents in your area on Zillow or Apartments.com before negotiating. Highlight your strengths as a tenant: stable income, good credit, long tenure, or willingness to sign a longer lease. Negotiate during off-peak months (November-February) when demand is lower. Offer to prepay several months or handle minor maintenance in exchange for a reduction.\nlex: negotiate rent price landlord\nlex: rent negotiation apartment lease\nlex: lower rent strategies tenant\nvec: how do you negotiate a lower rent price with your landlord when signing or renewing a lease?\nvec: what tactics and arguments can tenants use to get a better deal on apartment rent?"}
-{"input": "how to propagate succulents from leaves", "output": "hyde: Gently twist a healthy leaf from the stem, ensuring a clean break with the base intact. Let it callous over for 2-3 days in indirect light. Place on top of well-draining cactus soil and mist every few days. Roots and a tiny rosette will appear in 2-4 weeks. Avoid direct sunlight until established.\nlex: propagate succulents leaves cuttings\nlex: succulent leaf propagation rooting\nlex: grow succulents from leaf\nvec: how do you propagate new succulent plants from individual leaf cuttings?\nvec: what is the step-by-step process for rooting succulent leaves to grow new plants?"}
-{"input": "what is the role of non-governmental organizations", "output": "hyde: Non-governmental organizations (NGOs) operate independently from government to address social, environmental, and humanitarian issues. They deliver aid in crisis zones, advocate for policy changes, monitor human rights, and provide services like healthcare and education. Major NGOs include M\u00e9decins Sans Fronti\u00e8res, Amnesty International, and the Red Cross.\nlex: NGO non-governmental organization role\nlex: NGOs humanitarian aid development\nlex: nonprofit organizations international advocacy\nvec: what roles do non-governmental organizations (NGOs) play in humanitarian aid, development, and advocacy?\nvec: how do NGOs influence government policy and deliver services in developing countries?"}
-{"input": "what is pentecost in christian faith", "output": "hyde: Pentecost commemorates the descent of the Holy Spirit upon the apostles fifty days after Easter, as described in Acts 2. The apostles began speaking in tongues and Peter preached to a crowd, leading to about 3,000 conversions. It is often called the birthday of the Christian Church and is celebrated as a major feast day.\nlex: Pentecost Christian Holy Spirit\nlex: Pentecost Acts apostles church\nlex: Pentecost feast day Christianity\nvec: what is the meaning and significance of Pentecost in the Christian faith?\nvec: what happened on the day of Pentecost according to the Book of Acts in the Bible?"}
-{"input": "how to pay off student loans faster", "output": "hyde: Make payments above the minimum and specify that extra goes toward the principal. Refinance at a lower interest rate if your credit has improved. Use the avalanche method to target the highest-rate loan first. Set up biweekly payments instead of monthly to make one extra payment per year. Allocate windfalls like tax refunds directly to loans.\nlex: pay off student loans faster\nlex: student loan repayment strategies\nlex: student loan refinance extra payments\nvec: what are the most effective strategies for paying off student loans ahead of schedule?\nvec: how can refinancing or making extra payments help you pay off student loans faster?"}
-{"input": "what are the characteristics of gothic literature?", "output": "hyde: Gothic literature features dark, brooding settings like castles, ruins, and isolated mansions. Common elements include supernatural events, madness, secrets, and heightened emotion. The atmosphere is oppressive and foreboding. Key works include Horace Walpole's The Castle of Otranto, Mary Shelley's Frankenstein, and Bram Stoker's Dracula.\nlex: gothic literature characteristics elements\nlex: gothic fiction dark romantic horror\nlex: gothic novel atmosphere supernatural\nvec: what are the defining characteristics and common elements of gothic literature?\nvec: how do gothic novels use setting, atmosphere, and the supernatural to create suspense and dread?"}
-{"input": "how to register a political party", "output": "hyde: Requirements to register a political party vary by state. Generally, you must file organizational documents with the secretary of state, collect a minimum number of petition signatures (often 1-5% of registered voters), adopt a party platform and bylaws, and hold a founding convention. Some states also require fielding candidates in a certain number of races.\nlex: register political party requirements\nlex: form new political party ballot access\nlex: political party registration petition signatures\nvec: what is the legal process for registering a new political party in the United States?\nvec: what requirements must be met to officially form and register a political party for elections?"}
-{"input": "leather reclining lounge chairs", "output": "hyde: The La-Z-Boy Kirkwood leather recliner features top-grain leather upholstery, a power reclining mechanism, and lumbar support. At $1,200, it's a mid-range option with a 10-year warranty. For premium choices, the Ekornes Stressless recliner offers ergonomic design with adjustable headrest and glide function starting at $2,500.\nlex: leather reclining lounge chair\nlex: leather recliner chair buy\nlex: reclining lounge chair living room\nvec: what are the best leather reclining lounge chairs for comfort and durability?\nvec: where can I buy a high-quality leather recliner chair for my living room?"}
-{"input": "how to write a scientific research proposal", "output": "hyde: A scientific research proposal typically includes: title, abstract, specific aims, background and significance, preliminary data, research design and methods, timeline, budget and justification, and references. The specific aims page is the most critical \u2014 state the problem, your hypothesis, and 2-3 measurable objectives clearly in one page.\nlex: write scientific research proposal\nlex: research proposal template structure\nlex: grant proposal methodology aims\nvec: how do you write a compelling scientific research proposal with clear aims and methodology?\nvec: what sections and structure should a scientific research proposal include?"}
-{"input": "how to open a savings account", "output": "hyde: To open a savings account, choose a bank or credit union and compare interest rates (high-yield online accounts often offer 4-5% APY). You'll need a government-issued ID, Social Security number, and an initial deposit (often $25-$100). Apply online or in person. Link a checking account for easy transfers and set up automatic deposits.\nlex: open savings account bank\nlex: savings account requirements documents\nlex: high yield savings account online\nvec: what is the process for opening a savings account at a bank or online institution?\nvec: what documents and minimum deposit do you need to open a savings account?"}
-{"input": "what is the role of e-commerce in modern business", "output": "hyde: E-commerce enables businesses to sell products globally without physical storefronts. Companies use platforms like Shopify, Amazon Marketplace, and WooCommerce to reach customers online. In 2024, global e-commerce sales exceeded $6 trillion. Direct-to-consumer (DTC) brands cut out middlemen, while marketplaces aggregate sellers for one-stop shopping.\nlex: e-commerce business online retail\nlex: e-commerce sales growth digital\nlex: online shopping platform business model\nvec: how has e-commerce transformed the way businesses sell products and reach customers?\nvec: what role does e-commerce play in business strategy including direct-to-consumer and marketplace models?"}
-{"input": "tree climb", "output": "hyde: Recreational tree climbing uses a doubled-rope technique (DRT) with a throw line to set the rope over a branch. Climbers wear a saddle harness and ascend using mechanical ascenders or friction hitches like the Blake's hitch. Arborists use single-rope technique (SRT) for efficiency and may use climbing spurs for removals only.\nlex: tree climbing techniques equipment\nlex: recreational tree climbing arborist\nlex: tree climbing harness rope\nvec: what techniques and equipment are used for recreational or professional tree climbing?\nvec: how do arborists safely climb trees using ropes, harnesses, and climbing spurs?"}
-{"input": "how to upgrade car headlights?", "output": "hyde: To upgrade from halogen to LED headlights, find your bulb size in the owner's manual (e.g., H11, 9005). Purchase a quality LED kit from brands like Hikari or Fahren. Remove the old bulb by twisting the retaining ring, insert the LED bulb, and connect the driver/ballast. Aim the headlights after installation to avoid blinding oncoming traffic.\nlex: upgrade car headlights LED HID\nlex: replace headlight bulbs brighter\nlex: headlight upgrade installation\nvec: how do you upgrade your car's headlights to brighter LED or HID bulbs?\nvec: what are the steps for replacing stock halogen headlights with aftermarket LED headlights?"}
-{"input": "what are the themes of to kill a mockingbird?", "output": "hyde: The central themes of To Kill a Mockingbird include racial injustice in the American South, as shown through Tom Robinson's trial. Moral courage is embodied by Atticus Finch, who defends Robinson despite social pressure. The loss of innocence is traced through Scout's growing awareness of prejudice and cruelty in Maycomb, Alabama.\nlex: To Kill a Mockingbird themes\nlex: To Kill a Mockingbird racial injustice innocence\nlex: Harper Lee themes moral courage\nvec: what are the major themes explored in Harper Lee's To Kill a Mockingbird?\nvec: how does To Kill a Mockingbird address racial injustice, moral courage, and the loss of innocence?"}
-{"input": "how to install a car roof rack?", "output": "hyde: For cars with factory side rails, slide the crossbar feet onto the rails and tighten the clamps at your desired spacing. For bare roofs, use a fit kit with clips that hook into the door frame. Torque the mounting hardware to the manufacturer's specification (usually 6-8 Nm). Test by pushing firmly on the bars to confirm they don't shift.\nlex: install car roof rack\nlex: roof rack mounting crossbars\nlex: car roof rack installation guide\nvec: how do you install a roof rack on a car with or without factory roof rails?\nvec: what are the steps for mounting crossbars and a roof rack system on a vehicle?"}
-{"input": "why is deforestation a concern?", "output": "hyde: Deforestation removes trees that absorb CO2, releasing stored carbon and accelerating climate change. Tropical forests hold over 50% of Earth's species \u2014 clearing them drives mass extinction. Deforested land loses topsoil to erosion, reducing agricultural productivity. The Amazon alone lost 10,000 square kilometers of forest in a single year.\nlex: deforestation environmental impact\nlex: deforestation climate change biodiversity loss\nlex: tropical rainforest destruction causes\nvec: why is deforestation considered a serious environmental problem and what are its consequences?\nvec: how does deforestation contribute to climate change, biodiversity loss, and soil erosion?"}
-{"input": "how do philosophers explore the nature of reality", "output": "hyde: Metaphysics, the branch of philosophy concerned with the nature of reality, asks questions like: What exists? Is the physical world all there is? Plato argued that true reality consists of abstract Forms. Descartes proposed mind-body dualism. Materialists hold that only physical matter exists, while idealists like Berkeley argued that reality is fundamentally mental.\nlex: philosophy nature of reality metaphysics\nlex: metaphysics ontology existence\nlex: philosophical realism idealism\nvec: how have philosophers historically explored and debated the nature of reality and existence?\nvec: what are the main metaphysical positions on whether reality is fundamentally material, mental, or something else?"}
-{"input": "how to build a writing routine", "output": "hyde: Set a specific time each day for writing \u2014 morning works best for many writers because willpower is highest. Start with a modest goal of 300-500 words and increase gradually. Write in the same place to create environmental cues. Track your word count daily. Don't edit while drafting \u2014 the first draft's only job is to exist.\nlex: writing routine daily habit\nlex: build writing practice discipline\nlex: writing schedule productivity\nvec: how do you establish a consistent daily writing routine and maintain discipline?\nvec: what strategies do professional writers use to build and sustain a writing habit?"}
-{"input": "what are public sentiments on immigration", "output": "hyde: A 2025 Gallup poll found that 28% of Americans wanted immigration increased, 36% wanted it decreased, and 33% wanted it kept at current levels. Views split sharply along party lines: 55% of Democrats favored more immigration versus 11% of Republicans. In Europe, surveys showed rising concern about integration alongside recognition of labor market needs.\nlex: public opinion immigration polls\nlex: immigration attitudes survey sentiment\nlex: immigration policy public views 2025 2026\nvec: what do recent polls and surveys reveal about public sentiment on immigration policy?\nvec: how do public attitudes toward immigration vary by country, political affiliation, and demographics?"}
-{"input": "how do people practice meditation in buddhism", "output": "hyde: Buddhist meditation includes two main types: samatha (calm abiding) and vipassana (insight). In Vipassana, practitioners observe bodily sensations and mental events with equanimity. Zen meditation (zazen) involves sitting with awareness of breath, often facing a wall. Tibetan Buddhism adds visualization practices and mantra recitation. All traditions emphasize mindful awareness.\nlex: Buddhist meditation practice techniques\nlex: Vipassana Zen meditation Buddhism\nlex: mindfulness meditation Buddhist traditions\nvec: what are the main forms of meditation practiced in Buddhism and how are they performed?\nvec: how do Vipassana, Zen, and Tibetan Buddhist meditation techniques differ from each other?"}
-{"input": "how to edit in lightroom", "output": "hyde: In Lightroom's Develop module, start with the Basic panel: adjust Exposure for overall brightness, then Highlights and Shadows to recover detail. Set White Balance using the eyedropper or Temperature/Tint sliders. Increase Clarity for midtone contrast and Vibrance for subtle color boost. Use the HSL panel to fine-tune individual colors.\nlex: edit photos Adobe Lightroom\nlex: Lightroom editing tutorial sliders\nlex: Lightroom develop module adjustments\nvec: how do you edit and enhance photos using Adobe Lightroom's develop module?\nvec: what are the essential Lightroom editing steps for exposure, color, and tone adjustments?"}
-{"input": "how does the philosophy of education explore learning", "output": "hyde: John Dewey's pragmatism views learning as experiential \u2014 students learn by doing and reflecting. Montessori emphasizes self-directed activity and hands-on learning in prepared environments. Constructivism holds that learners build knowledge actively rather than passively receiving it. Each philosophy leads to different classroom structures and teaching practices.\nlex: philosophy of education learning theory\nlex: educational philosophy Dewey Montessori\nlex: epistemology education pedagogy\nvec: how do educational philosophers like Dewey and Montessori theorize about the nature of learning?\nvec: what are the major philosophical approaches to education and how do they shape teaching methods?"}
-{"input": "how to make a family budget?", "output": "hyde: List all family income sources including salaries, freelance work, and benefits. Categorize expenses into fixed (mortgage, insurance, utilities), variable (groceries, gas, clothing), and discretionary (dining out, entertainment). Allocate funds using the envelope method or a budgeting app like Mint or YNAB. Review spending together monthly.\nlex: family budget plan household\nlex: family budget spreadsheet expenses\nlex: household budgeting categories\nvec: how do you create a family budget that accounts for all household income and expenses?\nvec: what categories and tools should you use when building a family budget?"}
-{"input": "what is the significance of the ten commandments", "output": "hyde: The Ten Commandments (Decalogue) were given by God to Moses on Mount Sinai, as recorded in Exodus 20 and Deuteronomy 5. They form the foundational moral code of Judaism and Christianity, covering duties to God (no other gods, no idols, keep the Sabbath) and duties to others (honor parents, do not murder, steal, or lie).\nlex: Ten Commandments significance Bible\nlex: Ten Commandments Moses Judaism Christianity\nlex: Decalogue moral law religious\nvec: what is the religious and historical significance of the Ten Commandments in Judaism and Christianity?\nvec: how have the Ten Commandments influenced Western law, ethics, and moral codes?"}
-{"input": "what is creative non-fiction?", "output": "hyde: Creative non-fiction uses literary techniques \u2014 narrative arc, scene-setting, dialogue, and vivid description \u2014 to tell true stories. Subgenres include memoir, personal essay, literary journalism, and nature writing. Unlike standard reporting, the writer's voice and perspective are central. Examples include Truman Capote's In Cold Blood and Joan Didion's essays.\nlex: creative non-fiction genre writing\nlex: creative nonfiction memoir essay narrative\nlex: literary nonfiction storytelling\nvec: what is creative non-fiction and how does it differ from traditional journalism or academic writing?\nvec: what techniques do creative non-fiction writers use to tell true stories in a literary way?"}
-{"input": "air filter", "output": "hyde: Replace your car's engine air filter every 15,000-30,000 miles depending on driving conditions. Home HVAC filters should be changed every 1-3 months. HEPA filters capture 99.97% of particles 0.3 microns or larger. MERV ratings from 1-16 indicate filtration efficiency \u2014 MERV 13+ is recommended for allergy sufferers.\nlex: air filter replacement HVAC\nlex: car engine air filter\nlex: home air purifier HEPA filter\nvec: how often should you replace an air filter in your car engine or home HVAC system?\nvec: what types of air filters are available for home air purifiers and what do HEPA ratings mean?"}
-{"input": "what is the periodic table", "output": "hyde: The periodic table organizes all known chemical elements by increasing atomic number into rows (periods) and columns (groups). Elements in the same group share similar chemical properties because they have the same number of valence electrons. Dmitri Mendeleev published the first widely recognized periodic table in 1869, predicting undiscovered elements.\nlex: periodic table elements chemistry\nlex: periodic table groups periods atomic number\nlex: Mendeleev periodic table organization\nvec: what is the periodic table and how are chemical elements organized within it?\nvec: how did Mendeleev create the periodic table and what patterns does it reveal about element properties?"}
-{"input": "how to use green screen", "output": "hyde: Set up an evenly lit green screen with no wrinkles or shadows. Place the subject at least 6 feet in front of the screen to avoid green spill. Use two softbox lights at 45-degree angles on the screen and separate lights for the subject. In post-production, apply chroma key in software like DaVinci Resolve or After Effects to replace the green background.\nlex: green screen chroma key setup\nlex: green screen video editing background\nlex: green screen lighting technique\nvec: how do you set up and use a green screen for video production and chroma key compositing?\nvec: what lighting and camera settings are needed for clean green screen footage?"}
-{"input": "what are the latest fashion trends 2023?", "output": "hyde: Key fashion trends in 2023 included quiet luxury with understated neutral tones and premium fabrics, oversized blazers and tailored wide-leg trousers, sheer fabrics, ballet flats, and the revival of denim-on-denim. Barbiecore pink carried over from 2022, while earth tones and burgundy gained momentum heading into 2024.\nlex: fashion trends 2023 2024 2025\nlex: latest fashion trends clothing style\nlex: 2023 fashion runway trends\nvec: what were the top fashion trends in 2023 and how have they evolved into 2024-2025?\nvec: what clothing styles, colors, and silhouettes defined fashion trends in recent years?"}
-{"input": "how to conduct field research", "output": "hyde: Field research involves collecting data in natural settings through observation, interviews, and surveys. Begin with a clear research question and ethical approval. Use participant observation to immerse yourself in the environment. Take detailed field notes immediately after each session. Triangulate data from multiple sources to strengthen validity.\nlex: field research methods data collection\nlex: conduct field study observation interview\nlex: ethnographic fieldwork techniques\nvec: how do researchers plan and conduct field research including observation and interviews?\nvec: what are the methods and ethical considerations involved in conducting ethnographic field research?"}
-{"input": "digital currencies", "output": "hyde: Digital currencies exist only in electronic form and include cryptocurrencies like Bitcoin and Ethereum, which use decentralized blockchain networks, and central bank digital currencies (CBDCs) issued by governments. Bitcoin uses proof-of-work consensus while Ethereum moved to proof-of-stake. Over 130 countries are exploring or piloting CBDCs as of 2025.\nlex: digital currency cryptocurrency Bitcoin\nlex: digital currency CBDC blockchain\nlex: cryptocurrency exchange trading\nvec: what are digital currencies including cryptocurrencies and central bank digital currencies (CBDCs)?\nvec: how do digital currencies like Bitcoin and Ethereum work using blockchain technology?"}
-{"input": "tree grow", "output": "hyde: Tree growth rates vary widely by species. Fast-growing trees like hybrid poplar and willow can add 3-5 feet per year, while oaks grow 1-2 feet annually. For healthy growth, plant in appropriate soil with adequate drainage, water deeply during the first two years, mulch around the base (not touching the trunk), and prune to establish strong structure.\nlex: tree growth rate species\nlex: grow trees planting care\nlex: tree growth stages seedling mature\nvec: how fast do different tree species grow and what conditions promote healthy tree growth?\nvec: what are the stages of tree growth from seedling to mature tree and how do you care for young trees?"}
-{"input": "sail set", "output": "hyde: To set the mainsail, head into the wind and raise the halyard while feeding the luff into the mast track. Tension the outhaul and cunningham based on wind strength. When sailing upwind, trim the mainsheet until the telltales flow evenly. Ease the sheet when reaching or running. Adjust the jib sheet so the luff telltales break evenly.\nlex: sail set trim sailing\nlex: setting sails rigging sailboat\nlex: sail trim wind angle\nvec: how do you properly set and trim sails on a sailboat for different wind conditions?\nvec: what is the correct technique for setting a mainsail and jib when sailing upwind or downwind?"}
-{"input": "how to apply the scientific method", "output": "hyde: The scientific method follows these steps: (1) Observe a phenomenon, (2) Ask a question, (3) Form a testable hypothesis, (4) Design and conduct an experiment with controlled variables, (5) Collect and analyze data, (6) Draw conclusions \u2014 does the evidence support or refute the hypothesis? (7) Communicate results and invite replication.\nlex: scientific method steps process\nlex: apply scientific method experiment hypothesis\nlex: scientific method observation data analysis\nvec: what are the steps of the scientific method and how do you apply them to an experiment?\nvec: how do scientists use the scientific method to test hypotheses and draw conclusions?"}
-{"input": "what is the role of the holy spirit in christianity?", "output": "hyde: In Christian theology, the Holy Spirit is the third person of the Trinity \u2014 coequal with the Father and the Son. The Spirit convicts of sin, regenerates believers at conversion, indwells Christians as a guide and comforter, and empowers them with spiritual gifts (1 Corinthians 12). At Pentecost, the Spirit descended on the apostles, enabling them to preach.\nlex: Holy Spirit Christianity role\nlex: Holy Spirit Trinity Christian theology\nlex: Holy Spirit gifts fruits Bible\nvec: what role does the Holy Spirit play in Christian theology and the life of believers?\nvec: how is the Holy Spirit understood within the doctrine of the Trinity in Christianity?"}
-{"input": "code review", "output": "hyde: During a code review, check for correctness, readability, and maintainability. Look for edge cases, error handling, and potential security issues. Verify that naming conventions are clear and tests cover the new code. Provide constructive feedback with specific suggestions rather than vague criticism. Approve only when the code is production-ready.\nlex: code review pull request\nlex: code review checklist guidelines\nlex: peer code review feedback\nvec: what are the best practices for conducting an effective code review on a pull request?\nvec: what should reviewers look for during a code review including bugs, readability, and architecture?"}
-{"input": "how to manage personal finances", "output": "hyde: Start with a budget tracking all income and expenses. Build an emergency fund covering 3-6 months of expenses. Pay off high-interest debt aggressively. Contribute enough to your 401(k) to get the employer match, then fund a Roth IRA. Automate savings and investments. Review your financial plan quarterly and adjust as income or goals change.\nlex: personal finance management\nlex: manage money budgeting saving investing\nlex: personal financial planning\nvec: what are the key steps for managing your personal finances including budgeting, saving, and investing?\nvec: how should you organize your personal finances to build wealth and avoid debt?"}
-{"input": "how to understand legislative documents", "output": "hyde: Legislative documents follow a standard structure: the title, enacting clause, definitions section, substantive provisions, and effective date. Start with the definitions section \u2014 legal terms often have specific meanings different from everyday use. Read the \"findings\" or \"purpose\" section for context. Track cross-references to other statutes. Legislative summaries from CRS or CBO can provide plain-language explanations.\nlex: read legislative documents bills statutes\nlex: understand legislation legal language\nlex: interpreting bills acts laws\nvec: how do you read and interpret legislative documents such as bills, statutes, and regulations?\nvec: what techniques help non-lawyers understand the language and structure of legislative texts?"}
-{"input": "how to participate in public policy discussions", "output": "hyde: Attend town hall meetings and public comment sessions held by local and state government bodies. Submit written comments during rulemaking periods \u2014 federal agencies post proposed rules on regulations.gov. Contact your elected representatives by phone or email. Join advocacy organizations that align with your policy priorities and participate in their campaigns.\nlex: participate public policy discussion civic\nlex: public policy engagement town hall\nlex: citizen participation policy advocacy\nvec: how can citizens effectively participate in public policy discussions and influence government decisions?\nvec: what are the ways individuals can engage in public policy debates at the local, state, and federal level?"}
-{"input": "what is the role of philosophy in religion?", "output": "hyde: Philosophy of religion examines fundamental questions that religions address: Does God exist? What is the nature of the soul? How can evil exist if God is omnipotent? Philosophers evaluate arguments for God's existence (cosmological, teleological, ontological) and critique them. The field also explores the relationship between faith and reason, asking whether religious belief can be rationally justified.\nlex: philosophy of religion theology\nlex: philosophical arguments God existence\nlex: religion philosophy relationship faith reason\nvec: what role does philosophy play in examining and understanding religious beliefs and concepts?\nvec: how do philosophers analyze religious claims about God, the soul, and the meaning of existence?"}
-{"input": "what is outdoor survival training?", "output": "hyde: Outdoor survival training teaches skills needed to stay alive in wilderness emergencies. Core topics include building emergency shelters from natural materials, finding and purifying water, starting fire without matches using a ferro rod or bow drill, signaling for rescue, and basic navigation without GPS. Courses range from weekend workshops to multi-week immersive programs.\nlex: outdoor survival training wilderness\nlex: survival skills shelter fire water\nlex: wilderness survival course\nvec: what does outdoor survival training involve and what skills does it teach?\nvec: how do wilderness survival courses teach people to find shelter, water, fire, and food in the wild?"}
-{"input": "what is the history of the jazz age", "output": "hyde: The Jazz Age, spanning roughly 1920-1929, was a cultural movement defined by the rise of jazz music, loosened social mores, and economic prosperity. Jazz originated in New Orleans and spread to Chicago and New York. The Harlem Renaissance saw Black artists, musicians, and writers flourish. Louis Armstrong, Duke Ellington, and Bessie Smith became icons. The era ended with the stock market crash of 1929.\nlex: Jazz Age history 1920s\nlex: Jazz Age Harlem Renaissance Roaring Twenties\nlex: jazz music history Louis Armstrong\nvec: what was the Jazz Age and how did jazz music shape American culture in the 1920s?\nvec: how did the Jazz Age connect to the Harlem Renaissance and the social changes of the Roaring Twenties?"}
-{"input": "how to analyze government budgets", "output": "hyde: To analyze a government budget, start with the summary tables showing total revenue, total expenditure, and the deficit or surplus. Compare allocations across categories: defense, healthcare, education, infrastructure. Track year-over-year changes to identify spending trends. Examine revenue sources (income tax, sales tax, borrowing) and assess whether projected growth assumptions are realistic.\nlex: analyze government budget fiscal\nlex: government budget analysis revenue expenditure\nlex: federal state budget breakdown\nvec: how do you read and analyze a government budget to understand spending priorities and fiscal health?\nvec: what tools and frameworks are used to evaluate government budget allocations and deficits?"}
-{"input": "how to learn python programming?", "output": "hyde: Start with Python's official tutorial at docs.python.org. Learn the basics: variables, data types, loops, conditionals, and functions. Practice on sites like LeetCode or HackerRank. Build small projects \u2014 a calculator, a to-do list, or a web scraper using requests and BeautifulSoup. Automate the Boring Stuff with Python is a popular free book for beginners.\nlex: learn Python programming beginner\nlex: Python tutorial course exercises\nlex: Python programming fundamentals syntax\nvec: what is the best way for a beginner to learn Python programming from scratch?\nvec: what resources, courses, and projects should someone use to learn Python programming?"}
-{"input": "what is the gospel of wealth", "output": "hyde: The Gospel of Wealth is an 1889 essay by Andrew Carnegie arguing that the wealthy have a moral obligation to distribute their surplus wealth for the public good. Carnegie believed that rich individuals were better suited than government to direct resources toward education, libraries, and civic institutions. He practiced this philosophy by funding over 2,500 public libraries.\nlex: Gospel of Wealth Andrew Carnegie\nlex: Gospel of Wealth philanthropy gilded age\nvec: what is the Gospel of Wealth written by Andrew Carnegie and what does it argue about the duty of the rich?\nvec: how did Andrew Carnegie's Gospel of Wealth influence philanthropy and attitudes toward wealth in America?"}
-{"input": "how do various religions interpret the concept of god?", "output": "hyde: Christianity, Islam, and Judaism are monotheistic \u2014 they worship one God, though Christianity distinguishes three persons in the Trinity. Hinduism includes both monotheistic and polytheistic traditions: Brahman is the ultimate reality, while deities like Vishnu and Shiva represent aspects of it. Buddhism is non-theistic, focusing on awakening rather than worship of a creator God.\nlex: concept of God religions monotheism polytheism\nlex: God Christianity Islam Hinduism Judaism\nlex: religious interpretations divine nature\nvec: how do different world religions like Christianity, Islam, Hinduism, and Buddhism understand the concept of God?\nvec: what are the key differences between monotheistic, polytheistic, and non-theistic religious views of God?"}
-{"input": "what is satire", "output": "hyde: Satire uses irony, exaggeration, and ridicule to expose and criticize foolishness or corruption. Jonathan Swift's A Modest Proposal satirized British policy toward Ireland by suggesting the poor sell their children as food. George Orwell's Animal Farm satirized Soviet totalitarianism. Modern satire appears in shows like The Daily Show and publications like The Onion.\nlex: satire literary device definition\nlex: satire examples humor criticism\nlex: satirical writing Swift Orwell\nvec: what is satire as a literary form and how does it use humor to criticize people, institutions, or society?\nvec: what are famous examples of satire in literature, television, and political commentary?"}
-{"input": "json serial", "output": "hyde: JSON serialization converts an object into a JSON string for storage or transmission. In JavaScript, JSON.stringify(obj) serializes and JSON.parse(str) deserializes. In Python, json.dumps(obj) converts to a string and json.loads(str) parses back. Custom serialization for dates or complex types requires encoder/decoder overrides.\nlex: JSON serialization deserialization\nlex: JSON serialize object string\nlex: JSON stringify parse encoding\nvec: how do you serialize objects to JSON and deserialize JSON strings back to objects in programming?\nvec: what functions are used for JSON serialization in Python, JavaScript, and other languages?"}
-{"input": "how to fix car air conditioning?", "output": "hyde: If your car AC blows warm air, check the refrigerant level first \u2014 low refrigerant is the most common cause. Use a recharge kit with R-134a (or R-1234yf for newer cars) and a pressure gauge. If the compressor clutch doesn't engage, check the fuse and relay. A leak requires UV dye detection and repair before recharging. Cabin filter clogs can also reduce airflow.\nlex: fix car air conditioning AC repair\nlex: car AC not blowing cold recharge\nlex: automotive AC compressor refrigerant\nvec: how do you diagnose and fix a car air conditioning system that is not blowing cold air?\nvec: what are the common causes of car AC failure and how do you recharge the refrigerant?"}
-{"input": "what is moral absolutism", "output": "hyde: Moral absolutism holds that certain actions are intrinsically right or wrong regardless of context, culture, or consequences. For example, an absolutist would say lying is always wrong, even to protect someone. This view aligns with Kantian deontology and natural law theory. Critics argue it fails to account for moral dilemmas where absolute rules conflict.\nlex: moral absolutism ethics definition\nlex: moral absolutism versus relativism\nlex: absolute moral principles deontology\nvec: what is moral absolutism and how does it differ from moral relativism in ethical philosophy?\nvec: what are the arguments for and against the view that some moral rules are universally true?"}
+{"input": "how tourism affects local cultures", "output": "lex: tourism impact local culture\nlex: cultural effects mass tourism communities\nlex: tourist influence indigenous traditions\nvec: what are the positive and negative effects of tourism on local cultural traditions and communities\nvec: how does mass tourism change the customs, language, and daily life of host communities\nhyde: Tourism often leads to cultural commodification, where traditional dances, crafts, and rituals are adapted to meet tourist expectations. In Bali, temple ceremonies have been shortened and repackaged as entertainment, diluting their spiritual significance for locals."}
+{"input": "how to ferment foods at home", "output": "lex: home fermentation vegetables guide\nlex: lacto fermentation salt brine method\nlex: homemade sauerkraut kimchi ferment\nvec: what is the step-by-step process for fermenting vegetables at home using salt brine\nvec: how do you safely ferment foods like sauerkraut and kimchi in your kitchen\nhyde: To ferment vegetables at home, submerge them in a 2-3% salt brine in a mason jar. Keep at room temperature (65-75°F) for 3-7 days, burping the jar daily to release CO2. Taste after day 3 and refrigerate once the tanginess is to your liking."}
+{"input": "how to mix modern and vintage decor", "output": "lex: modern vintage decor mix interior design\nlex: combining antique furniture contemporary style\nvec: how do you blend vintage furniture and antique pieces with modern interior design elements\nvec: what are effective ways to combine mid-century or antique decor with contemporary minimalist style\nhyde: Pair a vintage wooden dresser with a sleek modern mirror. Use neutral wall colors as a backdrop and let one statement antique piece anchor each room. Mix textures—a velvet mid-century sofa with clean-lined metal side tables creates visual contrast without clashing."}
+{"input": "how to perform a scientific experiment", "output": "lex: scientific experiment steps procedure\nlex: scientific method hypothesis variables control\nlex: lab experiment design methodology\nvec: what are the steps to design and carry out a controlled scientific experiment\nvec: how do you formulate a hypothesis, set up controls, and collect data in a scientific experiment\nhyde: Step 1: Define your research question. Step 2: Formulate a testable hypothesis. Step 3: Identify independent, dependent, and controlled variables. Step 4: Design your procedure with a control group. Step 5: Collect and record data systematically. Step 6: Analyze results and draw conclusions."}
+{"input": "web mail", "output": "lex: webmail client email browser\nlex: web-based email service provider\nlex: online email login inbox access\nvec: how to access and use web-based email services like Gmail, Outlook, or Yahoo Mail through a browser\nvec: what are the most popular webmail providers and how do their features compare\nhyde: Webmail allows you to access your email through a web browser without installing a desktop client. Popular services include Gmail (mail.google.com), Outlook.com, Yahoo Mail, and ProtonMail. Log in with your credentials to read, compose, and manage messages from any device."}
+{"input": "what does the quran cover", "output": "lex: quran topics contents themes\nlex: quran teachings subjects covered\nvec: what are the main topics and themes discussed in the Quran\nvec: what subjects does the Quran address including theology, law, morality, and prophetic stories\nhyde: The Quran covers topics including monotheism (tawhid), the Day of Judgment, stories of prophets from Adam to Muhammad, ethical conduct, family law, dietary rules, charity (zakat), prayer, and the relationship between God and humanity. It contains 114 surahs organized roughly by length."}
+{"input": "web config", "output": "lex: web.config file IIS ASP.NET\nlex: web server configuration settings\nlex: web.config XML settings authentication\nvec: how to configure a web.config file for IIS and ASP.NET applications\nvec: what settings and sections are available in a web.config file for web server configuration\nhyde: The web.config file is an XML configuration file used by IIS and ASP.NET. It controls settings such as authentication, authorization, custom errors, connection strings, and HTTP handlers. Place it in the root of your application directory. Example: <configuration><system.web><compilation debug=\"true\"/></system.web></configuration>"}
+{"input": "how to choose farm equipment", "output": "lex: farm equipment selection tractor implements\nlex: agricultural machinery buying guide\nlex: choosing tractor size horsepower acreage\nvec: what factors should you consider when selecting farm equipment like tractors and implements for your land\nvec: how do you match the right agricultural machinery to your farm size, crop type, and budget\nhyde: Match tractor horsepower to your acreage: 25-45 HP for under 50 acres, 45-85 HP for 50-200 acres, and 100+ HP for large operations. Consider PTO power for running implements like mowers and tillers. Evaluate whether two-wheel or four-wheel drive suits your terrain. Used equipment can save 40-60% over new."}
+{"input": "how do thought experiments aid philosophical reasoning", "output": "lex: thought experiments philosophy reasoning\nlex: philosophical thought experiment trolley problem examples\nvec: how do philosophers use thought experiments like the trolley problem to test moral and logical intuitions\nvec: what role do hypothetical scenarios play in advancing philosophical arguments and theories\nhyde: Thought experiments isolate specific variables in complex problems by constructing hypothetical scenarios. Judith Jarvis Thomson's violinist argument tests bodily autonomy intuitions, while the trolley problem probes deontological vs. consequentialist reasoning. They help philosophers identify hidden assumptions and clarify conceptual boundaries."}
+{"input": "what is the significance of logic in philosophy", "output": "lex: logic philosophy significance role\nlex: formal logic philosophical argument validity\nvec: why is logic considered foundational to philosophical inquiry and argumentation\nvec: how does formal and informal logic help philosophers evaluate the validity of arguments\nhyde: Logic provides the structural framework for all philosophical reasoning. Aristotle's syllogistic logic established rules for valid deduction. Modern formal logic, including propositional and predicate calculus, allows philosophers to precisely evaluate argument validity, identify fallacies, and construct rigorous proofs."}
+{"input": "how to train for a 5k run", "output": "lex: 5k run training plan beginner\nlex: couch to 5k running program schedule\nvec: what is a good beginner training plan to prepare for running a 5k race\nvec: how many weeks does it take to train for a 5k and what should each week look like\nhyde: An 8-week 5K training plan for beginners: Weeks 1-2, alternate 1 min running and 2 min walking for 20 minutes, 3 days per week. Weeks 3-4, run 3 min, walk 1 min. Weeks 5-6, run 5 min, walk 1 min. Weeks 7-8, run continuously for 25-30 minutes. Include rest days between runs."}
+{"input": "how to engage with political dialogues", "output": "lex: political dialogue conversation civil discourse\nlex: discussing politics constructively disagreement\nvec: how can you have productive political conversations with people who hold different views\nvec: what techniques help maintain respectful and constructive political dialogue across ideological divides\nhyde: Start by listening actively and asking clarifying questions rather than immediately countering. Use \"I\" statements instead of accusations. Acknowledge shared values before addressing disagreements. Avoid strawmanning—restate the other person's position accurately before responding. Focus on specific policies rather than party labels."}
+{"input": "what is competitive analysis", "output": "lex: competitive analysis business strategy\nlex: competitor analysis market research framework\nvec: what is competitive analysis in business and how do companies use it to inform strategy\nvec: what frameworks and methods are used to conduct a competitive analysis of rival companies\nhyde: Competitive analysis is the process of identifying competitors and evaluating their strategies, strengths, and weaknesses relative to your own. Key frameworks include Porter's Five Forces, SWOT analysis, and competitor profiling. Analyze pricing, product features, market share, marketing channels, and customer reviews."}
+{"input": "how does the united nations operate", "output": "lex: united nations structure operations governance\nlex: UN general assembly security council agencies\nvec: how is the United Nations structured and what are the roles of its main bodies like the General Assembly and Security Council\nvec: how does the UN make decisions, enforce resolutions, and coordinate international action\nhyde: The UN operates through six principal organs: the General Assembly (all 193 members, one vote each), the Security Council (15 members, 5 permanent with veto power), the Secretariat, the International Court of Justice, ECOSOC, and the Trusteeship Council. Resolutions require majority votes; Security Council decisions need 9 of 15 votes with no P5 veto."}
+{"input": "what are the crusades?", "output": "lex: crusades medieval holy wars Jerusalem\nlex: crusades history 1096 Christian Muslim\nvec: what were the Crusades and why did European Christians launch military campaigns to the Holy Land\nvec: what were the major Crusades, their outcomes, and their lasting impact on Europe and the Middle East\nhyde: The Crusades were a series of religious wars between 1096 and 1291, initiated by the Latin Church to recapture the Holy Land from Muslim rule. The First Crusade (1096-1099) captured Jerusalem. Subsequent crusades had mixed results, and the last Crusader stronghold at Acre fell in 1291."}
+{"input": "what is a literary theme?", "output": "lex: literary theme definition examples\nlex: theme in literature central idea meaning\nvec: what is a literary theme and how does it differ from the subject or plot of a story\nvec: how do authors develop and convey themes throughout a work of literature\nhyde: A literary theme is the underlying message or central idea explored in a work of fiction. Unlike the subject (what the story is about), the theme is what the story says about that subject. For example, a novel's subject might be war, while its theme could be \"war dehumanizes both victors and victims.\""}
+{"input": "what is the ethical significance of consent", "output": "lex: consent ethics moral significance\nlex: informed consent autonomy medical ethics\nvec: why is consent considered ethically important in medical, legal, and interpersonal contexts\nvec: how does the concept of informed consent protect individual autonomy and human dignity\nhyde: Consent is ethically significant because it respects individual autonomy—the right of persons to make decisions about their own bodies and lives. In medical ethics, informed consent requires that patients understand the risks, benefits, and alternatives before agreeing to treatment. Without valid consent, actions become coercive regardless of their intent."}
+{"input": "paint mix", "output": "lex: paint color mixing guide ratios\nlex: acrylic oil paint mixing technique\nlex: paint color chart combinations blending\nvec: how do you mix paint colors to achieve specific shades and hues\nvec: what are the basic color mixing ratios and techniques for acrylic and oil paints\nhyde: Start with the three primary colors: red, blue, and yellow. Mix red and blue for purple, blue and yellow for green, red and yellow for orange. Add white to lighten (tint) and black to darken (shade). Mix small amounts gradually—it takes less dark paint to shift a light color than the reverse."}
+{"input": "how to conserve energy in the office?", "output": "lex: office energy conservation tips\nlex: reduce electricity workplace energy saving\nvec: what are practical ways to reduce energy consumption in an office or workplace\nvec: how can offices save electricity through lighting, HVAC, and equipment management\nhyde: Switch to LED lighting and install occupancy sensors in conference rooms and restrooms. Set computers to sleep mode after 10 minutes of inactivity. Use smart power strips to eliminate phantom loads. Set thermostats to 68°F in winter and 76°F in summer. These measures typically reduce office energy use by 20-30%."}
+{"input": "how to test soil ph?", "output": "lex: soil pH test kit method\nlex: test soil acidity alkalinity garden\nvec: how do you test the pH level of garden soil using a home test kit or meter\nvec: what methods are available for measuring soil pH and interpreting the results for gardening\nhyde: Insert a soil pH meter probe 4-6 inches into moist soil for a quick reading. For more accuracy, use a chemical test kit: mix one part soil with one part distilled water, let settle, then add the indicator solution. Compare the color to the chart. Most garden plants prefer pH 6.0-7.0."}
+{"input": "navigating sustainable building certifications", "output": "lex: sustainable building certification LEED BREEAM\nlex: green building standards certification process\nvec: what are the main sustainable building certifications like LEED, BREEAM, and WELL, and how do you achieve them\nvec: how do you navigate the requirements and application process for green building certifications\nhyde: LEED (Leadership in Energy and Environmental Design) awards points across categories: energy, water, materials, indoor quality, and site selection. Projects need 40-49 points for Certified, 50-59 for Silver, 60-79 for Gold, and 80+ for Platinum. BREEAM is more common in Europe and uses a percentage-based scoring system."}
+{"input": "what is the role of religious leaders?", "output": "lex: religious leaders role function community\nlex: clergy priests imams rabbis duties responsibilities\nvec: what roles do religious leaders like priests, imams, and rabbis play in their communities\nvec: how do religious leaders guide spiritual practice, provide counsel, and serve their congregations\nhyde: Religious leaders serve as spiritual guides, interpreters of sacred texts, and community organizers. A parish priest administers sacraments, leads worship, and provides pastoral care. An imam leads prayers, delivers Friday sermons (khutbah), and offers religious guidance. Rabbis teach Torah, arbitrate Jewish law, and counsel congregants."}
+{"input": "how to maintain a balanced diet", "output": "lex: balanced diet nutrition food groups\nlex: healthy eating meal plan macronutrients\nvec: how do you maintain a balanced diet with the right proportions of proteins, carbohydrates, fats, and vitamins\nvec: what does a daily balanced meal plan look like for an average adult\nhyde: A balanced diet includes roughly 45-65% carbohydrates, 20-35% fats, and 10-35% protein. Fill half your plate with fruits and vegetables, a quarter with whole grains, and a quarter with lean protein. Aim for 25-30g of fiber daily. Limit added sugars to under 25g and sodium to under 2300mg per day."}
+{"input": "what is moral philosophy", "output": "lex: moral philosophy ethics definition branches\nlex: ethics normative metaethics applied\nvec: what is moral philosophy and what are its main branches including normative ethics and metaethics\nvec: how does moral philosophy address questions of right and wrong, virtue, and duty\nhyde: Moral philosophy, or ethics, is the branch of philosophy concerned with questions of right and wrong conduct. It includes three main branches: metaethics (the nature of moral judgments), normative ethics (frameworks like utilitarianism, deontology, and virtue ethics), and applied ethics (specific issues like abortion or euthanasia)."}
+{"input": "how to use a light meter", "output": "lex: light meter photography exposure reading\nlex: incident reflected light meter settings\nvec: how do you use a handheld light meter to measure exposure for photography\nvec: what is the difference between incident and reflected light metering and when should you use each\nhyde: Point an incident light meter at the camera from the subject's position with the dome facing the lens. It reads the light falling on the subject, giving accurate exposure regardless of subject brightness. For reflected metering, point the meter at the subject from the camera position. Set the ISO first, then read the recommended aperture and shutter speed."}
+{"input": "what is the significance of creative writing?", "output": "lex: creative writing significance purpose value\nlex: creative writing literary expression storytelling\nvec: why is creative writing significant as a form of artistic expression and communication\nvec: how does creative writing contribute to culture, self-expression, and empathy\nhyde: Creative writing allows individuals to explore complex emotions, construct meaning, and communicate experiences that resist straightforward exposition. Through fiction, poetry, and memoir, writers develop empathy by inhabiting other perspectives. Studies show that reading literary fiction improves theory of mind and emotional intelligence."}
+{"input": "what are the key principles of confucianism?", "output": "lex: confucianism key principles ren li xiao\nlex: confucian philosophy five relationships virtues\nvec: what are the core principles and virtues of Confucianism such as ren, li, and filial piety\nvec: how do the five key relationships in Confucianism structure social and moral order\nhyde: The key principles of Confucianism include Ren (benevolence/humaneness), Li (ritual propriety), Xiao (filial piety), Yi (righteousness), and Zhi (wisdom). The Five Relationships define social bonds: ruler-subject, parent-child, husband-wife, elder-younger sibling, and friend-friend. Each relationship carries reciprocal obligations."}
+{"input": "what is agile project management", "output": "lex: agile project management scrum kanban\nlex: agile methodology sprints iterative development\nvec: what is agile project management and how does it differ from traditional waterfall approaches\nvec: how do agile frameworks like Scrum and Kanban organize work into sprints and iterations\nhyde: Agile project management is an iterative approach that delivers work in short cycles called sprints (typically 1-4 weeks). Teams hold daily standups, plan sprint backlogs, and conduct retrospectives. Key frameworks include Scrum (with defined roles: Product Owner, Scrum Master, Team) and Kanban (continuous flow with WIP limits)."}
+{"input": "what is the significance of the harlem renaissance", "output": "lex: Harlem Renaissance significance African American culture\nlex: Harlem Renaissance 1920s literature art music\nvec: what was the Harlem Renaissance and why was it significant for African American culture and arts\nvec: which writers, artists, and musicians defined the Harlem Renaissance and what impact did they have\nhyde: The Harlem Renaissance (1920s-1930s) was a cultural explosion centered in Harlem, New York, that transformed African American literature, music, and art. Langston Hughes, Zora Neale Hurston, and Claude McKay produced groundbreaking literary works. Jazz and blues flourished at the Cotton Club. The movement asserted Black identity and challenged racial stereotypes."}
+{"input": "what triggered world war i", "output": "lex: World War I causes triggers assassination\nlex: WWI outbreak 1914 Franz Ferdinand alliances\nvec: what events and conditions triggered the start of World War I in 1914\nvec: how did the assassination of Archduke Franz Ferdinand lead to a full-scale world war through the alliance system\nhyde: The assassination of Archduke Franz Ferdinand of Austria-Hungary on June 28, 1914, in Sarajevo triggered WWI. Austria-Hungary issued an ultimatum to Serbia. The alliance system pulled in Russia (allied with Serbia), Germany (allied with Austria-Hungary), France (allied with Russia), and Britain (allied with France and Belgium)."}
+{"input": "how to improve drawing skills?", "output": "lex: improve drawing skills practice techniques\nlex: learn to draw exercises sketching\nvec: what exercises and practice routines help improve drawing and sketching skills for beginners\nvec: how can you develop better hand-eye coordination and observational skills for drawing\nhyde: Practice gesture drawing daily: set a timer for 30-60 seconds and sketch the overall pose of a figure or object without lifting your pencil. Draw from life, not just photos. Study basic forms—spheres, cylinders, boxes—and learn to see complex objects as combinations of these shapes. Fill a sketchbook page every day."}
+{"input": "what is international relations", "output": "lex: international relations definition political science\nlex: IR theory realism liberalism diplomacy\nvec: what is the field of international relations and what theories explain how states interact\nvec: how does international relations study diplomacy, conflict, trade, and cooperation between nations\nhyde: International relations (IR) is a subfield of political science that studies interactions between states, international organizations, and non-state actors. Major theoretical frameworks include realism (states pursue power in an anarchic system), liberalism (institutions and cooperation reduce conflict), and constructivism (social norms shape state behavior)."}
+{"input": "what is the human genome project", "output": "lex: Human Genome Project HGP DNA sequencing\nlex: human genome mapping genes 2003 completed\nvec: what was the Human Genome Project and what did it accomplish in mapping human DNA\nvec: how has the Human Genome Project influenced genetics, medicine, and our understanding of human biology\nhyde: The Human Genome Project (1990-2003) was an international research effort to sequence all 3.2 billion base pairs of human DNA and identify approximately 20,500 genes. Completed in April 2003, it cost $2.7 billion and has enabled advances in personalized medicine, genetic testing, and understanding of hereditary diseases."}
+{"input": "how to assess a neighborhood safety", "output": "lex: neighborhood safety assessment crime check\nlex: evaluate neighborhood crime rate walkability\nvec: how do you assess whether a neighborhood is safe before moving there\nvec: what factors and data sources help evaluate neighborhood safety including crime statistics and local conditions\nhyde: Check crime maps on sites like CrimeMapping.com or SpotCrime using the ZIP code. Walk the neighborhood at different times of day and night. Look for signs of community investment: maintained properties, street lighting, and active businesses. Talk to residents and visit the local police precinct for crime statistics."}
+{"input": "what are the characteristics of a just society", "output": "lex: just society characteristics principles fairness\nlex: social justice equality Rawls distributive justice\nvec: what are the defining characteristics of a just society according to political philosophy\nvec: how do philosophers like John Rawls define justice and the principles of a fair society\nhyde: John Rawls argued a just society is one where principles are chosen behind a \"veil of ignorance\"—not knowing your own position. His two principles: (1) equal basic liberties for all, and (2) social and economic inequalities are arranged to benefit the least advantaged (difference principle) with fair equality of opportunity."}
+{"input": "what is the significance of the narrative arc?", "output": "lex: narrative arc significance story structure\nlex: narrative arc exposition climax resolution\nvec: what is a narrative arc and why is it significant in storytelling and fiction writing\nvec: how do the stages of a narrative arc—exposition, rising action, climax, falling action, resolution—shape a story\nhyde: The narrative arc structures a story's progression from exposition through rising action to climax, then falling action and resolution. Gustav Freytag formalized this as a five-act pyramid. A strong arc creates tension, develops characters through conflict, and delivers emotional payoff, keeping readers engaged from beginning to end."}
+{"input": "what is bioethics", "output": "lex: bioethics definition medical ethics biology\nlex: bioethics issues euthanasia cloning genetic engineering\nvec: what is bioethics and what moral questions does it address in medicine and biological science\nvec: how does bioethics evaluate issues like genetic engineering, euthanasia, and organ transplantation\nhyde: Bioethics is an interdisciplinary field that examines ethical issues arising from advances in biology and medicine. Core principles include autonomy (patient choice), beneficence (do good), non-maleficence (do no harm), and justice (fair distribution). It addresses topics such as end-of-life care, genetic editing (CRISPR), stem cell research, and clinical trial ethics."}
+{"input": "what is the significance of reincarnation in hinduism", "output": "lex: reincarnation hinduism samsara karma\nlex: Hindu rebirth cycle moksha atman\nvec: what role does reincarnation play in Hindu belief and how is it connected to karma and moksha\nvec: how does the concept of samsara and the cycle of rebirth shape Hindu spiritual practice\nhyde: In Hinduism, reincarnation (samsara) is the cycle of death and rebirth of the atman (soul). Karma—the accumulated results of actions—determines the conditions of each rebirth. The ultimate goal is moksha: liberation from the cycle of samsara, achieved through jnana (knowledge), bhakti (devotion), or karma yoga (selfless action)."}
+{"input": "learn code", "output": "lex: learn programming coding beginner\nlex: learn to code online courses tutorials\nlex: programming language beginner Python JavaScript\nvec: how can a beginner start learning to code and which programming language should they learn first\nvec: what are the best free resources and online courses for learning programming from scratch\nhyde: Start with Python or JavaScript—both have gentle learning curves and wide applications. Free resources include freeCodeCamp.org, Codecademy, and CS50 on edX. Begin with variables, loops, and functions, then build small projects. Practice daily on coding challenges at sites like LeetCode or Codewars."}
+{"input": "what is the significance of the enlightenment?", "output": "lex: Enlightenment significance 18th century philosophy\nlex: Age of Enlightenment reason science liberty\nvec: what was the Enlightenment and why is it considered a turning point in Western intellectual history\nvec: how did Enlightenment thinkers like Voltaire, Locke, and Kant influence modern democracy and science\nhyde: The Enlightenment (c. 1685-1815) emphasized reason, individual liberty, and scientific inquiry over tradition and religious authority. Thinkers like John Locke (natural rights), Voltaire (freedom of speech), and Kant (\"dare to know\") laid the intellectual foundations for democratic revolutions, constitutional government, and the separation of church and state."}
+{"input": "google docs", "output": "lex: Google Docs word processor cloud\nlex: Google Docs collaboration editing sharing\nlex: Google Docs templates formatting features\nvec: how do you use Google Docs to create, edit, and collaborate on documents online\nvec: what features does Google Docs offer for real-time collaboration, formatting, and sharing\nhyde: Google Docs is a free cloud-based word processor at docs.google.com. It supports real-time collaboration—multiple users can edit simultaneously with changes tracked by color. Share documents via link or email with view, comment, or edit permissions. It auto-saves to Google Drive and supports export to .docx, .pdf, and other formats."}
+{"input": "how to perform statistical analysis in research", "output": "lex: statistical analysis research methods\nlex: statistical tests t-test ANOVA regression research\nvec: how do researchers choose and perform appropriate statistical analyses for their data\nvec: what are the common statistical methods used in academic research and when should each be applied\nhyde: Choose your statistical test based on your data type and research question. Use t-tests for comparing two group means, ANOVA for three or more groups, chi-square for categorical data, and regression for predicting outcomes. Check assumptions: normality (Shapiro-Wilk test), homogeneity of variance (Levene's test), and independence of observations."}
+{"input": "what is the role of physics in engineering", "output": "lex: physics role engineering applications\nlex: physics principles mechanical electrical civil engineering\nvec: how do physics principles apply to engineering disciplines like mechanical, electrical, and civil engineering\nvec: what fundamental physics concepts are essential for engineers to understand and apply\nhyde: Physics underpins all engineering disciplines. Mechanical engineers apply Newton's laws and thermodynamics to design engines and machines. Electrical engineers use Maxwell's equations and semiconductor physics to build circuits. Civil engineers rely on statics and material strength calculations to design buildings and bridges that withstand loads."}
+{"input": "how to read a topographic map?", "output": "lex: topographic map reading contour lines\nlex: topo map elevation contour interval legend\nvec: how do you read contour lines and elevation data on a topographic map\nvec: what do the symbols, contour lines, and colors on a USGS topographic map represent\nhyde: Contour lines connect points of equal elevation. Lines close together indicate steep terrain; lines far apart indicate gentle slopes. The contour interval (stated in the legend) is the elevation difference between adjacent lines. Every fifth line is an index contour, drawn thicker with the elevation labeled. Brown lines show terrain, blue shows water."}
+{"input": "how to choose car speakers?", "output": "lex: car speakers choosing size type\nlex: car audio speakers coaxial component upgrade\nvec: how do you choose aftermarket car speakers that fit your vehicle and sound preferences\nvec: what is the difference between coaxial and component car speakers and which should you buy\nhyde: Check your car's speaker sizes (common: 6.5\", 6x9\", 5.25\") using a fitment guide. Coaxial speakers are all-in-one replacements—easy to install with tweeter built in. Component speakers separate the woofer, tweeter, and crossover for better sound staging but require more installation work. Look for sensitivity (85+ dB) and RMS power handling matching your head unit or amp."}
+{"input": "where to buy organic seeds?", "output": "lex: buy organic seeds online garden\nlex: organic seed suppliers heirloom non-GMO\nvec: where can you buy certified organic and heirloom seeds for a home garden\nvec: which online seed companies sell high-quality organic and non-GMO vegetable and flower seeds\nhyde: Trusted organic seed suppliers include Johnny's Selected Seeds, High Mowing Organic Seeds, Seed Savers Exchange, and Baker Creek Heirloom Seeds. Look for USDA Certified Organic labels and non-GMO verification. Order in January-February for spring planting. Many offer sampler packs for beginners."}
+{"input": "challenges of digital transformation", "output": "lex: digital transformation challenges obstacles\nlex: enterprise digital transformation barriers legacy systems\nvec: what are the main challenges organizations face when undergoing digital transformation\nvec: how do legacy systems, culture resistance, and skill gaps hinder digital transformation efforts\nhyde: Common digital transformation challenges include resistance to change from employees, integrating legacy systems with new platforms, data silos across departments, cybersecurity risks during migration, and shortage of skilled talent. McKinsey reports that 70% of digital transformation initiatives fail, often due to organizational culture rather than technology."}
+{"input": "what makes a good thriller novel?", "output": "lex: thriller novel elements writing techniques\nlex: good thriller pacing suspense plot twists\nvec: what elements make a thriller novel compelling including pacing, suspense, and plot structure\nvec: how do successful thriller writers build tension and keep readers turning pages\nhyde: A great thriller has a high-stakes central conflict, a ticking clock, and a protagonist under escalating pressure. Pacing is crucial—short chapters and cliffhanger endings drive momentum. Plant red herrings and misdirection, then deliver a twist that recontextualizes earlier clues. The antagonist should be intelligent and formidable, making the hero's victory feel earned."}
+{"input": "what is the composition of the earth's atmosphere", "output": "lex: earth atmosphere composition gases percentages\nlex: atmospheric gases nitrogen oxygen argon CO2\nvec: what gases make up the Earth's atmosphere and in what proportions\nvec: what is the chemical composition of Earth's atmosphere including trace gases\nhyde: Earth's atmosphere is composed of 78.09% nitrogen (N₂), 20.95% oxygen (O₂), 0.93% argon (Ar), and 0.04% carbon dioxide (CO₂). Trace gases include neon, helium, methane, krypton, and water vapor (0-4% depending on humidity). The atmosphere extends roughly 480 km above the surface and is divided into five layers: troposphere, stratosphere, mesosphere, thermosphere, and exosphere."}
+{"input": "how to file a petition to government", "output": "lex: file petition government civic action\nlex: government petition create submit signatures\nvec: how do you create and file a formal petition to a government body or elected representative\nvec: what is the process for submitting a petition to local, state, or federal government\nhyde: To file a petition, clearly state your request and supporting reasons. Collect signatures from eligible constituents—most jurisdictions require a minimum number based on population. File the petition with the appropriate government office (city clerk, state legislature, or Congress). Online platforms like Change.org can amplify support but may not satisfy legal petition requirements."}
+{"input": "how to grow rhododendrons?", "output": "lex: grow rhododendrons planting care soil\nlex: rhododendron acidic soil shade watering\nvec: how do you plant and care for rhododendrons including soil, light, and watering requirements\nvec: what soil pH and growing conditions do rhododendrons need to thrive\nhyde: Rhododendrons require acidic soil (pH 4.5-6.0), partial shade, and consistent moisture. Plant in well-drained soil amended with peat moss or composted pine bark. Mulch with 2-3 inches of pine needles. Water deeply once a week—they have shallow root systems sensitive to drought. Avoid planting too deep; keep the root ball crown at soil level."}
+{"input": "what is the ethics of surveillance", "output": "lex: surveillance ethics privacy government\nlex: mass surveillance civil liberties Fourth Amendment\nvec: what are the ethical issues surrounding government and corporate surveillance of citizens\nvec: how do privacy rights conflict with security justifications for mass surveillance programs\nhyde: Mass surveillance raises fundamental questions about the balance between security and privacy. Critics argue programs like the NSA's PRISM violate Fourth Amendment protections against unreasonable search. Proponents claim surveillance prevents terrorism. The chilling effect—self-censorship by citizens who know they're watched—threatens free expression and democratic participation."}
+{"input": "regex match", "output": "lex: regex match pattern regular expression\nlex: regex syntax matching groups capture\nlex: regular expression examples tutorial\nvec: how do you write and use regular expressions to match patterns in text\nvec: what is the syntax for regex pattern matching including groups, quantifiers, and character classes\nhyde: A regex (regular expression) matches text patterns. Common syntax: `.` matches any character, `*` means zero or more, `+` means one or more, `?` means optional. `[a-z]` matches lowercase letters. `\\d` matches digits. Capture groups use parentheses: `(\\d{3})-(\\d{4})` matches and captures phone number parts. Use `^` for start and `$` for end of line."}
+{"input": "what is the ethics of research", "output": "lex: research ethics principles IRB\nlex: ethical research human subjects informed consent\nvec: what ethical principles govern scientific and academic research involving human subjects\nvec: how do institutional review boards ensure ethical standards in research studies\nhyde: Research ethics are governed by the Belmont Report's three principles: respect for persons (informed consent), beneficence (minimize harm, maximize benefit), and justice (fair selection of subjects). Institutional Review Boards (IRBs) review all human subjects research. Key requirements include voluntary participation, confidentiality, right to withdraw, and risk-benefit assessment."}
+{"input": "how to set intentions for the day?", "output": "lex: set daily intentions morning routine\nlex: intention setting mindfulness journaling\nvec: how do you set meaningful daily intentions as part of a morning routine\nvec: what is the practice of setting intentions and how does it differ from goal-setting\nhyde: Each morning, sit quietly for 2-3 minutes and ask yourself: \"How do I want to feel today?\" and \"What matters most today?\" Write one to three intentions in a journal—e.g., \"I will be present in conversations\" or \"I will approach challenges with curiosity.\" Intentions focus on how you show up, not on tasks to complete. Review them at midday and evening."}
+{"input": "what is the role of sacred music in worship?", "output": "lex: sacred music worship role function\nlex: religious hymns chants liturgical music\nvec: what role does sacred music play in religious worship services across different faiths\nvec: how do hymns, chants, and liturgical music enhance the experience of communal worship\nhyde: Sacred music serves multiple functions in worship: it creates a contemplative atmosphere, unifies the congregation through shared singing, reinforces theological themes through lyrics, and marks liturgical transitions. Gregorian chant in Catholic Mass, bhajans in Hindu puja, and the Islamic adhan each use distinct musical forms to invoke the sacred and facilitate prayer."}
+{"input": "what are the features of ancient roman society?", "output": "lex: ancient Roman society features structure\nlex: Roman social classes patricians plebeians republic\nvec: what were the defining features of ancient Roman society including social classes, government, and daily life\nvec: how was ancient Roman society structured in terms of class hierarchy, citizenship, and law\nhyde: Roman society was divided into patricians (aristocratic families), plebeians (common citizens), freedmen, and slaves. Citizens had legal rights including voting and property ownership. The Senate held political power, though plebeians gained representation through tribunes. Roman law (Twelve Tables, 450 BC) codified legal principles still influential today. The paterfamilias held authority over extended households."}
+{"input": "what is the role of family in society", "output": "lex: family role society function socialization\nlex: family structure social institution support\nvec: what roles does the family unit play in society including socialization, support, and cultural transmission\nvec: how do families function as the primary social institution for raising children and maintaining social order\nhyde: The family is society's primary unit of socialization, teaching children language, norms, and values. Functionalist sociologists identify four key roles: socialization of children, economic cooperation, emotional support, and regulation of sexual behavior. Families also transmit cultural identity, religious traditions, and social status across generations."}
+{"input": "what is quantitative easing explained", "output": "lex: quantitative easing QE monetary policy\nlex: quantitative easing central bank bond buying\nvec: what is quantitative easing and how do central banks use it to stimulate the economy\nvec: how does the Federal Reserve's quantitative easing program work and what are its effects on inflation and interest rates\nhyde: Quantitative easing (QE) is an unconventional monetary policy where a central bank buys government bonds and other securities to inject money into the economy. When the Fed buys bonds, it increases bank reserves, lowers long-term interest rates, and encourages lending. The Fed used QE after 2008 and during COVID-19, expanding its balance sheet to over $8 trillion."}
+{"input": "what is guerrilla marketing", "output": "lex: guerrilla marketing unconventional low-cost\nlex: guerrilla marketing examples campaigns street\nvec: what is guerrilla marketing and how do businesses use unconventional tactics to promote products\nvec: what are examples of successful guerrilla marketing campaigns and what makes them effective\nhyde: Guerrilla marketing uses unconventional, low-cost tactics to create memorable brand experiences in unexpected places. Examples include flash mobs, street art installations, viral stunts, and ambient advertising placed in surprising locations. Jay Conrad Levinson coined the term in 1984. Success depends on creativity, surprise, and shareability rather than large advertising budgets."}
+{"input": "what is the study of geology", "output": "lex: geology study earth science rocks minerals\nlex: geology branches mineralogy tectonics stratigraphy\nvec: what is geology and what do geologists study about the Earth's structure, materials, and history\nvec: what are the main branches of geology including mineralogy, petrology, and plate tectonics\nhyde: Geology is the scientific study of the Earth's structure, composition, and processes. Geologists examine rocks, minerals, fossils, and landforms to understand Earth's 4.5-billion-year history. Major branches include mineralogy (minerals), petrology (rocks), stratigraphy (rock layers), paleontology (fossils), and tectonics (plate movement and earthquakes)."}
+{"input": "how to photograph artwork?", "output": "lex: photograph artwork lighting camera setup\nlex: art photography reproduction color accuracy\nvec: how do you photograph paintings and artwork with accurate color and minimal glare\nvec: what camera settings, lighting, and techniques produce high-quality photographs of artwork\nhyde: Use two identical lights at 45-degree angles to the artwork to eliminate glare and ensure even illumination. Mount the camera on a tripod, centered and parallel to the surface. Shoot in RAW at ISO 100, f/8 for sharpness. Include a color checker card in one frame for accurate white balance. Use a remote shutter to avoid camera shake."}
+{"input": "what are smart home technologies", "output": "lex: smart home technologies devices IoT\nlex: smart home automation hub Alexa Google Home\nvec: what smart home technologies are available for automating lighting, security, climate, and entertainment\nvec: how do smart home devices and IoT platforms like Alexa, Google Home, and HomeKit work together\nhyde: Smart home technologies connect devices via Wi-Fi, Zigbee, Z-Wave, or Matter protocol to a central hub or voice assistant. Common categories include smart lighting (Philips Hue), thermostats (Nest, Ecobee), security cameras (Ring, Arlo), locks (August, Yale), and speakers (Amazon Echo, Google Nest). Automations trigger actions based on time, location, or sensor data."}
+{"input": "how sports influence youth development", "output": "lex: sports youth development influence benefits\nlex: youth athletics child development teamwork discipline\nvec: how does participation in sports influence the physical, social, and emotional development of young people\nvec: what benefits do organized sports provide for youth including teamwork, discipline, and mental health\nhyde: Research shows youth sports participation improves physical fitness, teaches teamwork and leadership, and builds self-esteem. A 2019 study in the Journal of Sport and Health Science found that adolescents who play organized sports report lower rates of depression and anxiety. However, excessive pressure and early specialization can lead to burnout and injury."}
+{"input": "how to build self-confidence", "output": "lex: build self-confidence techniques self-esteem\nlex: improve confidence self-worth mindset\nvec: what are practical strategies for building self-confidence and overcoming self-doubt\nvec: how can someone develop greater self-confidence through daily habits and mindset shifts\nhyde: Start by setting small, achievable goals and completing them—each success builds evidence of competence. Practice self-compassion: replace harsh self-criticism with the tone you'd use with a friend. Keep a \"wins\" journal and review it weekly. Gradually expand your comfort zone by doing one slightly uncomfortable thing each day. Confidence grows from accumulated experience, not positive thinking alone."}
+{"input": "how to plan a family field trip?", "output": "lex: family field trip planning kids activities\nlex: family outing day trip educational fun\nvec: how do you plan an enjoyable and educational family field trip with children\nvec: what are tips for organizing a family day trip including choosing destinations, packing, and budgeting\nhyde: Choose an age-appropriate destination: museums, nature centers, farms, or historical sites. Check hours, admission costs, and accessibility online. Pack snacks, water, sunscreen, and a first-aid kit. Plan for shorter attention spans—schedule breaks every 60-90 minutes. Involve kids in planning by letting them choose one activity. Bring a scavenger hunt list to keep them engaged."}
+{"input": "what is a scientific model", "output": "lex: scientific model definition types examples\nlex: scientific models simulation representation theory\nvec: what is a scientific model and how do scientists use models to explain and predict natural phenomena\nvec: what are the different types of scientific models including physical, mathematical, and computational models\nhyde: A scientific model is a simplified representation of a system or phenomenon used to explain observations and make predictions. Models can be physical (a globe representing Earth), mathematical (equations describing gravity), or computational (climate simulations). All models are approximations—George Box wrote, \"All models are wrong, but some are useful.\""}
+{"input": "io file", "output": "lex: file I/O input output operations\nlex: file read write programming IO\nlex: file handling open close stream\nvec: how do you perform file input and output operations in programming languages\nvec: what are the common methods for reading from and writing to files in Python, Java, or C\nhyde: File I/O involves opening a file, reading or writing data, and closing it. In Python: `with open('file.txt', 'r') as f: data = f.read()` for reading, and `with open('file.txt', 'w') as f: f.write('hello')` for writing. The `with` statement ensures the file is properly closed. Use 'a' mode to append, 'rb'/'wb' for binary files."}
+{"input": "what are creative portrait ideas?", "output": "lex: creative portrait photography ideas techniques\nlex: portrait photo ideas poses lighting creative\nvec: what are unique and creative portrait photography ideas for interesting and artistic results\nvec: how can you use lighting, props, angles, and locations for creative portrait photography\nhyde: Try shooting through prisms or crystal balls for rainbow light effects. Use fairy lights wrapped around the subject for warm bokeh. Photograph through rain-covered glass for a moody feel. Use dramatic side lighting with one bare bulb for chiaroscuro portraits. Shoot reflections in puddles, mirrors, or sunglasses. Double exposure combining portraits with textures or nature works well in-camera or in post."}
+{"input": "fix hair", "output": "lex: fix hair repair damaged broken\nlex: hair repair treatment dry frizzy damaged\nlex: hairstyle fix bad hair day\nvec: how do you fix and repair damaged, dry, or frizzy hair\nvec: what are quick fixes for a bad hair day and long-term solutions for hair damage\nhyde: For damaged hair, use a deep conditioning mask with keratin or argan oil once a week. Trim split ends every 6-8 weeks. Reduce heat styling—if you must, use a heat protectant spray at 300°F max. For a quick bad hair day fix, try dry shampoo at the roots, a slicked-back bun, or braids. Sleep on a silk pillowcase to reduce friction and breakage."}
+{"input": "build up", "output": "lex: build up strength fitness training\nlex: build up muscle mass exercise\nlex: buildup gradual increase accumulation\nvec: how do you progressively build up strength and muscle through a structured training program\nvec: what does it mean to build up endurance, skills, or resources gradually over time\nhyde: To build up strength, follow progressive overload: gradually increase weight, reps, or sets each week. A beginner program like Starting Strength adds 5 lbs to compound lifts every session. Eat adequate protein (0.7-1g per pound bodyweight). Rest 48 hours between training the same muscle group. Consistency over 8-12 weeks produces measurable strength gains."}
+{"input": "how to participate in a protest", "output": "lex: participate protest rally demonstration rights\nlex: protest safety tips First Amendment rights\nvec: how do you safely and effectively participate in a protest or public demonstration\nvec: what should you know about your legal rights and safety precautions when attending a protest\nhyde: Know your rights: the First Amendment protects peaceful assembly on public property. Bring water, snacks, a phone charger, and ID. Write an emergency contact number on your arm. Stay with a buddy and agree on a meeting point. Wear comfortable shoes and weather-appropriate clothing. If tear gas is used, move upwind. Document police interactions by filming at a safe distance."}
+{"input": "what is the principle of utility?", "output": "lex: principle of utility utilitarianism Bentham Mill\nlex: utility principle greatest happiness greatest number\nvec: what is the principle of utility in utilitarian ethics as defined by Bentham and Mill\nvec: how does the utilitarian principle of utility evaluate actions based on their consequences for overall happiness\nhyde: The principle of utility, formulated by Jeremy Bentham, states that the morally right action is the one that produces the greatest happiness for the greatest number. Bentham's felicific calculus measured pleasure by intensity, duration, certainty, and extent. John Stuart Mill refined this, distinguishing higher (intellectual) pleasures from lower (bodily) pleasures."}
+{"input": "how to create a brand logo", "output": "lex: brand logo design create process\nlex: logo design principles typography color branding\nvec: how do you design an effective brand logo from concept to final design\nvec: what principles of logo design ensure a brand mark is memorable, scalable, and versatile\nhyde: Start by researching the brand's values, target audience, and competitors. Sketch 20-30 rough concepts on paper before going digital. A strong logo works in black and white, at small sizes (favicon), and large formats (billboard). Limit to 2-3 colors and one typeface. Test on business cards, websites, and merchandise. Tools: Adobe Illustrator, Figma, or Affinity Designer for vector-based design."}
+{"input": "how to check tire pressure?", "output": "lex: check tire pressure gauge PSI\nlex: tire pressure TPMS correct level car\nvec: how do you check and adjust tire pressure using a tire gauge\nvec: what is the correct tire pressure for a car and how often should it be checked\nhyde: Check tire pressure when tires are cold (before driving or 3+ hours after). Remove the valve cap, press a tire gauge firmly onto the valve stem, and read the PSI. Compare to the recommended pressure on the driver's door jamb sticker (not the tire sidewall—that's the maximum). Add air at a gas station if low. Check all four tires plus the spare monthly."}
+{"input": "how to cook quinoa", "output": "lex: cook quinoa recipe instructions stovetop\nlex: quinoa cooking ratio water time\nvec: what is the correct method for cooking quinoa on the stovetop with the right water ratio\nvec: how do you cook fluffy quinoa and what is the water to quinoa ratio\nhyde: Rinse 1 cup quinoa in a fine mesh strainer to remove bitter saponins. Combine with 2 cups water and a pinch of salt in a saucepan. Bring to a boil, reduce to low, cover, and simmer for 15 minutes. Remove from heat and let steam with the lid on for 5 minutes. Fluff with a fork. Yields about 3 cups cooked quinoa."}
+{"input": "how to prevent identity theft", "output": "lex: prevent identity theft protection tips\nlex: identity theft prevention credit freeze monitor\nvec: what steps can you take to protect yourself from identity theft and fraud\nvec: how do credit freezes, strong passwords, and monitoring help prevent identity theft\nhyde: Freeze your credit at all three bureaus (Equifax, Experian, TransUnion)—it's free and prevents unauthorized accounts. Use unique passwords with a password manager. Enable two-factor authentication on all financial accounts. Shred documents with personal information. Monitor bank statements weekly and check your credit report annually at AnnualCreditReport.com."}
+{"input": "how to start a blog", "output": "lex: start blog setup hosting platform\nlex: blogging beginners WordPress Substack setup\nvec: how do you start a blog from scratch including choosing a platform, domain, and writing your first posts\nvec: what are the steps to launch a successful blog and attract readers\nhyde: Choose a platform: WordPress.org for full control (needs hosting), or Substack/Ghost for simplicity. Pick a niche you can write about consistently. Register a domain name ($10-15/year). Write 5-10 posts before launching so visitors find content immediately. Optimize for SEO with clear titles and headers. Share on social media and engage with other bloggers in your niche."}
+{"input": "documentary photography", "output": "lex: documentary photography style techniques\nlex: documentary photojournalism storytelling long-term\nvec: what is documentary photography and how does it differ from photojournalism and street photography\nvec: what techniques and approaches do documentary photographers use to tell stories through images\nhyde: Documentary photography aims to chronicle real events, conditions, or people over time to create a truthful narrative. Unlike photojournalism's focus on breaking news, documentary work unfolds over weeks, months, or years. Key practitioners include Dorothea Lange (Great Depression), Sebastião Salgado (workers, migration), and James Nachtwey (conflict). Shoot with available light, build trust with subjects, and caption extensively."}
+{"input": "what causes tides", "output": "lex: tides causes moon gravitational pull\nlex: tidal forces moon sun earth gravity\nvec: what causes ocean tides and how do the gravitational forces of the moon and sun create them\nvec: how does the moon's gravitational pull create high and low tides on Earth\nhyde: Tides are primarily caused by the gravitational pull of the Moon on Earth's oceans. The side of Earth facing the Moon experiences a direct gravitational pull creating a tidal bulge (high tide). A second bulge forms on the opposite side due to inertial forces. The Sun's gravity also contributes—spring tides (highest) occur during full and new moons when Sun and Moon align."}
+{"input": "what is the history of christianity?", "output": "lex: history Christianity origins spread timeline\nlex: Christianity history Jesus apostles church development\nvec: what is the history of Christianity from its origins with Jesus to the modern era\nvec: how did Christianity spread from a small Jewish sect to a global religion over two millennia\nhyde: Christianity originated in 1st-century Judea with the teachings of Jesus of Nazareth. After his crucifixion (c. 30 AD), apostles like Paul spread the faith across the Roman Empire. Constantine legalized it in 313 AD (Edict of Milan). The Great Schism (1054) split Eastern Orthodox and Roman Catholic churches. The Protestant Reformation began in 1517 with Martin Luther."}
+{"input": "what is the industrial revolution", "output": "lex: Industrial Revolution history manufacturing 18th century\nlex: Industrial Revolution steam engine factories Britain\nvec: what was the Industrial Revolution and how did it transform manufacturing, society, and the economy\nvec: when and where did the Industrial Revolution begin and what were its major innovations and consequences\nhyde: The Industrial Revolution began in Britain around 1760-1840, transforming agrarian economies into industrial ones. Key innovations included the steam engine (James Watt), spinning jenny (textile production), and iron smelting with coke. Factories replaced cottage industries. Urbanization accelerated as workers moved to cities. It brought economic growth but also child labor, pollution, and harsh working conditions."}
+{"input": "what is sustainable forestry?", "output": "lex: sustainable forestry management practices\nlex: sustainable logging forest stewardship FSC\nvec: what is sustainable forestry and how does it balance timber harvesting with forest ecosystem health\nvec: what practices and certifications like FSC ensure forests are managed sustainably\nhyde: Sustainable forestry manages forests to meet current timber needs without compromising future generations' resources. Practices include selective logging (harvesting individual trees rather than clearcutting), replanting harvested areas, maintaining buffer zones near waterways, and preserving biodiversity corridors. The Forest Stewardship Council (FSC) certifies sustainably managed forests."}
+{"input": "what is character arc?", "output": "lex: character arc definition types fiction\nlex: character arc development flat dynamic transformation\nvec: what is a character arc in fiction and how do characters change throughout a story\nvec: what are the different types of character arcs including positive, negative, and flat arcs\nhyde: A character arc is the transformation a character undergoes from the beginning to the end of a story. In a positive arc, the character overcomes a flaw or false belief (e.g., Scrooge in A Christmas Carol). In a negative arc, they descend (Walter White in Breaking Bad). In a flat arc, the character's beliefs remain constant but they change the world around them."}
+{"input": "how to address ethical dilemmas in research", "output": "lex: ethical dilemmas research handling IRB\nlex: research ethics conflict resolution informed consent\nvec: how should researchers identify and address ethical dilemmas that arise during scientific studies\nvec: what frameworks and procedures help resolve ethical conflicts in academic and clinical research\nhyde: When facing an ethical dilemma in research, consult your IRB or ethics committee immediately. Common dilemmas include conflicts between maximizing data quality and minimizing participant burden, handling incidental findings, and balancing confidentiality with mandatory reporting obligations. Document your reasoning and decisions. The Belmont Report provides foundational guidance: respect for persons, beneficence, and justice."}
+{"input": "how to manage stress effectively", "output": "lex: manage stress effectively coping techniques\nlex: stress management relaxation anxiety reduction\nvec: what are evidence-based techniques for managing stress and reducing anxiety in daily life\nvec: how can you manage chronic stress through exercise, mindfulness, and lifestyle changes\nhyde: Effective stress management combines multiple approaches. Exercise 30 minutes daily—even walking reduces cortisol. Practice diaphragmatic breathing: inhale 4 counts, hold 4, exhale 6. Limit caffeine after noon. Maintain consistent sleep and wake times. Cognitive reframing: identify catastrophic thoughts and replace them with realistic assessments. Social connection is protective—schedule regular time with supportive people."}
+{"input": "how does the philosophy of science address scientific change", "output": "lex: philosophy of science scientific change paradigm shift\nlex: Kuhn paradigm revolution Popper falsification Lakatos\nvec: how do philosophers of science like Kuhn, Popper, and Lakatos explain scientific revolutions and theory change\nvec: what does the philosophy of science say about how scientific knowledge evolves and paradigms shift\nhyde: Thomas Kuhn argued science progresses through paradigm shifts: periods of \"normal science\" within an accepted framework are punctuated by revolutionary crises when anomalies accumulate. Karl Popper proposed that science advances through falsification—theories must be testable and those that survive rigorous attempts at refutation are provisionally accepted. Lakatos offered a middle ground with his research programme methodology."}
+{"input": "what are the rituals of judaism", "output": "lex: Judaism rituals practices observances\nlex: Jewish rituals Shabbat Passover bar mitzvah kosher\nvec: what are the major rituals and religious observances in Judaism\nvec: how do Jewish rituals like Shabbat, Passover, and bar/bat mitzvah mark life and calendar events\nhyde: Key Jewish rituals include Shabbat (weekly rest from Friday sunset to Saturday night with candle lighting, kiddush, and challah), the Passover seder (retelling the Exodus), Yom Kippur fasting, circumcision (brit milah) on the 8th day, bar/bat mitzvah at 13/12, and daily prayer (Shacharit, Mincha, Ma'ariv). Keeping kosher governs dietary laws separating meat and dairy."}
+{"input": "how do scientists communicate their findings", "output": "lex: scientists communicate findings publications\nlex: scientific communication peer review journal conference\nvec: how do scientists share and publish their research findings with the scientific community and public\nvec: what are the channels scientists use to communicate results including journals, conferences, and preprints\nhyde: Scientists communicate findings through peer-reviewed journal articles (the gold standard), conference presentations (talks and posters), and preprint servers like arXiv and bioRxiv for rapid dissemination. The publication process involves writing a manuscript, submitting to a journal, peer review by 2-3 experts, revision, and acceptance. Increasingly, scientists also use social media and press releases to reach the public."}
+{"input": "mock test", "output": "lex: mock test practice exam preparation\nlex: mock exam sample questions test prep\nlex: practice test online free exam\nvec: how do you use mock tests and practice exams to prepare for standardized tests and certifications\nvec: where can you find free mock tests and practice exams for tests like SAT, GRE, or professional certifications\nhyde: Mock tests simulate real exam conditions—same time limits, question types, and format. Take full-length practice tests under timed conditions every 1-2 weeks during preparation. Review every wrong answer to identify weak areas. Free mock tests are available on Khan Academy (SAT), ETS (GRE), and official certification body websites. Score trends across mock tests predict actual performance."}
+{"input": "what is the purpose of foreshadowing?", "output": "lex: foreshadowing purpose literary device fiction\nlex: foreshadowing examples narrative technique\nvec: what is the purpose of foreshadowing in literature and how do authors use it to build suspense\nvec: how does foreshadowing create anticipation and cohesion in a story's plot\nhyde: Foreshadowing plants clues or hints about future events in a narrative, building suspense and making plot developments feel earned rather than arbitrary. Chekhov's gun principle—if a gun appears in Act 1, it must fire by Act 3—is a classic example. Effective foreshadowing is subtle enough to miss on first reading but obvious in retrospect, rewarding rereading."}
+{"input": "what is trail running?", "output": "lex: trail running off-road terrain\nlex: trail running shoes gear technique\nvec: what is trail running and how does it differ from road running\nvec: what gear, technique, and training do you need for trail running on off-road terrain\nhyde: Trail running is running on unpaved surfaces—dirt paths, mountain trails, forest tracks, and rocky terrain. Unlike road running, it requires navigating elevation changes, uneven footing, and obstacles. Use trail shoes with aggressive lugs for grip and rock plates for protection. Shorten your stride on technical terrain. Popular distances range from 5K to ultramarathons (50+ miles)."}
+{"input": "what was the impact of the cold war?", "output": "lex: Cold War impact consequences effects\nlex: Cold War legacy geopolitics nuclear arms race\nvec: what were the major political, social, and economic impacts of the Cold War on the world\nvec: how did the Cold War shape international relations, the nuclear arms race, and proxy conflicts\nhyde: The Cold War (1947-1991) divided the world into Western (NATO) and Eastern (Warsaw Pact) blocs. Its impacts include the nuclear arms race (peaking at 70,000+ warheads), proxy wars in Korea, Vietnam, and Afghanistan, the Space Race, decolonization movements influenced by superpower competition, and the eventual collapse of the Soviet Union in 1991 leading to U.S. unipolarity."}
+{"input": "street photography ethics", "output": "lex: street photography ethics legal rights\nlex: street photography consent privacy public space\nvec: what are the ethical considerations and legal rights involved in street photography\nvec: is it ethical to photograph strangers in public and what are the legal rules around street photography\nhyde: In most countries, photographing people in public spaces is legally permitted since there is no expectation of privacy. However, ethical street photographers follow principles: avoid exploiting vulnerable people, don't photograph children without parental awareness, respect requests to delete images, and consider whether the image dignifies or demeans the subject. Some photographers adopt a \"golden rule\" approach."}
+{"input": "vitosha mountain", "output": "lex: Vitosha mountain Sofia Bulgaria\nlex: Vitosha hiking trails Cherni Vrah peak\nvec: what are the hiking trails and attractions on Vitosha mountain near Sofia, Bulgaria\nvec: what is Vitosha mountain and what outdoor activities are available in Vitosha Nature Park\nhyde: Vitosha is a mountain massif on the outskirts of Sofia, Bulgaria, reaching 2,290m at Cherni Vrah (Black Peak). Vitosha Nature Park offers hiking trails, ski runs at Aleko, and the Boyana Waterfall. The golden bridges stone river is a popular landmark. Access from Sofia takes 30 minutes by car or bus. The mountain is a popular day trip for Sofia residents year-round."}
+{"input": "what is an anthology?", "output": "lex: anthology definition literary collection\nlex: anthology book short stories poems collected works\nvec: what is an anthology and how are literary anthologies compiled and organized\nvec: what types of works are typically collected in an anthology such as short stories, poems, or essays\nhyde: An anthology is a curated collection of literary works—short stories, poems, essays, or excerpts—by various authors, assembled around a common theme, genre, or time period. Editors select and arrange pieces to create a coherent reading experience. Examples include The Norton Anthology of English Literature and Best American Short Stories, published annually."}
+{"input": "what is the significance of the yom kippur?", "output": "lex: Yom Kippur significance Jewish holy day\nlex: Yom Kippur Day of Atonement fasting prayer\nvec: what is Yom Kippur and why is it the most significant holy day in Judaism\nvec: how do Jewish people observe Yom Kippur through fasting, prayer, and repentance\nhyde: Yom Kippur (Day of Atonement) is the holiest day in Judaism, falling on the 10th of Tishrei. Observers fast for 25 hours from sunset to sunset, abstaining from food, water, leather shoes, and bathing. The day is spent in synagogue prayer, including the Kol Nidre service and the Neilah closing prayer. It is a day of repentance (teshuvah) for sins against God, concluding the ten Days of Awe."}
+{"input": "what is clean camping?", "output": "lex: clean camping Leave No Trace principles\nlex: clean camping eco-friendly minimal impact\nvec: what is clean camping and how do you minimize your environmental impact while camping outdoors\nvec: what are the Leave No Trace principles and how do they apply to clean camping practices\nhyde: Clean camping follows Leave No Trace principles: plan ahead, travel on durable surfaces, dispose of waste properly, leave what you find, minimize campfire impact, respect wildlife, and be considerate of others. Pack out all trash including food scraps. Use biodegradable soap 200 feet from water sources. Dig catholes 6-8 inches deep for human waste. Leave campsites cleaner than you found them."}
+{"input": "how to evaluate scientific claims critically", "output": "lex: evaluate scientific claims critical thinking\nlex: scientific literacy evidence evaluation peer review\nvec: how do you critically evaluate scientific claims and distinguish credible research from misinformation\nvec: what criteria should you use to assess whether a scientific study's conclusions are reliable\nhyde: Check the source: is it published in a peer-reviewed journal? Look for sample size, control groups, and statistical significance (p < 0.05). Distinguish correlation from causation. Check if results have been replicated by independent researchers. Evaluate conflicts of interest and funding sources. Be skeptical of single studies—look for systematic reviews and meta-analyses that synthesize multiple studies."}
+{"input": "what is the significance of song in worship?", "output": "lex: song worship significance religious singing\nlex: worship music congregational singing hymns praise\nvec: what role does congregational singing and worship music play in religious services\nvec: why is song considered a significant form of spiritual expression and communal worship across faiths\nhyde: Singing in worship engages the whole person—body, mind, and emotions—in ways that spoken word alone cannot. Neuroscience shows group singing synchronizes heart rates and releases oxytocin, fostering communal bonding. In Christian worship, hymns reinforce theology through memorable lyrics. The Psalms themselves are songs, and Paul urged believers to address one another \"in psalms, hymns, and spiritual songs\" (Ephesians 5:19)."}
+{"input": "what is the significance of algae in ecosystems", "output": "lex: algae ecosystem role food chain\nlex: algae oxygen production aquatic ecosystems\nlex: algae photosynthesis carbon cycle\nvec: what role do algae play in aquatic and marine ecosystems\nvec: how do algae contribute to oxygen production and food webs\nhyde: Algae produce approximately 50% of the world's oxygen through photosynthesis and form the base of aquatic food chains. Phytoplankton, a type of microalgae, supports marine ecosystems by providing energy to zooplankton, fish, and larger organisms."}
+{"input": "how to train for a marathon", "output": "lex: marathon training plan schedule\nlex: long distance running program beginner\nlex: marathon race preparation mileage\nvec: what is a good training plan for running a first marathon\nvec: how to build weekly mileage for marathon race preparation\nhyde: A typical 16-week marathon training plan starts with a base of 15-20 miles per week, gradually increasing the long run by 1-2 miles each week. Include easy runs, tempo runs at marathon pace, and one rest day. Taper volume 2-3 weeks before race day."}
+{"input": "how to handle a child's tantrum in public?", "output": "lex: child tantrum public calm techniques\nlex: toddler meltdown coping strategies\nvec: what are effective ways to calm a toddler having a tantrum in a public place\nvec: how should parents respond when their child has a meltdown in a store or restaurant\nhyde: When your child has a tantrum in public, stay calm and speak in a low, steady voice. Get down to their eye level, acknowledge their feelings, and offer simple choices. If needed, move to a quieter spot and wait for the intensity to pass before addressing the behavior."}
+{"input": "how to invest in index funds", "output": "lex: index fund investing brokerage account\nlex: S&P 500 index fund buy shares\nlex: passive investing index ETF\nvec: how to open a brokerage account and buy index funds for long-term investing\nvec: what are the steps to start investing in S&P 500 or total market index funds\nhyde: To invest in index funds, open a brokerage account with a provider like Vanguard, Fidelity, or Schwab. Choose a broad market index fund such as VTSAX or an S&P 500 ETF like VOO. Set up automatic contributions and reinvest dividends for compound growth."}
+{"input": "what is data science", "output": "lex: data science statistics machine learning\nlex: data science analysis programming Python R\nvec: what does data science involve and what skills are needed to work in the field\nvec: how does data science combine statistics, programming, and domain knowledge\nhyde: Data science is an interdisciplinary field that uses statistical methods, machine learning algorithms, and programming to extract insights from structured and unstructured data. Practitioners typically work with Python or R, use tools like pandas and scikit-learn, and apply techniques such as regression, classification, and clustering."}
+{"input": "how to improve concentration skills?", "output": "lex: improve focus concentration techniques\nlex: attention span exercises deep work\nvec: what are practical techniques to improve focus and concentration during work or study\nvec: how can I train my brain to maintain attention for longer periods\nhyde: To improve concentration, try the Pomodoro technique: work for 25 minutes, then take a 5-minute break. Eliminate distractions by silencing notifications and using website blockers. Regular exercise, adequate sleep, and mindfulness meditation have all been shown to increase sustained attention."}
+{"input": "how to participate in earth hour?", "output": "lex: Earth Hour participation lights off event\nlex: Earth Hour date 2026 how to join\nvec: how do I participate in the annual Earth Hour lights-off event\nvec: what can individuals and businesses do during Earth Hour to show support\nhyde: Earth Hour takes place on the last Saturday of March each year. To participate, turn off all non-essential lights for one hour starting at 8:30 PM local time. You can also share your participation on social media using #EarthHour and organize community events."}
+{"input": "what are nanotechnologies", "output": "lex: nanotechnology nanomaterials nanoscale engineering\nlex: nanotech applications medicine electronics\nvec: what is nanotechnology and how are nanoscale materials used in different industries\nvec: what are the main applications of nanotechnology in medicine and electronics\nhyde: Nanotechnology involves manipulating matter at the nanoscale, typically between 1 and 100 nanometers. Applications include targeted drug delivery using nanoparticles, carbon nanotube transistors in electronics, and nanocoatings that repel water and resist corrosion."}
+{"input": "how to create a color palette for painting?", "output": "lex: color palette painting color theory\nlex: mixing paint colors warm cool complementary\nvec: how do artists create a cohesive color palette for a painting using color theory\nvec: what techniques help choose harmonious paint colors for an artwork\nhyde: Start with a limited palette of 4-6 colors: a warm and cool version of each primary (e.g., cadmium yellow, lemon yellow, ultramarine blue, cerulean blue, alizarin crimson, cadmium red). Mix swatches to map out your range. Use complementary colors for contrast and analogous colors for harmony."}
+{"input": "how to make homemade pasta", "output": "lex: homemade pasta recipe dough eggs flour\nlex: fresh pasta making rolling cutting\nvec: what is the recipe and technique for making fresh pasta dough from scratch\nvec: how to roll and cut homemade pasta without a pasta machine\nhyde: Combine 2 cups of 00 flour with 3 large eggs on a clean surface. Knead the dough for 8-10 minutes until smooth and elastic. Wrap in plastic and rest for 30 minutes. Roll out thin with a rolling pin or pasta machine, then cut into desired shapes like fettuccine or tagliatelle."}
+{"input": "how to reduce stress", "output": "lex: stress reduction techniques relaxation\nlex: manage stress exercise meditation breathing\nvec: what are effective daily habits for reducing stress and improving mental health\nvec: how can breathing exercises and physical activity help lower stress levels\nhyde: Regular physical activity releases endorphins that naturally reduce stress. Practice deep breathing: inhale for 4 counts, hold for 4, exhale for 6. Other effective strategies include progressive muscle relaxation, journaling, limiting caffeine, and maintaining a consistent sleep schedule of 7-9 hours."}
+{"input": "how to develop a research hypothesis", "output": "lex: research hypothesis formulation testable\nlex: hypothesis writing independent dependent variable\nvec: how do you write a clear and testable research hypothesis for a study\nvec: what are the steps to develop a hypothesis from a research question\nhyde: A research hypothesis is a specific, testable prediction about the relationship between variables. Start by identifying your research question, then review existing literature. Formulate the hypothesis as an if-then or directional statement, clearly defining the independent and dependent variables."}
+{"input": "what is social contract theory", "output": "lex: social contract theory Hobbes Locke Rousseau\nlex: social contract political philosophy government legitimacy\nvec: what is social contract theory and how did Hobbes, Locke, and Rousseau differ in their views\nvec: how does social contract theory explain the legitimacy of government authority\nhyde: Social contract theory proposes that individuals consent, either explicitly or tacitly, to surrender some freedoms to a governing authority in exchange for social order. Hobbes argued for an absolute sovereign, Locke emphasized natural rights and limited government, and Rousseau stressed the general will of the people."}
+{"input": "code share", "output": "lex: code sharing platform snippet pastebin\nlex: codeshare live collaborative editor\nlex: share code online GitHub Gist\nvec: what are the best platforms for sharing code snippets with others online\nvec: how to share code collaboratively in real time with another developer\nhyde: CodeShare.io is a free online editor for sharing code in real time. Paste or type your code, share the generated URL, and others can view or edit simultaneously. For permanent sharing, GitHub Gists let you create public or secret snippets with syntax highlighting and version history."}
+{"input": "what is the significance of the american revolution", "output": "lex: American Revolution significance independence 1776\nlex: American Revolution impact democracy constitutional government\nvec: why was the American Revolution historically significant for democracy and self-governance\nvec: how did the American Revolution influence other independence movements worldwide\nhyde: The American Revolution (1775-1783) established the United States as an independent nation and introduced a constitutional republic based on Enlightenment principles. The Declaration of Independence asserted natural rights, and the resulting Constitution created a framework of representative government that influenced the French Revolution and Latin American independence movements."}
+{"input": "how to understand political ideologies", "output": "lex: political ideologies left right spectrum\nlex: liberalism conservatism socialism political theory\nvec: how can someone learn about different political ideologies and where they fall on the spectrum\nvec: what are the main differences between liberalism, conservatism, socialism, and libertarianism\nhyde: Political ideologies are organized systems of beliefs about governance and society. The left-right spectrum places socialism and progressivism on the left, emphasizing equality and collective action, while conservatism and libertarianism sit on the right, prioritizing individual freedom and tradition. Each ideology has distinct views on the role of government, economics, and social policy."}
+{"input": "how to build confidence in social situations?", "output": "lex: social confidence building shyness overcome\nlex: social anxiety tips conversation skills\nvec: what are practical steps to feel more confident when talking to people at social events\nvec: how can someone overcome social anxiety and build self-confidence in group settings\nhyde: Start small: make eye contact and greet one new person at each event. Prepare a few open-ended questions in advance. Focus on listening rather than performing. After each interaction, note what went well. Gradual exposure reduces anxiety over time—the more you practice, the more natural conversations become."}
+{"input": "what to pack for a day hike", "output": "lex: day hike packing list gear essentials\nlex: hiking backpack water food first aid\nvec: what should I bring in my backpack for a day hike in the mountains\nvec: what are the essential items to pack for a full-day hiking trip\nhyde: Day hike essentials: 2 liters of water, trail snacks (nuts, bars, fruit), map or GPS device, sun protection (hat, sunscreen, sunglasses), first aid kit, rain layer, extra warm layer, headlamp, and a fully charged phone. Wear moisture-wicking layers and broken-in hiking boots."}
+{"input": "what is digital collage art?", "output": "lex: digital collage art Photoshop mixed media\nlex: digital collage techniques layers composition\nvec: what is digital collage art and how is it created using software\nvec: what tools and techniques do artists use to make digital collages\nhyde: Digital collage art combines photographs, illustrations, textures, and graphic elements assembled in software like Photoshop, Procreate, or Canva. Artists layer, mask, blend, and transform images to create surreal or thematic compositions. Unlike physical collage, digital tools allow non-destructive editing and infinite experimentation with scale and color."}
+{"input": "how to fix a car radiator leak?", "output": "lex: car radiator leak repair fix sealant\nlex: radiator hose replacement coolant leak\nvec: how to diagnose and fix a leaking car radiator or radiator hose\nvec: can radiator stop-leak sealant permanently fix a small coolant leak\nhyde: For a small radiator leak, a stop-leak product like Bar's Leaks can provide a temporary fix. Add it to the coolant reservoir and run the engine. For permanent repair, locate the leak by pressurizing the cooling system, then either solder the radiator, replace the damaged hose, or install a new radiator if the damage is severe."}
+{"input": "where to buy saffron", "output": "lex: buy saffron threads online spice shop\nlex: saffron purchase quality grade price\nvec: where is the best place to buy high-quality saffron threads online or in stores\nvec: how to find genuine saffron and avoid counterfeit or adulterated products\nhyde: Buy saffron from reputable spice retailers like Penzeys, Burlap & Barrel, or specialty grocery stores. Look for grade 1 (Sargol or Negin) Iranian or Spanish saffron. Expect to pay $8-15 per gram. Avoid suspiciously cheap saffron—it may be dyed safflower or corn silk."}
+{"input": "what is mahayana buddhism", "output": "lex: Mahayana Buddhism bodhisattva teachings\nlex: Mahayana vs Theravada Buddhism sutras\nvec: what are the core beliefs and practices of Mahayana Buddhism\nvec: how does Mahayana Buddhism differ from Theravada Buddhism\nhyde: Mahayana Buddhism, the \"Great Vehicle,\" emerged around the 1st century CE and emphasizes the bodhisattva ideal—the aspiration to attain enlightenment for the benefit of all sentient beings, not just oneself. Key texts include the Heart Sutra and Lotus Sutra. Major traditions include Zen, Pure Land, and Tibetan Buddhism."}
+{"input": "what is utilitarianism in ethics", "output": "lex: utilitarianism ethics greatest happiness principle\nlex: utilitarianism Bentham Mill consequentialism\nvec: what is utilitarianism and how does it determine right and wrong actions\nvec: how did Jeremy Bentham and John Stuart Mill develop utilitarian ethics\nhyde: Utilitarianism is a consequentialist ethical theory holding that the morally right action is the one that produces the greatest happiness for the greatest number. Jeremy Bentham proposed a quantitative \"felicific calculus,\" while John Stuart Mill distinguished between higher and lower pleasures, arguing quality of happiness matters as much as quantity."}
+{"input": "what is climate change?", "output": "lex: climate change global warming greenhouse gases\nlex: climate change causes effects CO2 emissions\nvec: what causes climate change and what are its effects on the planet\nvec: how do greenhouse gas emissions from human activity drive global warming\nhyde: Climate change refers to long-term shifts in global temperatures and weather patterns. Since the Industrial Revolution, burning fossil fuels has released carbon dioxide and methane, trapping heat in the atmosphere. This has caused average global temperatures to rise by about 1.1°C, leading to melting ice caps, rising sea levels, and more extreme weather events."}
+{"input": "what is the difference between positive and negative rights", "output": "lex: positive rights negative rights difference\nlex: positive negative rights examples entitlements liberties\nvec: what is the distinction between positive and negative rights in political philosophy\nvec: can you explain positive rights versus negative rights with examples\nhyde: Negative rights require others to refrain from interfering—examples include freedom of speech, the right to privacy, and freedom from torture. Positive rights require others to provide something—examples include the right to education, healthcare, or a minimum standard of living. The distinction is central to debates between libertarians and welfare-state advocates."}
+{"input": "what causes migraines", "output": "lex: migraine causes triggers brain\nlex: migraine headache serotonin vascular nerve\nvec: what are the biological causes and common triggers of migraine headaches\nvec: why do some people get migraines and what happens in the brain during one\nhyde: Migraines involve abnormal brain activity affecting nerve signals, chemicals, and blood vessels. Cortical spreading depression—a wave of electrical activity across the cortex—triggers the trigeminal nerve, releasing inflammatory peptides. Common triggers include stress, hormonal changes, certain foods (aged cheese, alcohol), sleep disruption, and bright lights."}
+{"input": "how to talk to kids about bullying?", "output": "lex: talk children bullying conversation advice\nlex: kids bullying prevention parent discussion\nvec: how should parents talk to their children about bullying at school\nvec: what are age-appropriate ways to discuss bullying with kids and help them respond\nhyde: Start the conversation calmly by asking open-ended questions: \"Has anyone at school been mean to you or someone else?\" Listen without overreacting. Teach your child to say \"Stop, I don't like that\" firmly, walk away, and tell a trusted adult. Role-play scenarios so they can practice responses."}
+{"input": "when to replace windshield wipers?", "output": "lex: replace windshield wipers signs worn\nlex: wiper blade replacement frequency lifespan\nvec: how often should windshield wipers be replaced and what are signs they need changing\nvec: what are the signs that windshield wiper blades are worn out and need replacement\nhyde: Replace windshield wipers every 6-12 months or when you notice streaking, skipping, squeaking, or smearing. Inspect the rubber edge for cracks, tears, or stiffness. If wipers leave unwiped areas or chatter across the glass, it's time for new blades. Extreme heat and cold accelerate deterioration."}
+{"input": "how to aerate lawn manually?", "output": "lex: aerate lawn manually core aeration fork\nlex: lawn aeration by hand spike tool\nvec: how to aerate a lawn by hand without a machine using a garden fork or manual aerator\nvec: what is the best technique for manually aerating compacted soil in a yard\nhyde: To aerate manually, push a garden fork or manual core aerator into the soil every 4-6 inches, rocking it slightly to loosen the earth. Work in rows across the lawn. The best time to aerate is early fall for cool-season grasses or late spring for warm-season grasses. Water the lawn the day before to soften the soil."}
+{"input": "how to improve business communication", "output": "lex: business communication skills effective workplace\nlex: professional email writing clear messaging\nvec: how can employees improve their written and verbal communication skills at work\nvec: what techniques make business emails and presentations clearer and more effective\nhyde: Effective business communication starts with clarity: state the purpose in the first sentence, use short paragraphs, and include a clear call to action. In meetings, summarize key points and assign action items. Avoid jargon when possible. Active listening—paraphrasing what others say—builds rapport and reduces misunderstandings."}
+{"input": "how to manage anxiety naturally", "output": "lex: manage anxiety natural remedies without medication\nlex: anxiety relief breathing exercise meditation\nvec: what are natural ways to manage anxiety without medication\nvec: how can exercise, breathing techniques, and lifestyle changes reduce anxiety symptoms\nhyde: Natural anxiety management includes regular aerobic exercise (30 minutes, 5 days a week), diaphragmatic breathing, progressive muscle relaxation, and limiting caffeine and alcohol. Cognitive behavioral techniques like thought journaling help identify and challenge anxious thinking patterns. Herbal supplements such as chamomile and ashwagandha show some evidence of benefit."}
+{"input": "how to draft a lease agreement", "output": "lex: lease agreement draft template rental\nlex: residential lease contract terms clauses\nvec: what should be included when drafting a residential lease agreement\nvec: how to write a legally sound rental lease agreement between landlord and tenant\nhyde: A residential lease agreement should include: names of landlord and tenant, property address, lease term (start/end dates), monthly rent amount and due date, security deposit amount and return conditions, maintenance responsibilities, pet policy, late fee terms, and termination/renewal clauses. Both parties should sign and retain copies."}
+{"input": "what is burnout?", "output": "lex: burnout syndrome workplace exhaustion\nlex: burnout symptoms causes recovery\nvec: what is burnout and what are its symptoms, causes, and effects on health\nvec: how does chronic work stress lead to burnout and what does it feel like\nhyde: Burnout is a state of chronic physical and emotional exhaustion caused by prolonged stress, typically work-related. The WHO classifies it by three dimensions: energy depletion, increased mental distance or cynicism toward one's job, and reduced professional efficacy. Symptoms include fatigue, insomnia, irritability, and difficulty concentrating."}
+{"input": "how to let go of negative thoughts?", "output": "lex: let go negative thoughts techniques\nlex: negative thinking patterns CBT mindfulness\nvec: how to stop dwelling on negative thoughts and break rumination cycles\nvec: what mindfulness or cognitive techniques help release negative thinking\nhyde: To let go of negative thoughts, practice cognitive defusion: observe the thought without engaging it, label it (\"I'm having the thought that...\"), and let it pass like a cloud. Mindfulness meditation trains this skill. Write recurring worries in a journal, then close it—this externalizes them. Challenge distortions by asking: \"Is this thought based on facts or assumptions?\""}
+{"input": "how to brew the perfect cup of tea", "output": "lex: brew tea temperature steep time\nlex: tea brewing method loose leaf\nvec: what are the correct water temperatures and steeping times for different types of tea\nvec: how to brew loose leaf tea properly for the best flavor\nhyde: Water temperature and steep time vary by tea type. Black tea: 200-212°F for 3-5 minutes. Green tea: 160-180°F for 2-3 minutes. White tea: 160-185°F for 4-5 minutes. Oolong: 185-205°F for 3-5 minutes. Use 1 teaspoon of loose leaf per 8 oz cup. Pre-warm the teapot with hot water for consistent extraction."}
+{"input": "what is anarchism", "output": "lex: anarchism political philosophy anti-state\nlex: anarchism theory Kropotkin Bakunin mutual aid\nvec: what is anarchism as a political philosophy and what do anarchists believe\nvec: how do different branches of anarchism envision a society without government\nhyde: Anarchism is a political philosophy that rejects involuntary, coercive hierarchy—particularly the state—and advocates for voluntary, cooperative social organization. Major branches include anarcho-communism (Kropotkin), which envisions communal ownership, anarcho-syndicalism, which organizes through labor unions, and individualist anarchism, which emphasizes personal autonomy."}
+{"input": "how to stay motivated daily?", "output": "lex: daily motivation habits discipline routine\nlex: stay motivated goals productivity tips\nvec: what are practical strategies to stay motivated and productive every day\nvec: how to maintain motivation when working toward long-term goals\nhyde: Set one clear priority each morning rather than a long to-do list. Break large goals into small daily tasks. Track streaks—visual progress reinforces consistency. Pair difficult tasks with rewards. On low-motivation days, commit to just 5 minutes; starting is the hardest part, and momentum usually follows."}
+{"input": "list sort", "output": "lex: sort list programming algorithm\nlex: list sort Python Java ascending descending\nlex: array sorting methods comparison\nvec: how to sort a list or array in different programming languages\nvec: what sorting algorithms are used for lists and how do they compare in performance\nhyde: In Python, sort a list in-place with list.sort() or return a new sorted list with sorted(). Use key= for custom sorting: sorted(items, key=lambda x: x.name). In Java, use Collections.sort() or List.sort(). Common algorithms include quicksort (O(n log n) average), mergesort (stable, O(n log n)), and timsort (Python/Java default)."}
+{"input": "what was the renaissance period", "output": "lex: Renaissance period 14th-17th century Europe\nlex: Renaissance art culture Florence rebirth\nvec: what was the Renaissance period and why was it significant in European history\nvec: how did the Renaissance transform art, science, and culture in Europe\nhyde: The Renaissance (14th-17th century) was a cultural movement that began in Florence, Italy, marking the transition from the medieval period to modernity. It saw a revival of classical Greek and Roman art and philosophy. Key figures include Leonardo da Vinci, Michelangelo, and Galileo. The invention of the printing press accelerated the spread of new ideas across Europe."}
+{"input": "what is a smart thermostat?", "output": "lex: smart thermostat WiFi programmable Nest Ecobee\nlex: smart thermostat energy savings features\nvec: what is a smart thermostat and how does it save energy compared to a regular thermostat\nvec: how do smart thermostats like Nest and Ecobee learn and control home temperature\nhyde: A smart thermostat connects to WiFi and can be controlled via a smartphone app. Models like the Nest Learning Thermostat and Ecobee use sensors and machine learning to build a schedule based on your habits. They adjust heating and cooling automatically, reducing energy use by 10-15% on average compared to standard programmable thermostats."}
+{"input": "what is the great barrier reef", "output": "lex: Great Barrier Reef Australia coral ecosystem\nlex: Great Barrier Reef marine biodiversity coral bleaching\nvec: what is the Great Barrier Reef and why is it important for marine biodiversity\nvec: where is the Great Barrier Reef located and what threats does it face\nhyde: The Great Barrier Reef, off the coast of Queensland, Australia, is the world's largest coral reef system, stretching over 2,300 kilometers. It comprises nearly 3,000 individual reef systems and supports over 1,500 fish species, 400 coral species, and 30 species of whales and dolphins. Coral bleaching from rising ocean temperatures is its greatest threat."}
+{"input": "what is the significance of the sacred heart?", "output": "lex: Sacred Heart Jesus Catholic devotion\nlex: Sacred Heart significance symbolism Christianity\nvec: what does the Sacred Heart of Jesus symbolize in Catholic tradition\nvec: what is the history and religious significance of devotion to the Sacred Heart\nhyde: The Sacred Heart is a devotional image in Catholicism representing Jesus Christ's divine love for humanity. Popularized by St. Margaret Mary Alacoque's 17th-century visions, it depicts Christ's heart surrounded by a crown of thorns, flames, and a cross. The feast of the Sacred Heart is celebrated 19 days after Pentecost."}
+{"input": "what is survival camping?", "output": "lex: survival camping wilderness skills bushcraft\nlex: survival camping gear shelter fire water\nvec: what is survival camping and what skills do you need to camp with minimal gear\nvec: how to prepare for a survival camping trip in the wilderness\nhyde: Survival camping means spending time outdoors with minimal or no modern gear, relying on wilderness skills. Core skills include building a debris shelter, starting fire with a ferro rod or bow drill, purifying water by boiling or filtering, navigating with a map and compass, and foraging or trapping for food."}
+{"input": "how to fix wifi connection dropping", "output": "lex: WiFi dropping connection fix troubleshoot\nlex: WiFi disconnecting frequently router reset\nvec: how to troubleshoot a WiFi connection that keeps dropping or disconnecting\nvec: why does my WiFi keep cutting out and how do I fix it\nhyde: If your WiFi keeps dropping, try these steps: 1) Restart your router and modem by unplugging for 30 seconds. 2) Move closer to the router or remove obstructions. 3) Change the WiFi channel in router settings to reduce interference. 4) Update router firmware. 5) Check for driver updates on your device. 6) Disable power-saving mode for your wireless adapter."}
+{"input": "what are the key elements of horror writing?", "output": "lex: horror writing elements techniques atmosphere\nlex: horror fiction suspense tension dread\nvec: what literary elements and techniques make horror writing effective\nvec: how do horror authors create suspense, tension, and fear in their stories\nhyde: Effective horror writing relies on atmosphere, pacing, and the unknown. Build dread through setting—dark, isolated, claustrophobic spaces. Use sensory details to ground the reader. Withhold information: what the reader imagines is scarier than what you show. Escalate tension gradually, then release it with a shock. Relatable characters make the stakes feel real."}
+{"input": "what is the importance of free press", "output": "lex: free press importance democracy journalism\nlex: freedom of press First Amendment accountability\nvec: why is a free press important for democracy and holding governments accountable\nvec: what role does press freedom play in protecting civil liberties and public information\nhyde: A free press serves as a watchdog on government and powerful institutions, exposing corruption, fraud, and abuse. The First Amendment protects press freedom in the United States. Without it, citizens lack access to independent information needed to make informed decisions. Countries with restricted press freedoms consistently rank lower on democracy indices."}
+{"input": "what are the best national parks?", "output": "lex: best national parks USA visit\nlex: top national parks Yellowstone Yosemite Zion\nvec: what are the most popular and scenic national parks to visit in the United States\nvec: which national parks offer the best hiking, scenery, and wildlife experiences\nhyde: Top US national parks include Yellowstone (geysers, wildlife), Yosemite (granite cliffs, waterfalls), Grand Canyon (layered red rock), Zion (slot canyons, river hikes), Glacier (pristine alpine lakes), and Acadia (Atlantic coastline). Visit during shoulder season (May or September) for fewer crowds and pleasant weather."}
+{"input": "what is deconstruction", "output": "lex: deconstruction Derrida literary theory philosophy\nlex: deconstruction meaning binary oppositions text\nvec: what is deconstruction in philosophy and literary theory as developed by Jacques Derrida\nvec: how does deconstructionist analysis challenge fixed meaning in texts\nhyde: Deconstruction, associated with Jacques Derrida, is a method of critical analysis that examines how meaning in texts is constructed through binary oppositions (speech/writing, presence/absence). Derrida argued that meaning is never fixed; it is always deferred through a chain of signifiers. Deconstruction reveals the internal contradictions and assumptions hidden within texts."}
+{"input": "how to repair a leaky faucet", "output": "lex: leaky faucet repair fix dripping\nlex: faucet washer O-ring cartridge replacement\nvec: how to fix a dripping faucet by replacing the washer or cartridge\nvec: what are the step-by-step instructions for repairing a leaky kitchen or bathroom faucet\nhyde: Turn off the water supply valves under the sink. Remove the faucet handle by unscrewing the decorative cap and handle screw. Pull out the stem or cartridge. For compression faucets, replace the rubber washer and O-ring. For cartridge faucets, replace the entire cartridge. Reassemble, turn the water back on, and test for leaks."}
+{"input": "what is the significance of the ganges river in hinduism?", "output": "lex: Ganges River Hinduism sacred significance\nlex: Ganga river Hindu rituals purification\nvec: why is the Ganges River considered sacred in Hinduism\nvec: what religious rituals and beliefs are associated with the Ganges in Hindu tradition\nhyde: The Ganges (Ganga) is Hinduism's holiest river, personified as the goddess Ganga. Hindus believe bathing in the Ganges washes away sins and that immersing ashes of the dead in the river frees the soul from the cycle of rebirth. The cities of Varanasi and Haridwar along the Ganges host major pilgrimage sites and cremation ghats."}
+{"input": "best places to buy bonsai trees", "output": "lex: buy bonsai trees online nursery shop\nlex: bonsai tree purchase quality species\nvec: where are the best places to buy bonsai trees online or at local nurseries\nvec: which online retailers and nurseries sell high-quality bonsai trees for beginners\nhyde: Reputable bonsai retailers include Bonsai Boy of New York, Brussel's Bonsai, and Eastern Leaf (online). Local bonsai nurseries and Japanese garden shops often carry better-quality specimens. For beginners, start with hardy species like Chinese elm, ficus, or juniper. Expect to pay $30-80 for a quality starter tree."}
+{"input": "what are the principles of physics", "output": "lex: physics principles fundamental laws\nlex: Newton's laws thermodynamics relativity quantum\nvec: what are the fundamental principles and laws of physics\nvec: how do Newton's laws, thermodynamics, and quantum mechanics form the foundations of physics\nhyde: The fundamental principles of physics include Newton's three laws of motion, the law of universal gravitation, the laws of thermodynamics (energy conservation, entropy), Maxwell's equations for electromagnetism, Einstein's special and general relativity, and quantum mechanics. These describe how matter, energy, space, and time interact at all scales."}
+{"input": "how to optimize website for seo", "output": "lex: SEO optimization website search engine ranking\nlex: on-page SEO meta tags keywords content\nvec: what are the key steps to optimize a website for search engine rankings\nvec: how to improve on-page and technical SEO for better Google search results\nhyde: On-page SEO: use target keywords in title tags, H1 headings, and meta descriptions. Write unique, high-quality content over 1,000 words. Optimize images with alt text and compression. Technical SEO: ensure fast page load times (under 3 seconds), mobile responsiveness, HTTPS, clean URL structure, and an XML sitemap submitted to Google Search Console."}
+{"input": "what are the sacred texts of buddhism", "output": "lex: Buddhist sacred texts scriptures Tripitaka\nlex: Buddhism sutras Pali Canon Mahayana texts\nvec: what are the main sacred texts and scriptures of Buddhism\nvec: how do the Pali Canon and Mahayana sutras differ as Buddhist scriptures\nhyde: The primary Buddhist scripture is the Tripitaka (Pali Canon), composed of three \"baskets\": the Vinaya Pitaka (monastic rules), Sutta Pitaka (discourses of the Buddha), and Abhidhamma Pitaka (philosophical analysis). Mahayana Buddhism adds texts like the Heart Sutra, Diamond Sutra, and Lotus Sutra, emphasizing the bodhisattva path."}
+{"input": "how to participate in public hearings", "output": "lex: public hearing participation attend testify\nlex: public hearing comment speak local government\nvec: how can citizens participate and give testimony at public hearings\nvec: what are the steps to attend and speak at a local government public hearing\nhyde: To participate in a public hearing, check your local government website for upcoming meetings and agendas. Sign up to speak in advance if required. Prepare a concise statement (usually 2-3 minutes). State your name and address for the record. Focus on facts and personal impact. You can also submit written comments before the deadline."}
+{"input": "what is a hypothesis", "output": "lex: hypothesis definition scientific research\nlex: hypothesis testable prediction experiment\nvec: what is a hypothesis in the scientific method and how is one formed\nvec: what makes a good scientific hypothesis and how is it different from a theory\nhyde: A hypothesis is a testable prediction about the relationship between two or more variables. In the scientific method, it follows observation and research: based on existing knowledge, you propose an explanation that can be tested through experimentation. A hypothesis must be falsifiable—there must be a possible outcome that would prove it wrong."}
+{"input": "what is extreme sports photography?", "output": "lex: extreme sports photography action camera\nlex: adventure sports photography techniques shutter speed\nvec: what is extreme sports photography and what equipment and techniques does it require\nvec: how do photographers capture high-speed action shots in extreme sports\nhyde: Extreme sports photography captures athletes performing in high-risk activities like surfing, snowboarding, rock climbing, and base jumping. Photographers use fast shutter speeds (1/1000s or faster), continuous autofocus, and burst mode. Key gear includes weather-sealed DSLRs or mirrorless cameras, telephoto lenses (70-200mm), and GoPro-style action cameras for POV shots."}
+{"input": "how to live sustainably?", "output": "lex: sustainable living tips eco-friendly lifestyle\nlex: reduce waste carbon footprint daily habits\nvec: what are practical everyday habits for living a more sustainable and eco-friendly life\nvec: how can individuals reduce their carbon footprint and waste in daily living\nhyde: Sustainable living starts with reducing consumption: buy less, choose durable goods, and repair before replacing. Eat more plant-based meals, which have a lower carbon footprint. Use public transit, bike, or walk. Reduce waste through composting and recycling. Switch to renewable energy and use LED lighting. Carry reusable bags, bottles, and containers."}
+{"input": "what is epistemological relativism", "output": "lex: epistemological relativism knowledge truth\nlex: epistemological relativism philosophy objectivity\nvec: what is epistemological relativism and how does it challenge objective truth claims\nvec: how does epistemological relativism argue that knowledge is relative to perspective or culture\nhyde: Epistemological relativism holds that knowledge and truth are not absolute but are relative to the social, cultural, or historical context in which they are produced. Different communities may have equally valid but incompatible knowledge systems. Critics argue this leads to self-refutation: the claim that all knowledge is relative is itself presented as an absolute truth."}
+{"input": "what is mixed media art?", "output": "lex: mixed media art techniques materials\nlex: mixed media collage painting assemblage\nvec: what is mixed media art and what materials and techniques are commonly used\nvec: how do artists combine different media like paint, paper, and found objects in mixed media artwork\nhyde: Mixed media art combines two or more artistic media in a single work—for example, acrylic paint with collaged paper, fabric, ink, and found objects. Techniques include layering, texturing with gels and paste, image transfers, and assemblage. The combination of materials creates visual depth and tactile richness that single-medium works cannot achieve."}
+{"input": "how to work at microsoft?", "output": "lex: Microsoft jobs hiring apply career\nlex: Microsoft interview process software engineer\nvec: how to apply for a job at Microsoft and what is the interview process like\nvec: what qualifications and steps are needed to get hired at Microsoft\nhyde: Apply through Microsoft's careers portal at careers.microsoft.com. Most technical roles require a CS degree or equivalent experience. The interview process typically includes a phone screen, online coding assessment, and an on-site loop of 4-5 interviews covering algorithms, system design, and behavioral questions. Prepare with LeetCode and system design practice."}
+{"input": "what are the characteristics of haiku?", "output": "lex: haiku characteristics syllable structure\nlex: haiku poetry 5-7-5 Japanese nature\nvec: what are the defining characteristics and rules of haiku poetry\nvec: how is a traditional Japanese haiku structured and what themes does it explore\nhyde: Haiku is a Japanese poetic form traditionally consisting of three lines with a 5-7-5 syllable pattern (or 17 morae in Japanese). Haiku typically captures a moment in nature and includes a kigo (seasonal word) and a kireji (cutting word) that creates a pause or shift. The poem juxtaposes two images to evoke emotion through suggestion rather than direct statement."}
+{"input": "what is plato's theory of forms", "output": "lex: Plato theory of Forms Ideas philosophy\nlex: Platonic Forms abstract reality idealism\nvec: what is Plato's theory of Forms and how does it explain reality\nvec: how did Plato distinguish between the world of Forms and the physical world\nhyde: Plato's theory of Forms posits that the physical world is a shadow of a higher, non-material reality consisting of perfect, eternal Forms (Ideas). A beautiful object participates in the Form of Beauty; a just action reflects the Form of Justice. True knowledge comes from understanding these abstract Forms through reason, not through sensory experience of the changeable physical world."}
+{"input": "what is the law of attraction?", "output": "lex: law of attraction manifestation positive thinking\nlex: law of attraction belief visualization\nvec: what is the law of attraction and how is it supposed to work\nvec: does the law of attraction have any scientific basis or evidence\nhyde: The law of attraction is the belief that positive or negative thoughts bring positive or negative experiences into a person's life. Proponents, popularized by the book \"The Secret,\" claim that visualizing desired outcomes and maintaining a positive mindset attracts those outcomes. Scientists generally consider it pseudoscience, though positive thinking can influence motivation and goal-directed behavior."}
+{"input": "what is literary parody?", "output": "lex: literary parody satire imitation genre\nlex: parody literature examples humor exaggeration\nvec: what is literary parody and how does it use imitation for comedic or critical effect\nvec: what are famous examples of parody in literature\nhyde: Literary parody imitates the style, conventions, or content of a specific work or genre for comedic or critical effect. It exaggerates distinctive features to expose flaws or absurdities. Examples include Don Quixote (parodying chivalric romances), Northanger Abbey (Gothic novels), and The Hitchhiker's Guide to the Galaxy (science fiction tropes)."}
+{"input": "how to invest in cryptocurrency safely?", "output": "lex: cryptocurrency investing safely beginner\nlex: crypto investment security wallet exchange\nvec: how can beginners invest in cryptocurrency safely and minimize risk of loss\nvec: what security measures should you take when buying and storing cryptocurrency\nhyde: To invest in crypto safely: use reputable exchanges like Coinbase or Kraken with two-factor authentication. Never invest more than you can afford to lose. Transfer holdings to a hardware wallet (Ledger, Trezor) for long-term storage. Diversify across Bitcoin and Ethereum rather than speculative altcoins. Beware of phishing scams and never share your seed phrase."}
+{"input": "what is a protagonist?", "output": "lex: protagonist definition literature main character\nlex: protagonist role story narrative hero\nvec: what is a protagonist in literature and what role do they play in a story\nvec: how does the protagonist differ from the antagonist in narrative fiction\nhyde: The protagonist is the central character of a narrative, the one whose goals and conflicts drive the plot. The story is told from their perspective or follows their journey. Protagonists are not always heroes—they can be antiheroes or morally ambiguous characters. The antagonist opposes the protagonist, creating the central conflict of the story."}
+{"input": "how to prepare for a promotion review?", "output": "lex: promotion review preparation performance\nlex: job promotion meeting self-assessment achievements\nvec: how should an employee prepare for a promotion review meeting with their manager\nvec: what documentation and evidence should you gather before a promotion discussion\nhyde: Before your promotion review, compile a list of key accomplishments with measurable results (revenue generated, projects delivered, efficiency improvements). Gather positive feedback from colleagues and clients. Align your achievements with the next-level job description. Prepare specific examples demonstrating leadership, initiative, and impact. Practice articulating your case concisely."}
+{"input": "how to reduce personal water usage?", "output": "lex: reduce water usage conservation tips home\nlex: save water household low-flow fixtures\nvec: what are practical ways to reduce water consumption at home\nvec: how can individuals conserve water in their daily routines and household\nhyde: Install low-flow showerheads (2 GPM or less) and faucet aerators. Fix leaky faucets—a drip wastes up to 3,000 gallons per year. Take shorter showers (5 minutes saves 12 gallons). Run dishwashers and washing machines only with full loads. Water gardens in the early morning to reduce evaporation. Collect rainwater for outdoor use."}
+{"input": "sustainable technology", "output": "lex: sustainable technology green tech renewable energy\nlex: sustainable technology clean energy innovation\nvec: what are examples of sustainable technologies that reduce environmental impact\nvec: how is technology being used to promote sustainability and fight climate change\nhyde: Sustainable technologies aim to reduce environmental impact while meeting human needs. Examples include solar panels and wind turbines for clean energy, electric vehicles, energy-efficient building materials, carbon capture systems, biodegradable plastics, precision agriculture that reduces water and pesticide use, and smart grids that optimize energy distribution."}
+{"input": "how do i vote in person", "output": "lex: vote in person polling place Election Day\nlex: in-person voting process ID requirements\nvec: what are the steps to vote in person at a polling place on Election Day\nvec: what do I need to bring and expect when voting in person for the first time\nhyde: To vote in person, check your registration status and find your polling location at vote.org or your state's election website. Bring a valid photo ID if required by your state. On Election Day, go to your assigned polling place, check in with a poll worker, receive your ballot, mark your choices, and submit your ballot through the scanner or ballot box."}
+{"input": "what is aquaponics?", "output": "lex: aquaponics fish plants symbiotic system\nlex: aquaponics setup grow food fish tank\nvec: what is aquaponics and how does it combine fish farming with plant growing\nvec: how does an aquaponics system work and what can you grow with it\nhyde: Aquaponics is a food production system that combines aquaculture (raising fish) with hydroponics (growing plants in water). Fish waste provides natural fertilizer for the plants, and the plants filter the water for the fish, creating a symbiotic cycle. Common setups use tilapia or goldfish with leafy greens, herbs, and tomatoes."}
+{"input": "what is the significance of the hajj in islam?", "output": "lex: Hajj Islam pilgrimage Mecca significance\nlex: Hajj pillar Islam Kaaba rituals\nvec: why is the Hajj pilgrimage to Mecca significant in Islam\nvec: what are the rituals and spiritual meaning of the Hajj for Muslims\nhyde: The Hajj is the fifth pillar of Islam, requiring every able-bodied Muslim who can afford it to make the pilgrimage to Mecca at least once in their lifetime. Performed during Dhul Hijjah, the rituals include circling the Kaaba seven times (tawaf), walking between Safa and Marwah, standing at Arafat, and the symbolic stoning of the devil at Mina."}
+{"input": "what is a hypothesis testing", "output": "lex: hypothesis testing statistics null alternative\nlex: hypothesis test p-value significance level\nvec: what is hypothesis testing in statistics and how does it work\nvec: how do you perform a hypothesis test using null and alternative hypotheses\nhyde: Hypothesis testing is a statistical method for making decisions using data. You state a null hypothesis (H0, no effect) and an alternative hypothesis (H1, effect exists). Collect data and calculate a test statistic. If the p-value is below the significance level (typically 0.05), reject H0. Common tests include t-test, chi-square, and ANOVA."}
+{"input": "how to publish a scientific article", "output": "lex: publish scientific article journal peer review\nlex: scientific paper submission academic journal\nvec: what are the steps to publish a research article in a peer-reviewed scientific journal\nvec: how does the peer review and journal submission process work for scientific papers\nhyde: To publish a scientific article: 1) Write the manuscript following IMRAD format (Introduction, Methods, Results, Discussion). 2) Choose a target journal matching your topic and impact level. 3) Format per the journal's author guidelines. 4) Submit through the journal's online portal. 5) Respond to peer reviewer comments during revision. The process typically takes 3-12 months."}
+{"input": "what are common themes in poetry?", "output": "lex: poetry themes common literary motifs\nlex: poetry themes love death nature identity\nvec: what are the most common themes explored in poetry across different periods\nvec: how do poets use recurring themes like love, death, and nature in their work\nhyde: Common poetry themes include love and desire, mortality and the passage of time, nature and the seasons, loss and grief, identity and self-discovery, war and conflict, beauty, spirituality, and social justice. These universal themes recur across periods—from Sappho's love lyrics to Keats's meditations on mortality to contemporary poets exploring identity."}
+{"input": "how to write a resume", "output": "lex: write resume format template job\nlex: resume writing tips work experience skills\nvec: how to write an effective resume that stands out to employers and recruiters\nvec: what should be included in a resume and how should it be formatted\nhyde: A strong resume includes: contact information, a brief professional summary (2-3 sentences), work experience in reverse chronological order with bullet-point achievements, education, and relevant skills. Use action verbs (\"led,\" \"built,\" \"increased\") and quantify results (\"increased sales by 25%\"). Keep it to one page for under 10 years of experience. Tailor it to each job posting."}
+{"input": "what are key performance indicators", "output": "lex: key performance indicators KPIs metrics\nlex: KPI examples business performance measurement\nvec: what are key performance indicators and how are they used to measure business success\nvec: how do companies choose and track the right KPIs for their goals\nhyde: Key Performance Indicators (KPIs) are measurable values that demonstrate how effectively a company is achieving its objectives. Examples include revenue growth rate, customer acquisition cost, employee retention rate, and net promoter score. Effective KPIs are specific, measurable, achievable, relevant, and time-bound (SMART). They should align directly with strategic goals."}
+{"input": "how to find art inspiration online?", "output": "lex: art inspiration online websites platforms\nlex: art inspiration Pinterest Behance DeviantArt\nvec: where can artists find creative inspiration and references online\nvec: what websites and platforms are best for discovering art inspiration\nhyde: Top platforms for art inspiration include Pinterest (curated mood boards), Behance and Dribbble (professional portfolios), ArtStation (digital and concept art), DeviantArt (community art), and Instagram art hashtags. Museums also offer virtual collections: Google Arts & Culture, the Met's Open Access, and the Rijksmuseum's digital archive."}
+{"input": "what is the significance of logic in ethics?", "output": "lex: logic ethics moral reasoning philosophy\nlex: logical arguments ethical theory validity\nvec: what role does logic play in ethical reasoning and moral philosophy\nvec: how do philosophers use logical arguments to evaluate ethical claims\nhyde: Logic provides the structural framework for ethical reasoning. Valid arguments require that conclusions follow necessarily from premises. In ethics, logic helps identify fallacies, test the consistency of moral principles, and evaluate whether ethical claims are well-supported. For example, the logical form of universalizability in Kant's categorical imperative tests moral maxims for contradiction."}
+{"input": "how to engage in sustainable urban living?", "output": "lex: sustainable urban living city eco-friendly\nlex: urban sustainability public transit green housing\nvec: what are practical ways to live sustainably in a city environment\nvec: how can urban residents reduce their environmental footprint in daily life\nhyde: Sustainable urban living includes using public transit, biking, or walking instead of driving. Choose an energy-efficient apartment, reduce food waste through composting and meal planning, shop at local farmers markets, and support community gardens. Use shared resources like tool libraries and car-sharing services to reduce individual consumption."}
+{"input": "what is the concept of shalom in judaism?", "output": "lex: shalom Judaism peace concept meaning\nlex: shalom Hebrew wholeness completeness Jewish\nvec: what does the concept of shalom mean in Judaism beyond just peace\nvec: how is shalom understood as wholeness and completeness in Jewish theology\nhyde: Shalom in Judaism means far more than the absence of conflict. Derived from the Hebrew root meaning \"wholeness\" or \"completeness,\" shalom encompasses peace, harmony, welfare, and flourishing. It describes right relationships between people, with God, and with creation. The pursuit of shalom (rodef shalom) is a central ethical obligation in Jewish life."}
+{"input": "how do structuralism and functionalism differ", "output": "lex: structuralism functionalism differences psychology\nlex: structuralism Wundt functionalism James psychology\nvec: what are the differences between structuralism and functionalism in psychology\nvec: how did Wundt's structuralism differ from William James's functionalism\nhyde: Structuralism, founded by Wilhelm Wundt, sought to break down mental processes into their basic elements through introspection—analyzing the structure of consciousness. Functionalism, led by William James, focused instead on the purpose of mental processes—how the mind helps organisms adapt to their environment. Structuralism asked \"what is consciousness?\" while functionalism asked \"what is consciousness for?\""}
+{"input": "duolingo courses", "output": "lex: Duolingo language courses available\nlex: Duolingo app languages learn\nvec: what language courses are available on Duolingo and which are the most popular\nvec: how effective is Duolingo for learning a new language and what languages does it offer\nhyde: Duolingo offers courses in over 40 languages, including Spanish, French, German, Japanese, Korean, Mandarin, Italian, Portuguese, and Hindi. Each course uses gamified lessons with speaking, listening, reading, and writing exercises. Popular courses include Spanish for English speakers (the most enrolled) and English for Spanish speakers."}
+{"input": "how to hang artwork without nails", "output": "lex: hang artwork without nails wall\nlex: picture hanging command strips adhesive hooks\nvec: how to hang pictures and artwork on walls without using nails or drilling holes\nvec: what are the best no-damage methods for hanging frames on walls\nhyde: Command Strips by 3M hold up to 16 lbs and leave no wall damage—press firmly for 30 seconds and wait 1 hour before hanging. Other nail-free options include adhesive hooks, velcro strips, magnetic frames, and picture hanging wire with adhesive anchors. For heavier pieces, use monkey hooks which require only a tiny hole, no hammer needed."}
+{"input": "how augmented reality is applied in different fields", "output": "lex: augmented reality applications fields industry\nlex: AR technology healthcare education retail\nvec: how is augmented reality being used in healthcare, education, and retail industries\nvec: what are real-world applications of augmented reality across different fields\nhyde: Augmented reality overlays digital content onto the real world and is applied across many fields. In healthcare, surgeons use AR to visualize anatomy during procedures. In education, AR apps bring textbook content to life in 3D. Retailers like IKEA use AR to let customers preview furniture in their homes. In manufacturing, AR guides workers through assembly with step-by-step overlays."}
+{"input": "what are the best soil types for roses", "output": "lex: best soil roses growing type\nlex: rose garden soil pH loam drainage\nvec: what type of soil do roses grow best in and how should it be prepared\nvec: what soil pH and composition are ideal for growing healthy rose bushes\nhyde: Roses thrive in well-draining loamy soil with a pH between 6.0 and 6.5. Amend heavy clay soil with compost and coarse sand to improve drainage. Mix in aged manure or rose-specific fertilizer before planting. Ensure soil holds moisture without becoming waterlogged. Mulch with 2-3 inches of organic material to retain moisture and regulate temperature."}
+{"input": "how to encourage siblings to get along?", "output": "lex: siblings get along fighting conflict resolution\nlex: sibling rivalry reduce cooperation strategies\nvec: how can parents encourage their children to get along and reduce sibling rivalry\nvec: what strategies help siblings resolve conflicts and build positive relationships\nhyde: Give each child one-on-one time to reduce competition for attention. Avoid comparing siblings or labeling them (\"the smart one\"). Teach conflict resolution: help them express feelings with \"I\" statements and find compromises. Praise cooperation when you see it. Set clear family rules about physical aggression and name-calling."}
+{"input": "what is the great wall of china?", "output": "lex: Great Wall China history construction\nlex: Great Wall China length dynasty defense\nvec: what is the Great Wall of China and why was it built\nvec: how long is the Great Wall of China and which dynasties built it\nhyde: The Great Wall of China is a series of fortifications built over centuries to protect Chinese states and empires from northern invasions. The most well-known sections were built during the Ming Dynasty (1368-1644). The total length, including all branches and sections across dynasties, is approximately 21,196 kilometers (13,171 miles)."}
+{"input": "how to attend a political rally", "output": "lex: attend political rally event tips\nlex: political rally preparation safety what to bring\nvec: how to find and attend a political rally or campaign event in your area\nvec: what should you know before attending your first political rally\nhyde: Find rallies through candidate websites, social media, or event platforms like Eventbrite. Register if required (RSVP is often free). Arrive early as venues fill up. Bring water, sunscreen if outdoors, a charged phone, and valid ID. Wear comfortable shoes. Be aware of your surroundings and know the exit locations. Follow posted rules about signs and bags."}
+{"input": "what is the function of a narrative arc?", "output": "lex: narrative arc function story structure\nlex: narrative arc exposition climax resolution plot\nvec: what is a narrative arc and how does it structure a story from beginning to end\nvec: what are the parts of a narrative arc and why is it important in storytelling\nhyde: A narrative arc is the structure that shapes a story's progression. It typically follows five stages: exposition (introduces characters and setting), rising action (builds conflict and tension), climax (the turning point), falling action (consequences unfold), and resolution (conflict is resolved). The arc gives readers a satisfying sense of progression and closure."}
+{"input": "arg parse", "output": "lex: argparse Python command line arguments\nlex: argument parser CLI Python module\nvec: how to use Python argparse module to parse command line arguments\nvec: how to define positional and optional arguments with argparse\nhyde: Use argparse to handle CLI arguments: parser = argparse.ArgumentParser(); parser.add_argument(\"file\"); args = parser.parse_args(). Supports positional args, optional flags, subcommands, and type validation."}
+{"input": "how to draw realistic portraits?", "output": "lex: draw realistic portrait pencil technique\nlex: portrait drawing face proportions shading\nvec: how to draw a realistic human portrait with accurate proportions and shading\nvec: what techniques do artists use to draw lifelike faces with pencil\nhyde: Start with a lightly sketched oval. Divide the face: eyes sit at the midpoint, the nose halfway between eyes and chin, and the mouth one-third below the nose. Use a grid or Loomis method for proportions. Build tonal values gradually—light layers first, then darker shadows. Blend with a tortillon for smooth skin textures. Pay close attention to the light source direction."}
+{"input": "what is the impact of religion on culture?", "output": "lex: religion impact culture society influence\nlex: religion culture art morality traditions\nvec: how has religion shaped culture, art, and social norms throughout history\nvec: what influence does religion have on cultural values, laws, and traditions\nhyde: Religion has profoundly shaped cultures worldwide—influencing art (Gothic cathedrals, Islamic calligraphy, Hindu temple sculpture), moral codes, legal systems (Sharia, Canon law), dietary practices, marriage customs, holidays, and music. Religious narratives provide shared identity and meaning. The Protestant work ethic, for example, influenced Western capitalism according to Max Weber."}
+{"input": "what is the ethics of war", "output": "lex: ethics of war just war theory morality\nlex: just war ethics military conflict jus ad bellum\nvec: what is just war theory and the ethical principles governing warfare\nvec: how do philosophers evaluate whether a war is morally justified\nhyde: Just war theory establishes criteria for morally permissible warfare. Jus ad bellum (right to go to war) requires just cause, legitimate authority, right intention, last resort, proportionality, and reasonable chance of success. Jus in bello (right conduct in war) requires distinction between combatants and civilians and proportional use of force."}
+{"input": "how to analyze scientific data statistically", "output": "lex: statistical analysis scientific data methods\nlex: statistical tests data analysis research t-test ANOVA\nvec: how to choose and apply the right statistical tests for analyzing scientific research data\nvec: what are the steps for performing statistical analysis on experimental data\nhyde: Choose your statistical test based on data type and research question. For comparing two group means, use an independent t-test (parametric) or Mann-Whitney U (non-parametric). For three or more groups, use one-way ANOVA. For correlations, use Pearson's r (continuous) or Spearman's rho (ordinal). Report effect sizes and confidence intervals alongside p-values."}
+{"input": "how to analyze experimental data", "output": "lex: analyze experimental data methods results\nlex: experimental data analysis visualization interpretation\nvec: what are the steps to properly analyze and interpret experimental research data\nvec: how to organize, visualize, and draw conclusions from experimental results\nhyde: Start by cleaning the data: remove outliers using predefined criteria and check for missing values. Calculate descriptive statistics (mean, median, standard deviation). Visualize distributions with histograms or box plots. Apply appropriate statistical tests to evaluate hypotheses. Interpret results in context of your research question and note limitations."}
+{"input": "climate action", "output": "lex: climate action policy emissions reduction\nlex: climate action carbon neutral renewable energy 2026\nvec: what actions are governments and individuals taking to combat climate change\nvec: what are the most effective climate action strategies for reducing greenhouse gas emissions\nhyde: Climate action encompasses policies and initiatives to reduce greenhouse gas emissions and adapt to climate change. Key strategies include transitioning to renewable energy, electrifying transportation, improving energy efficiency in buildings, protecting forests, and implementing carbon pricing. The Paris Agreement aims to limit warming to 1.5°C above pre-industrial levels."}
+{"input": "what are the main teachings of shinto?", "output": "lex: Shinto teachings beliefs practices Japan\nlex: Shinto kami nature purity rituals\nvec: what are the core beliefs and teachings of the Shinto religion in Japan\nvec: how does Shinto view nature, purity, and the spiritual world\nhyde: Shinto, Japan's indigenous religion, centers on the worship of kami—spirits inhabiting natural features, ancestors, and sacred places. Core teachings emphasize purity (physical and spiritual cleanliness), harmony with nature, respect for ancestors, and community ritual. There is no single scripture; practice focuses on shrine worship, seasonal festivals (matsuri), and purification rites (harae)."}
+{"input": "chronic pain management clinics", "output": "lex: chronic pain management clinic treatment\nlex: pain clinic multidisciplinary therapy near me\nvec: what services do chronic pain management clinics offer and how do they treat patients\nvec: how to find a reputable chronic pain management clinic for long-term treatment\nhyde: Chronic pain management clinics use a multidisciplinary approach combining medication management, physical therapy, cognitive behavioral therapy, nerve blocks, and interventional procedures like epidural steroid injections. Teams typically include pain medicine physicians, physical therapists, and psychologists. Ask your primary care doctor for a referral or search the American Academy of Pain Medicine directory."}
+{"input": "what is a business consultant", "output": "lex: business consultant role responsibilities\nlex: management consulting services\nlex: business advisory consultant\nvec: what does a business consultant do and what services do they provide\nvec: what qualifications and skills are needed to become a business consultant\nhyde: A business consultant is a professional who advises organizations on strategy, operations, and management. They analyze business problems, identify inefficiencies, and recommend solutions to improve performance and profitability."}
+{"input": "what are the characteristics of classic literature?", "output": "lex: classic literature characteristics traits\nlex: literary classics defining features\nvec: what qualities make a work of fiction considered classic literature\nvec: what distinguishes classic literature from other genres or time periods\nhyde: Classic literature is defined by its enduring relevance, universal themes, and artistic merit. These works explore the human condition through complex characters, moral dilemmas, and language that transcends the era in which they were written."}
+{"input": "what is blockchain technology", "output": "lex: blockchain technology distributed ledger\nlex: blockchain decentralized cryptographic\nlex: blockchain consensus mechanism\nvec: how does blockchain technology work as a distributed ledger system\nvec: what are the technical components that make up a blockchain\nhyde: Blockchain is a distributed ledger technology where transactions are recorded in blocks linked by cryptographic hashes. Each block contains a timestamp and transaction data, forming an immutable chain validated by a network of nodes through consensus mechanisms."}
+{"input": "where to buy luxury bedding sets", "output": "lex: luxury bedding sets buy online\nlex: high-end sheets duvet comforter\nlex: premium Egyptian cotton bedding\nvec: where can I purchase high-quality luxury bedding sets online or in stores\nvec: which brands sell the best luxury sheets and duvet covers\nhyde: Shop our collection of luxury bedding sets crafted from 100% Egyptian cotton and Italian-woven sateen. Thread counts from 400 to 1000. Free shipping on orders over $200. Available in king, queen, and California king sizes."}
+{"input": "how to retire early", "output": "lex: early retirement financial planning\nlex: FIRE financial independence retire early\nlex: early retirement savings rate\nvec: how much money do you need to save to retire before age 50\nvec: what financial strategies allow people to retire early through the FIRE movement\nhyde: To retire early, aim to save 50-70% of your income and invest in low-cost index funds. At a 4% safe withdrawal rate, you need roughly 25x your annual expenses. A person spending $40,000/year needs about $1 million to retire."}
+{"input": "how climate change affects farming", "output": "lex: climate change agriculture crop yields\nlex: global warming farming drought impact\nlex: climate change food production\nvec: how does rising global temperature affect crop yields and food production\nvec: what effects does climate change have on soil quality and growing seasons for farmers\nhyde: Rising temperatures and shifting precipitation patterns reduce crop yields by 2-6% per decade. Droughts, heat stress, and unpredictable frost dates disrupt planting schedules, while increased CO2 levels alter nutrient content in staple crops like wheat and rice."}
+{"input": "how to assess car tire damage?", "output": "lex: car tire damage inspection signs\nlex: tire wear tread depth sidewall\nlex: tire replacement damage indicators\nvec: how do you inspect car tires for damage and know when they need replacement\nvec: what are the signs of dangerous tire wear or sidewall damage on a vehicle\nhyde: Check tire tread depth using the penny test—insert a penny with Lincoln's head facing down. If you can see the top of his head, the tread is below 2/32\" and the tire needs replacing. Also inspect sidewalls for bulges, cracks, or cuts."}
+{"input": "kindle library", "output": "lex: kindle library ebook collection\nlex: Amazon Kindle digital library management\nlex: kindle book organization archive\nvec: how to manage and organize your ebook library on a Kindle device\nvec: how to borrow library books on Kindle through Libby or OverDrive\nhyde: Your Kindle Library stores all purchased and borrowed ebooks. Access it by tapping 'Library' on the home screen. Filter by 'Downloaded' or 'All' to see books stored on the device or in the cloud. Use collections to organize titles by genre or topic."}
+{"input": "how to plant wildflowers in clay soil?", "output": "lex: wildflower planting clay soil\nlex: wildflower seeds heavy clay ground\nvec: what is the best method for growing wildflowers in heavy clay soil\nvec: which wildflower species thrive in clay soil conditions\nhyde: To plant wildflowers in clay soil, amend the top 2-3 inches with coarse sand and compost to improve drainage. Choose clay-tolerant species like black-eyed Susan, coneflower, and bee balm. Sow seeds in fall or early spring, pressing them into the surface without burying deeply."}
+{"input": "how to photograph the milky way", "output": "lex: milky way astrophotography camera settings\nlex: night sky photography milky way\nlex: milky way photo long exposure\nvec: what camera settings and equipment do you need to photograph the milky way\nvec: how to find the best location and time for milky way photography\nhyde: Set your camera to manual mode with an aperture of f/2.8 or wider, ISO 3200-6400, and a shutter speed of 15-25 seconds using the 500 rule. Use a sturdy tripod and a wide-angle lens. Shoot during a new moon away from light pollution."}
+{"input": "what are ocean currents", "output": "lex: ocean currents thermohaline circulation\nlex: ocean surface currents deep water\nlex: ocean current patterns global\nvec: what causes ocean currents and how do they circulate water around the globe\nvec: what is the difference between surface ocean currents and deep water thermohaline circulation\nhyde: Ocean currents are continuous, directed movements of seawater driven by wind, temperature, salinity, and the Earth's rotation. Surface currents are driven primarily by wind patterns, while deep-water thermohaline circulation is driven by differences in water density."}
+{"input": "what is the concept of moral absolutism?", "output": "lex: moral absolutism ethical theory\nlex: moral absolutism objective right wrong\nvec: what does moral absolutism mean as an ethical philosophy\nvec: how does moral absolutism differ from moral relativism in determining right and wrong\nhyde: Moral absolutism holds that certain actions are inherently right or wrong regardless of context, culture, or consequence. Under this view, ethical rules are universal and unchanging—lying is always wrong, for example, even if it could prevent harm."}
+{"input": "how to set up a smart home?", "output": "lex: smart home setup devices hub\nlex: home automation WiFi Zigbee Z-Wave\nlex: smart home starter guide speakers lights\nvec: what devices and hubs do you need to set up a smart home automation system\nvec: how to connect smart lights thermostats and speakers in a home network\nhyde: Start with a smart speaker like Amazon Echo or Google Nest as your central hub. Connect smart bulbs (Philips Hue, LIFX) and a smart thermostat (Nest, Ecobee) over WiFi or Zigbee. Use the companion app to create automations like turning off lights at bedtime."}
+{"input": "what is cycling commute?", "output": "lex: cycling commute bike to work\nlex: bicycle commuting urban transportation\nvec: what does it mean to commute by bicycle and what are the benefits\nvec: how do people use cycling as their daily commute to work in cities\nhyde: Cycling commute refers to using a bicycle as your primary transportation to and from work. Bike commuters typically ride 3-15 miles each way, saving on fuel costs while getting daily exercise. Many cities now have protected bike lanes and bike-share programs."}
+{"input": "how to approach ethical decision-making", "output": "lex: ethical decision-making framework steps\nlex: ethical reasoning moral dilemma process\nvec: what frameworks or steps help with making ethical decisions in difficult situations\nvec: how do you systematically evaluate moral choices when facing an ethical dilemma\nhyde: A structured approach to ethical decision-making involves: (1) identify the ethical issue, (2) gather relevant facts, (3) consider stakeholders affected, (4) evaluate options using ethical frameworks like utilitarianism or deontology, and (5) make and justify your decision."}
+{"input": "how to find a reliable realtor", "output": "lex: find reliable realtor real estate agent\nlex: choosing trustworthy real estate agent\nvec: how do you find and vet a trustworthy real estate agent for buying or selling a home\nvec: what qualities and credentials should you look for in a reliable realtor\nhyde: Check that the realtor is licensed in your state and has no disciplinary actions. Read online reviews, ask for references from recent clients, and verify their transaction history. A good agent should know the local market and communicate promptly."}
+{"input": "how to lease a car?", "output": "lex: car lease process terms payments\nlex: vehicle leasing agreement negotiation\nvec: what are the steps to lease a car and what terms should you negotiate\nvec: how do car lease payments work and what fees are involved\nhyde: To lease a car, negotiate the capitalized cost (sale price), money factor (interest rate), and residual value. Monthly payments are based on the difference between the cap cost and residual, divided by the lease term, plus a finance charge. Typical leases run 24-36 months."}
+{"input": "how do different cultures commemorate death?", "output": "lex: death rituals funeral customs cultures\nlex: cultural death commemoration ceremonies\nvec: what are the different ways cultures around the world honor and commemorate the dead\nvec: how do funeral rituals and mourning traditions vary across religions and cultures\nhyde: In Mexico, Día de los Muertos celebrates deceased loved ones with altars, marigolds, and sugar skulls. Hindu cremation ceremonies release the soul for reincarnation. In Ghana, elaborate fantasy coffins reflect the deceased's life. Japanese Obon festivals welcome ancestral spirits home."}
+{"input": "how to change a tire", "output": "lex: change flat tire steps jack\nlex: car tire replacement spare\nvec: what are the step-by-step instructions for changing a flat tire on the side of the road\nvec: how to safely jack up a car and replace a flat tire with the spare\nhyde: Loosen the lug nuts slightly before jacking. Place the jack under the vehicle frame near the flat tire and raise until the tire clears the ground. Remove lug nuts, pull off the flat, mount the spare, and hand-tighten the nuts in a star pattern. Lower the car and torque to 80-100 ft-lbs."}
+{"input": "how to develop a positive mindset?", "output": "lex: positive mindset development habits\nlex: positive thinking mental attitude techniques\nvec: what daily habits and techniques help develop and maintain a positive mindset\nvec: how can you train your brain to think more positively and overcome negative thought patterns\nhyde: Developing a positive mindset starts with awareness of negative self-talk. Replace \"I can't\" with \"I'm learning to.\" Practice daily gratitude by writing three things you're thankful for. Surround yourself with supportive people and limit exposure to negativity."}
+{"input": "what is bioinformatics", "output": "lex: bioinformatics computational biology genomics\nlex: bioinformatics DNA sequence analysis\nvec: what is the field of bioinformatics and how does it apply computational methods to biological data\nvec: how is bioinformatics used to analyze DNA sequences and genomic data\nhyde: Bioinformatics is an interdisciplinary field that combines biology, computer science, and statistics to analyze biological data. It involves developing algorithms and software to process DNA sequences, protein structures, and gene expression data from high-throughput experiments."}
+{"input": "how to prepare for a triathlon", "output": "lex: triathlon training plan preparation\nlex: swim bike run triathlon training\nvec: what training plan should a beginner follow to prepare for their first triathlon\nvec: how to balance swimming cycling and running workouts when training for a triathlon\nhyde: A 12-week sprint triathlon plan builds endurance across all three disciplines. Week 1: swim 2x (20 min), bike 2x (30 min), run 3x (20 min). Gradually increase volume by 10% per week. Include one brick workout (bike-to-run) weekly to simulate race-day transitions."}
+{"input": "how to paint a car?", "output": "lex: car paint job spray booth steps\nlex: automotive painting primer clearcoat\nvec: what is the step-by-step process for painting a car at home or in a garage\nvec: what preparation and materials are needed to repaint a car yourself\nhyde: Sand the existing paint with 400-grit wet sandpaper until smooth. Apply 2-3 coats of automotive primer, sanding between coats with 600-grit. Spray the base color in thin, even passes, allowing 15 minutes flash time between coats. Finish with 2-3 coats of clearcoat."}
+{"input": "lab test", "output": "lex: lab test blood work results\nlex: laboratory diagnostic testing medical\nlex: lab test ordered interpretation\nvec: what types of medical lab tests are commonly ordered and what do the results mean\nvec: how to understand blood test results from a laboratory\nhyde: Common lab tests include CBC (complete blood count), CMP (comprehensive metabolic panel), lipid panel, and thyroid function tests. A CBC measures white blood cells, red blood cells, hemoglobin, and platelets. Results outside the reference range may indicate infection, anemia, or other conditions."}
+{"input": "where to buy iphone 14", "output": "lex: buy iPhone 14 price deals\nlex: iPhone 14 purchase Apple store carrier\nvec: where can you buy an iPhone 14 at the best price online or in retail stores\nvec: which stores and carriers currently sell the iPhone 14 and offer trade-in deals\nhyde: Buy iPhone 14 starting at $599 from Apple.com, or save with carrier deals from Verizon, AT&T, and T-Mobile. Trade in your old device for up to $400 off. Also available at Best Buy, Walmart, and Amazon with financing options."}
+{"input": "what is the categorical imperative", "output": "lex: categorical imperative Kant ethics\nlex: Kantian categorical imperative universal law\nvec: what is Kant's categorical imperative and how does it function as a moral principle\nvec: how does the categorical imperative test whether an action is morally permissible\nhyde: The categorical imperative, formulated by Immanuel Kant, states: \"Act only according to that maxim by which you can at the same time will that it should become a universal law.\" It requires that moral rules apply unconditionally to all rational beings, regardless of personal desires."}
+{"input": "latest research on renewable agriculture", "output": "lex: renewable agriculture research 2025 2026\nlex: regenerative sustainable farming research\nlex: renewable agriculture soil carbon sequestration\nvec: what are the latest scientific findings on regenerative and renewable agriculture techniques\nvec: what recent research has been published on sustainable farming and soil health in 2025 or 2026\nhyde: A 2025 study in Nature Food found that cover cropping and no-till practices increased soil organic carbon by 8-12% over five years. Researchers also demonstrated that integrating livestock grazing with crop rotation improved soil microbial diversity by 23%."}
+{"input": "cloud deploy", "output": "lex: cloud deployment pipeline CI/CD\nlex: cloud deploy AWS Azure GCP\nlex: cloud infrastructure deployment automation\nvec: how to deploy applications to cloud platforms like AWS, Azure, or Google Cloud\nvec: what tools and pipelines are used for automated cloud deployment\nhyde: Deploy to the cloud using `gcloud deploy` or configure a CI/CD pipeline with GitHub Actions. Define your infrastructure with Terraform or CloudFormation, build container images, push to a registry, and roll out to Kubernetes or serverless environments."}
+{"input": "what is the significance of day of the dead", "output": "lex: Day of the Dead Día de los Muertos significance\nlex: Day of the Dead Mexican tradition meaning\nvec: what is the cultural and spiritual significance of Day of the Dead in Mexican tradition\nvec: why is Día de los Muertos celebrated and what does it mean to families in Mexico\nhyde: Día de los Muertos, celebrated November 1-2, is a Mexican tradition honoring deceased loved ones. Families build ofrendas (altars) decorated with marigolds, photos, and the departed's favorite foods. It blends pre-Columbian Aztec beliefs with Catholic All Saints' and All Souls' Days."}
+{"input": "what is stonehenge", "output": "lex: Stonehenge prehistoric monument England\nlex: Stonehenge purpose construction history\nvec: what is Stonehenge and why was it built on Salisbury Plain in England\nvec: what do archaeologists know about the history and purpose of Stonehenge\nhyde: Stonehenge is a prehistoric stone circle on Salisbury Plain in Wiltshire, England, built in stages from roughly 3000 to 2000 BCE. The massive sarsen stones, some weighing 25 tons, were transported from Marlborough Downs 25 miles north. Its alignment with the summer solstice sunrise suggests astronomical or ceremonial function."}
+{"input": "bug fix", "output": "lex: bug fix debugging software\nlex: bug fix code patch issue\nlex: software bug troubleshooting resolution\nvec: how to identify and fix bugs in software code effectively\nvec: what is the process for debugging and resolving code issues\nhyde: To fix a bug, first reproduce it reliably and identify the exact conditions that trigger it. Use a debugger or add logging to narrow down the faulty code path. Write a regression test that captures the bug, then modify the code until the test passes."}
+{"input": "how to wax a car?", "output": "lex: car wax application steps\nlex: wax car paint protection polish\nvec: what is the proper technique for waxing a car to protect the paint finish\nvec: how often should you wax a car and what products work best\nhyde: Wash and dry the car thoroughly before waxing. Apply a thin layer of carnauba or synthetic wax with a foam applicator pad using circular motions. Work one panel at a time, let it haze for 5-10 minutes, then buff off with a clean microfiber towel."}
+{"input": "what is the veil of ignorance", "output": "lex: veil of ignorance Rawls justice\nlex: John Rawls original position veil of ignorance\nvec: what is John Rawls' veil of ignorance thought experiment in political philosophy\nvec: how does the veil of ignorance help determine principles of justice in a fair society\nhyde: The veil of ignorance is a thought experiment by John Rawls in A Theory of Justice (1971). It asks people to choose principles of justice from an \"original position\" where they don't know their own race, gender, wealth, or abilities. Rawls argues this produces fair, impartial rules."}
+{"input": "what are the challenges of multiculturalism", "output": "lex: multiculturalism challenges social integration\nlex: multicultural society tensions cultural diversity\nvec: what social and political challenges arise in multicultural societies\nvec: how do multicultural nations deal with cultural conflict and integration difficulties\nhyde: Multicultural societies face challenges including language barriers, cultural misunderstandings, and tensions between assimilation and cultural preservation. Debates arise over shared national identity, religious accommodation in public institutions, and equitable representation of minority groups."}
+{"input": "what are smart cities?", "output": "lex: smart city technology IoT urban\nlex: smart cities infrastructure data sensors\nvec: what defines a smart city and what technologies do they use\nvec: how do smart cities use IoT sensors and data analytics to improve urban infrastructure\nhyde: Smart cities integrate IoT sensors, data analytics, and connected infrastructure to improve urban services. Examples include adaptive traffic signals that reduce congestion by 25%, smart grids that optimize energy distribution, and sensors that monitor air quality and water systems in real time."}
+{"input": "how to optimize supply chain", "output": "lex: supply chain optimization logistics\nlex: supply chain efficiency inventory management\nvec: what strategies and tools can companies use to optimize their supply chain operations\nvec: how do businesses reduce supply chain costs while improving delivery speed and reliability\nhyde: Optimize your supply chain by implementing demand forecasting with machine learning, reducing safety stock through just-in-time inventory, and diversifying suppliers to mitigate risk. Use real-time tracking and warehouse management systems to cut lead times by 15-30%."}
+{"input": "what is an elevator pitch", "output": "lex: elevator pitch short business presentation\nlex: elevator pitch 30-second summary\nvec: what is an elevator pitch and how do you structure an effective one\nvec: how do you deliver a compelling 30-second pitch for a business idea or job opportunity\nhyde: An elevator pitch is a concise, 30-60 second summary of who you are and what you offer. Structure it as: hook (attention-grabbing opening), problem you solve, your solution, and a call to action. Practice until it sounds conversational, not rehearsed."}
+{"input": "how to rotate car tires?", "output": "lex: car tire rotation pattern schedule\nlex: tire rotation front rear cross\nvec: how often should you rotate car tires and what pattern should you follow\nvec: what is the correct tire rotation procedure for front-wheel and all-wheel drive vehicles\nhyde: Rotate tires every 5,000-7,500 miles. For front-wheel drive, move fronts straight to the rear and cross the rears to the front. For rear-wheel drive, move rears straight forward and cross the fronts to the rear. All-wheel drive uses the rearward cross pattern."}
+{"input": "how to participate in a pow wow", "output": "lex: pow wow Native American attend participate\nlex: pow wow etiquette attendance protocol\nvec: how can non-Native people respectfully attend and participate in a pow wow\nvec: what are the etiquette rules and customs visitors should follow at a pow wow\nhyde: When attending a pow wow, stand during grand entry and honor songs. Don't touch dancers' regalia without permission. Ask before photographing. Bring a lawn chair, as seating is limited. Some dances are intertribal and open to all—the emcee will announce when visitors may join the circle."}
+{"input": "car rust", "output": "lex: car rust prevention treatment\nlex: automotive rust repair body panel\nlex: car rust removal undercarriage\nvec: how to prevent and treat rust on a car body and undercarriage\nvec: what causes rust on cars and how can you repair rusted panels\nhyde: Car rust forms when bare metal is exposed to moisture and salt. Treat surface rust by sanding to bare metal, applying rust converter, priming, and repainting. For structural rust, cut out the damaged section and weld in a patch panel. Prevent rust with regular washing and undercoating."}
+{"input": "what is moral obligation", "output": "lex: moral obligation ethical duty\nlex: moral obligation philosophy definition\nvec: what does moral obligation mean in ethics and where do moral duties come from\nvec: how do philosophers define and justify moral obligations people have toward others\nhyde: A moral obligation is a duty to act in accordance with ethical principles, regardless of legal requirements. For example, one may feel morally obligated to help a stranger in danger. Philosophers debate whether moral obligations stem from reason (Kant), consequences (Mill), or social contracts."}
+{"input": "what is the purpose of a thesis statement?", "output": "lex: thesis statement purpose essay writing\nlex: thesis statement argument academic paper\nvec: what role does a thesis statement play in an essay or academic paper\nvec: why is a strong thesis statement important and how should it be written\nhyde: A thesis statement presents the central argument of an essay in one or two sentences, typically at the end of the introduction. It tells the reader what the paper will argue and provides a roadmap for the evidence and analysis that follow. A strong thesis is specific, debatable, and supportable."}
+{"input": "how to attend a diplomatic event", "output": "lex: diplomatic event attendance protocol etiquette\nlex: diplomatic reception dress code invitation\nvec: what are the etiquette rules and dress codes for attending a diplomatic event or reception\nvec: how do you get invited to and properly conduct yourself at a diplomatic function\nhyde: At diplomatic events, follow the dress code specified on the invitation (black tie, business formal). Arrive punctually, greet the host first, and address ambassadors as \"Your Excellency.\" Exchange business cards with both hands. Avoid discussing controversial political topics unless invited to do so."}
+{"input": "what is renewable energy", "output": "lex: renewable energy sources solar wind\nlex: renewable energy types clean power\nvec: what are the main types of renewable energy and how do they generate electricity\nvec: how do renewable energy sources like solar and wind power differ from fossil fuels\nhyde: Renewable energy comes from naturally replenishing sources: solar, wind, hydroelectric, geothermal, and biomass. Solar panels convert sunlight into electricity using photovoltaic cells. Wind turbines capture kinetic energy from moving air. These sources produce little or no greenhouse gas emissions during operation."}
+{"input": "what is machine learning", "output": "lex: machine learning algorithms training data\nlex: machine learning AI neural networks\nvec: what is machine learning and how do algorithms learn from data to make predictions\nvec: how does machine learning differ from traditional programming and rule-based systems\nhyde: Machine learning is a subset of artificial intelligence where algorithms learn patterns from training data rather than following explicit rules. Given labeled examples, a supervised learning model adjusts its parameters to minimize prediction error. Common algorithms include linear regression, decision trees, and neural networks."}
+{"input": "what is the role of the protagonist?", "output": "lex: protagonist role literary fiction\nlex: protagonist main character story function\nvec: what role does the protagonist play in driving the plot of a novel or story\nvec: how does the protagonist function as the central character in literary fiction\nhyde: The protagonist is the central character whose goals and conflicts drive the narrative. They face obstacles, make choices, and undergo transformation through the story arc. Readers experience the plot primarily through the protagonist's perspective, creating emotional investment in their journey."}
+{"input": "api test", "output": "lex: API testing automated endpoint\nlex: REST API test Postman integration\nlex: API endpoint validation testing\nvec: how to write automated tests for REST API endpoints\nvec: what tools and methods are used for API testing and validation\nhyde: Test API endpoints using Postman or write automated tests with a framework like Jest or pytest. Send requests to each endpoint and assert status codes, response bodies, and headers. Example: `expect(response.status).toBe(200)` and validate the JSON schema of the response."}
+{"input": "how to improve civic engagement", "output": "lex: civic engagement participation community\nlex: civic engagement voting local government\nvec: what are effective ways to increase civic engagement and community participation\nvec: how can citizens get more involved in local government and community decision-making\nhyde: Improve civic engagement by attending city council meetings, volunteering for local organizations, and contacting elected officials about issues you care about. Register to vote and participate in every election, including local and midterm races. Join neighborhood associations and community boards."}
+{"input": "sustainable agriculture", "output": "lex: sustainable agriculture farming methods\nlex: sustainable agriculture soil health crop rotation\nlex: sustainable agriculture environmental impact\nvec: what farming practices make agriculture sustainable and environmentally friendly\nvec: how does sustainable agriculture balance food production with environmental conservation\nhyde: Sustainable agriculture maintains productivity while protecting natural resources. Key practices include crop rotation, cover cropping, integrated pest management, reduced tillage, and efficient water use. These methods improve soil health, reduce erosion, and lower dependence on synthetic fertilizers and pesticides."}
+{"input": "how to fix car door lock?", "output": "lex: car door lock repair fix stuck\nlex: car door lock actuator replacement\nvec: how to diagnose and fix a car door lock that is stuck or not working\nvec: how to replace a broken car door lock actuator or mechanism\nhyde: If the car door lock won't engage, check the fuse first. Test the lock with the key and remote separately. If the remote works but the button doesn't, the switch is faulty. If neither works, the lock actuator has likely failed. Remove the door panel, disconnect the actuator, and replace it."}
+{"input": "drug test", "output": "lex: drug test urine screening types\nlex: drug test employment panel detection\nlex: drug testing workplace results\nvec: what types of drug tests are used for employment and what substances do they detect\nvec: how long do drugs stay detectable in urine blood and hair drug tests\nhyde: The standard 5-panel drug test screens for marijuana (THC), cocaine, opiates, amphetamines, and PCP. Urine tests detect most substances for 1-7 days, except marijuana which can be detected for up to 30 days in heavy users. Hair follicle tests cover approximately 90 days."}
+{"input": "how to participate in lobbying efforts", "output": "lex: lobbying participation advocacy government\nlex: citizen lobbying elected officials\nvec: how can ordinary citizens participate in lobbying and advocacy to influence legislation\nvec: what steps are involved in organizing a lobbying effort for a political cause\nhyde: Citizens can lobby by contacting representatives via phone, email, or scheduled meetings. Prepare a one-page brief on your issue with specific policy asks. Join advocacy organizations that coordinate lobbying days at state capitols. Grassroots lobbying involves petitions, public comment periods, and organized letter-writing campaigns."}
+{"input": "how do you find inspiration for photography?", "output": "lex: photography inspiration ideas creative\nlex: photography creative motivation techniques\nvec: where do photographers find creative inspiration for new projects and subjects\nvec: what techniques help overcome creative block and find fresh ideas for photography\nhyde: Find photography inspiration by studying the work of photographers you admire on platforms like Flickr, 500px, and Instagram. Try a 365-day photo challenge. Walk familiar routes at different times of day. Limit yourself to one lens or shoot only in black and white to force creative thinking."}
+{"input": "how to install car led lights?", "output": "lex: car LED lights installation wiring\nlex: LED headlight bulb install car\nvec: how to install aftermarket LED lights on a car including wiring and connections\nvec: step-by-step guide for replacing car headlights or interior lights with LEDs\nhyde: To install LED headlights, open the hood and locate the headlight housing. Twist the bulb holder counterclockwise to remove the old halogen bulb. Insert the LED bulb, secure the heat sink or fan module, and connect the driver if included. Test both low and high beams before reassembling."}
+{"input": "how to critically analyze research papers", "output": "lex: research paper critical analysis evaluation\nlex: academic paper critique methodology\nvec: how do you critically evaluate the methodology and conclusions of a research paper\nvec: what framework should you use to analyze the strengths and weaknesses of an academic study\nhyde: When analyzing a research paper, evaluate: (1) Is the research question clearly stated? (2) Is the methodology appropriate and reproducible? (3) Is the sample size adequate? (4) Do the results support the conclusions? (5) Are limitations acknowledged? Check for conflicts of interest and citation of relevant prior work."}
+{"input": "what is mindfulness meditation", "output": "lex: mindfulness meditation practice technique\nlex: mindfulness meditation awareness breathing\nvec: what is mindfulness meditation and how do you practice it\nvec: what are the mental and physical health benefits of regular mindfulness meditation\nhyde: Mindfulness meditation involves focusing attention on the present moment without judgment. Sit comfortably, close your eyes, and observe your breath. When thoughts arise, acknowledge them without engaging and gently return focus to breathing. Start with 5-10 minutes daily and gradually increase duration."}
+{"input": "what is the digital divide", "output": "lex: digital divide internet access inequality\nlex: digital divide technology gap socioeconomic\nvec: what is the digital divide and how does it affect people without internet access\nvec: what factors contribute to the technology gap between different socioeconomic groups\nhyde: The digital divide refers to the gap between those who have access to computers and the internet and those who do not. Roughly 2.7 billion people worldwide remain offline. Factors include income, geography, age, and education. Rural areas and developing countries are disproportionately affected."}
+{"input": "what is nihilism", "output": "lex: nihilism philosophy meaning Nietzsche\nlex: nihilism existential moral meaning\nvec: what is nihilism as a philosophical position and what does it claim about meaning and values\nvec: how did Nietzsche and other philosophers develop and respond to nihilism\nhyde: Nihilism is the philosophical view that life lacks objective meaning, purpose, or intrinsic value. Existential nihilism holds that no action is inherently meaningful. Friedrich Nietzsche warned that the \"death of God\" would lead to nihilism but urged individuals to create their own values through the will to power."}
+{"input": "how to improve self-discipline?", "output": "lex: self-discipline improvement habits willpower\nlex: self-discipline strategies consistency\nvec: what daily habits and strategies help build stronger self-discipline\nvec: how can you train yourself to stay disciplined and follow through on goals\nhyde: Build self-discipline by starting with small commitments and increasing gradually. Make your bed every morning. Use the two-minute rule: if a task takes less than two minutes, do it now. Remove temptations from your environment and track your streaks to maintain momentum."}
+{"input": "what are the core practices of the bahá'í faith?", "output": "lex: Bahá'í faith core practices worship\nlex: Bahá'í religion prayer fasting principles\nvec: what are the main spiritual practices and rituals observed in the Bahá'í faith\nvec: what daily practices and religious obligations do Bahá'ís follow\nhyde: Core Bahá'í practices include daily obligatory prayer (one of three prayers chosen by the individual), fasting during the Nineteen-Day Fast in March, participation in Nineteen-Day Feasts, and the recitation of \"Alláh-u-Abhá\" 95 times daily. Bahá'ís also observe the prohibition on backbiting and alcohol."}
+{"input": "what is highlining?", "output": "lex: highlining slackline extreme height\nlex: highlining equipment safety rigging\nvec: what is highlining and how does it differ from regular slacklining\nvec: what equipment and safety precautions are required for highlining at extreme heights\nhyde: Highlining is the practice of walking a slackline anchored at significant height, often between cliffs, buildings, or over canyons. Unlike standard slacklining, highliners wear a climbing harness tethered to the line with a leash. Lines are rigged with redundant anchors using static rope or webbing."}
+{"input": "how to travel to bali", "output": "lex: travel Bali Indonesia flights visa\nlex: Bali trip planning itinerary transportation\nvec: how to plan a trip to Bali including flights, visas, and transportation\nvec: what do you need to know before traveling to Bali Indonesia for the first time\nhyde: Fly into Ngurah Rai International Airport (DPS) in southern Bali. Many countries receive a 30-day visa on arrival for $500,000 IDR (~$35). Book a private driver for around $40-50/day to explore the island. Popular areas include Ubud for culture, Seminyak for dining, and Uluwatu for surfing."}
+{"input": "what caused the fall of the roman empire", "output": "lex: fall Roman Empire causes decline\nlex: Roman Empire collapse reasons factors\nvec: what were the main political military and economic causes of the fall of the Roman Empire\nvec: why did the Western Roman Empire collapse in 476 AD\nhyde: The fall of the Western Roman Empire in 476 AD resulted from multiple factors: military overextension, barbarian invasions (Visigoths, Vandals, Ostrogoths), economic decline from debasement of currency, political instability with rapid emperor turnover, and the shift of power to Constantinople."}
+{"input": "what is philosophy of mind", "output": "lex: philosophy of mind consciousness problem\nlex: philosophy of mind mental states dualism\nvec: what does the philosophy of mind study about consciousness and mental states\nvec: what are the main theories in philosophy of mind such as dualism and physicalism\nhyde: Philosophy of mind examines the nature of mental states, consciousness, and their relationship to the physical brain. Central questions include the mind-body problem: how do subjective experiences (qualia) arise from neural processes? Key positions include dualism, physicalism, functionalism, and property dualism."}
+{"input": "how to build a personal brand", "output": "lex: personal brand building online presence\nlex: personal branding strategy social media\nvec: how do you build a strong personal brand for career growth or entrepreneurship\nvec: what steps should you take to develop a recognizable personal brand online\nhyde: Build your personal brand by defining your niche and unique value proposition. Create consistent profiles across LinkedIn, Twitter, and a personal website. Publish content regularly—blog posts, videos, or podcasts—that demonstrates your expertise. Engage authentically with your audience and network at industry events."}
+{"input": "what is the significance of dialogue in philosophy?", "output": "lex: dialogue philosophy Socratic method\nlex: philosophical dialogue significance discourse\nvec: why is dialogue important as a method of philosophical inquiry and reasoning\nvec: how did Socratic dialogue shape Western philosophical tradition\nhyde: Dialogue has been central to philosophy since Plato's Socratic dialogues, where truth emerges through questioning and exchange rather than dogmatic assertion. The dialectical method exposes contradictions in arguments, refines ideas through challenge and response, and models philosophy as collaborative inquiry."}
+{"input": "what does it mean to write a biography?", "output": "lex: biography writing nonfiction life story\nlex: biography research subject narrative\nvec: what is involved in writing a biography of someone's life\nvec: how do biographers research and structure a narrative about a person's life\nhyde: Writing a biography means researching and narrating the story of a real person's life. Biographers conduct interviews, examine letters and documents, and verify facts through multiple sources. The narrative typically follows chronological structure while weaving in themes that defined the subject's character and impact."}
+{"input": "how to develop a writing habit?", "output": "lex: writing habit daily routine discipline\nlex: writing habit consistency productivity\nvec: how do you build and maintain a consistent daily writing habit\nvec: what strategies help writers overcome procrastination and write regularly\nhyde: Set a specific time and place to write every day, even if only for 15-20 minutes. Track your word count or time spent writing. Don't edit while drafting—just get words on the page. Use writing prompts if you're stuck. Many successful authors, including Stephen King, recommend writing at least 1,000 words daily."}
+{"input": "what is green technology", "output": "lex: green technology clean environmental\nlex: green technology sustainable energy efficiency\nvec: what is green technology and what industries does it apply to\nvec: how does green technology help reduce environmental impact and promote sustainability\nhyde: Green technology encompasses innovations that reduce environmental impact, including solar panels, electric vehicles, energy-efficient buildings, biodegradable materials, and water purification systems. These technologies aim to conserve resources, reduce waste, and lower carbon emissions across manufacturing, energy, and transportation sectors."}
+{"input": "how to connect car bluetooth?", "output": "lex: car Bluetooth pairing phone connect\nlex: car Bluetooth setup audio streaming\nvec: how to pair a smartphone to a car's Bluetooth system for calls and music\nvec: step-by-step instructions for connecting a phone to car Bluetooth for the first time\nhyde: To connect via Bluetooth, enable Bluetooth on your phone and car infotainment system. On the car stereo, go to Settings > Bluetooth > Add Device. Select your car's name on your phone's Bluetooth list. Confirm the pairing code on both devices. The phone should automatically reconnect on future drives."}
+{"input": "what are the building blocks of life", "output": "lex: building blocks of life molecules biochemistry\nlex: amino acids nucleic acids proteins cells\nvec: what are the fundamental molecular building blocks that make up all living organisms\nvec: how do amino acids, nucleic acids, and lipids form the basis of life on Earth\nhyde: The building blocks of life are four types of organic molecules: proteins (made from amino acids), nucleic acids (DNA and RNA from nucleotides), carbohydrates (sugars and polysaccharides), and lipids (fats and phospholipids). These molecules self-assemble into cells, the basic unit of all living organisms."}
+{"input": "what is the role of a cinematographer?", "output": "lex: cinematographer role film camera director of photography\nlex: cinematographer lighting shot composition\nvec: what does a cinematographer do on a film set and what creative decisions do they make\nvec: how does the director of photography control lighting, camera, and visual storytelling in film\nhyde: The cinematographer, or director of photography (DP), is responsible for the visual look of a film. They select cameras, lenses, and lighting setups, and work with the director to plan shot composition and camera movement. The DP oversees the camera and electrical departments on set."}
+{"input": "landscape photography", "output": "lex: landscape photography techniques composition\nlex: landscape photography camera lens settings\nlex: landscape photography golden hour\nvec: what camera settings and techniques produce stunning landscape photographs\nvec: how to compose and shoot landscape photography with proper exposure and depth of field\nhyde: For landscape photography, use a wide-angle lens (16-35mm), aperture of f/8-f/11 for maximum sharpness, and a low ISO (100). Shoot during golden hour for warm, directional light. Use a tripod, compose with the rule of thirds, and include a strong foreground element to create depth."}
+{"input": "what are literary movements?", "output": "lex: literary movements periods history\nlex: literary movements Romanticism Modernism Realism\nvec: what are the major literary movements in history and what defines each one\nvec: how do literary movements like Romanticism, Realism, and Modernism differ from each other\nhyde: Literary movements are periods defined by shared styles, themes, and philosophies. Romanticism (1800-1850) emphasized emotion and nature. Realism (1850-1900) depicted ordinary life accurately. Modernism (1900-1945) experimented with form and stream of consciousness. Postmodernism questioned grand narratives through irony and fragmentation."}
+{"input": "what is the capital of france?", "output": "lex: capital France Paris\nlex: Paris capital city France\nvec: what city is the capital of France\nvec: where is the capital of France located and what is it known for\nhyde: Paris is the capital and largest city of France, located on the Seine River in northern France. With a population of over 2 million in the city proper and 12 million in the metropolitan area, it is the country's political, economic, and cultural center."}
+{"input": "golf play", "output": "lex: golf playing tips beginner\nlex: golf swing technique course\nlex: golf rules gameplay etiquette\nvec: how do you play golf and what are the basic rules for beginners\nvec: what techniques and etiquette should new golfers learn before playing on a course\nhyde: A round of golf consists of 18 holes. At each hole, tee off from the tee box, play through the fairway, and putt on the green. The objective is to complete each hole in the fewest strokes. Beginners should start at a driving range, learn basic grip and stance, and play executive (par-3) courses."}
+{"input": "build a treehouse", "output": "lex: treehouse building construction plans\nlex: treehouse DIY wood platform tree\nvec: how to design and build a treehouse safely in a backyard tree\nvec: what materials and tools do you need to build a treehouse for kids\nhyde: Choose a healthy hardwood tree (oak, maple, beech) with a trunk at least 12 inches in diameter. Use treehouse attachment bolts (TABs) rather than nails, which damage the tree. Build the platform at 6-8 feet high using pressure-treated lumber. Frame with 2x6 joists on 16-inch centers and deck with 5/4 boards."}
+{"input": "where to buy classic car parts", "output": "lex: classic car parts buy online supplier\nlex: vintage car parts restoration OEM\nvec: where can you purchase replacement parts for classic and vintage cars\nvec: which online stores and suppliers specialize in classic car restoration parts\nhyde: Find classic car parts at specialty suppliers like Summit Racing, Classic Industries, and Hemmings. Year One stocks OEM-quality parts for GM, Ford, and Mopar vehicles from the 1950s-80s. JEGS and Rock Auto also carry a wide selection. Check eBay Motors and swap meets for rare NOS (new old stock) parts."}
+{"input": "how to set business goals", "output": "lex: business goals setting SMART strategy\nlex: business goal planning objectives targets\nvec: how to set effective business goals using the SMART framework\nvec: what process should entrepreneurs follow to define and track business objectives\nhyde: Set business goals using the SMART framework: Specific (\"increase monthly revenue by 15%\"), Measurable (track with KPIs), Achievable (realistic given resources), Relevant (aligned with company mission), and Time-bound (complete by Q3). Break annual goals into quarterly milestones and review progress monthly."}
+{"input": "what are the characteristics of neolithic societies?", "output": "lex: Neolithic society characteristics agriculture settlement\nlex: Neolithic period farming tools social structure\nvec: what were the key characteristics of Neolithic societies after the agricultural revolution\nvec: how did Neolithic communities organize their social structure, farming, and settlements\nhyde: Neolithic societies (approximately 10,000-3,000 BCE) were characterized by the transition from hunting-gathering to agriculture. People domesticated plants and animals, formed permanent settlements, developed pottery and polished stone tools, and created increasingly complex social hierarchies with specialized labor roles."}
+{"input": "what is the significance of rituals in judaism?", "output": "lex: Judaism rituals significance religious practice\nlex: Jewish rituals Shabbat observance tradition\nvec: what role do rituals play in Jewish religious life and spiritual practice\nvec: why are rituals like Shabbat, kashrut, and prayer important in Judaism\nhyde: Rituals in Judaism (mitzvot) structure daily, weekly, and yearly life around sacred observance. Shabbat, observed from Friday evening to Saturday night, sanctifies time through rest, prayer, and family meals. Rituals connect Jews to their covenant with God, collective memory, and community identity across generations."}
+{"input": "how to increase productivity at work?", "output": "lex: productivity work increase tips\nlex: workplace productivity time management techniques\nvec: what proven strategies help people increase their productivity at work\nvec: how can you manage your time better to get more done during the workday\nhyde: Increase workplace productivity by time-blocking your calendar in 90-minute focus sessions. Tackle your hardest task first (eat the frog). Batch similar tasks like email and meetings. Eliminate distractions by silencing notifications. Use the Pomodoro Technique: 25 minutes of work, 5-minute break, repeat."}
+{"input": "what is panorama photography?", "output": "lex: panorama photography wide angle stitching\nlex: panoramic photo technique camera rotation\nvec: what is panorama photography and how do you capture and stitch panoramic images\nvec: what camera techniques and software are used to create panoramic photographs\nhyde: Panorama photography captures wide scenes by shooting multiple overlapping images and stitching them together. Use a tripod with a panoramic head, shoot in manual mode to keep exposure consistent, and overlap each frame by 30-50%. Stitch in software like Lightroom, PTGui, or Hugin."}
+{"input": "what are the key periods in chinese history", "output": "lex: Chinese history periods dynasties timeline\nlex: China historical periods Qin Han Tang\nvec: what are the major periods and dynasties in Chinese history from ancient to modern times\nvec: how is Chinese history divided into dynastic periods and what defined each era\nhyde: Key periods in Chinese history include: Shang Dynasty (1600-1046 BCE), Zhou Dynasty (1046-256 BCE), Qin Dynasty (221-206 BCE, first unified empire), Han Dynasty (206 BCE-220 CE), Tang Dynasty (618-907, golden age), Song Dynasty (960-1279), Ming Dynasty (1368-1644), Qing Dynasty (1644-1912), and the People's Republic (1949-present)."}
+{"input": "what are the elements of a good story?", "output": "lex: story elements plot character setting\nlex: storytelling elements narrative structure\nvec: what are the essential elements that make a story compelling and well-crafted\nvec: how do plot, character, setting, and conflict work together in a good story\nhyde: A good story requires compelling characters, a clear conflict, a structured plot (beginning, rising action, climax, resolution), a vivid setting, and a consistent point of view. Theme gives the story meaning beyond its events. Strong dialogue reveals character and advances the plot naturally."}
+{"input": "latest news in artificial intelligence research", "output": "lex: artificial intelligence research news 2025 2026\nlex: AI research breakthroughs latest developments\nlex: machine learning AI news recent\nvec: what are the most recent breakthroughs and developments in artificial intelligence research in 2025-2026\nvec: what new AI models and techniques have been published in the latest research\nhyde: In 2025-2026, AI research advanced with larger multimodal models capable of reasoning across text, image, and video. Key developments include improved chain-of-thought reasoning, AI agents that can use tools and write code, and open-weight models matching proprietary performance."}
+{"input": "what are the main beliefs of new age spirituality?", "output": "lex: New Age spirituality beliefs practices\nlex: New Age movement spiritual holistic\nvec: what are the central beliefs and practices of New Age spirituality\nvec: how does the New Age movement define spirituality, consciousness, and healing\nhyde: New Age spirituality encompasses diverse beliefs including holistic healing, the interconnectedness of all life, personal spiritual growth, and the existence of higher consciousness. Practitioners may draw from Eastern religions, astrology, crystal healing, meditation, and the idea that individuals can channel divine energy."}
+{"input": "how to plan a camping trip with kids", "output": "lex: camping trip kids family planning\nlex: family camping children gear checklist\nvec: how to plan and prepare for a family camping trip with young children\nvec: what gear and activities should you bring when camping with kids for the first time\nhyde: Plan a family camping trip by choosing a campground with bathrooms and short hiking trails. Pack extra layers, rain gear, and familiar snacks. Bring activities: nature scavenger hunts, glow sticks, and star charts. Set up camp early to let kids explore. Practice tent setup in the backyard first."}
+{"input": "how do philosophers conceptualize identity", "output": "lex: personal identity philosophy self\nlex: identity philosophy Locke consciousness persistence\nvec: how do philosophers define and explain personal identity and what makes someone the same person over time\nvec: what are the major philosophical theories of identity from Locke to modern philosophy of mind\nhyde: Philosophers debate what constitutes personal identity over time. John Locke argued identity rests on continuity of consciousness and memory. David Hume denied a fixed self, viewing identity as a bundle of perceptions. Derek Parfit argued identity is not what matters—psychological continuity is."}
+{"input": "what is the role of civil society in politics", "output": "lex: civil society political role organizations\nlex: civil society democracy NGOs advocacy\nvec: what role do civil society organizations play in democratic politics and governance\nvec: how does civil society influence government policy and hold political leaders accountable\nhyde: Civil society—NGOs, advocacy groups, unions, and community organizations—serves as a check on government power. These groups mobilize citizens, advocate for policy changes, monitor elections, and provide services the state cannot. A strong civil society is considered essential for healthy democracy and government accountability."}
+{"input": "how to handle inflation impact", "output": "lex: inflation impact personal finance manage\nlex: inflation coping strategies budget investment\nvec: how can individuals protect their finances and manage the impact of high inflation\nvec: what financial strategies help people cope with rising prices and reduced purchasing power\nhyde: To handle inflation, review your budget and cut discretionary spending. Move savings to high-yield accounts or I-bonds that adjust for inflation. Lock in fixed-rate loans before rates rise. Invest in assets that historically outpace inflation: equities, real estate, and TIPS (Treasury Inflation-Protected Securities)."}
+{"input": "how is energy conserved during chemical reactions", "output": "lex: energy conservation chemical reactions thermodynamics\nlex: chemical reaction energy transfer exothermic endothermic\nvec: how does the law of conservation of energy apply to chemical reactions\nvec: how is energy transferred and conserved in exothermic and endothermic chemical reactions\nhyde: In chemical reactions, energy is neither created nor destroyed (first law of thermodynamics). Exothermic reactions release energy—bonds formed in products are stronger than bonds broken in reactants. Endothermic reactions absorb energy—more energy is needed to break reactant bonds than is released forming product bonds."}
+{"input": "how to make sourdough bread", "output": "lex: sourdough bread recipe starter\nlex: sourdough bread baking fermentation dough\nvec: what is the step-by-step process for making sourdough bread from a starter\nvec: how do you feed a sourdough starter and bake a loaf of sourdough bread at home\nhyde: Mix 100g active starter, 375g water, 500g bread flour, and 10g salt. Stretch and fold every 30 minutes for 2 hours, then bulk ferment 4-8 hours until doubled. Shape, place in a banneton, and cold-proof in the fridge overnight. Bake in a Dutch oven at 450°F: 20 min covered, 20 min uncovered."}
+{"input": "what is the philosophy of aesthetics", "output": "lex: aesthetics philosophy beauty art\nlex: philosophy aesthetics theory judgment taste\nvec: what is the philosophy of aesthetics and how does it define beauty and art\nvec: how do philosophers like Kant and Hume approach questions of aesthetic judgment and taste\nhyde: Aesthetics is the branch of philosophy concerned with the nature of beauty, art, and taste. Kant argued that aesthetic judgments are subjective yet claim universal validity—when we call something beautiful, we expect others to agree. Hume held that taste varies but can be refined through experience and education."}
+{"input": "what to pack for a hike?", "output": "lex: hiking packing list gear essentials\nlex: hiking pack checklist day hike\nvec: what essential items should you pack for a day hike in the outdoors\nvec: what gear and supplies do you need to bring on a hiking trip for safety and comfort\nhyde: The ten essentials for hiking: navigation (map/compass/GPS), sun protection, insulation (extra layers), illumination (headlamp), first aid kit, fire starter, repair tools, nutrition (extra food), hydration (extra water), and emergency shelter. Also bring a whistle, trekking poles, and broken-in boots."}
+{"input": "what is the philosophy of existentialism?", "output": "lex: existentialism philosophy Sartre Kierkegaard\nlex: existentialism existence precedes essence freedom\nvec: what is existentialist philosophy and what are its core claims about human freedom and meaning\nvec: how did Sartre, Kierkegaard, and Camus define existentialism and its key ideas\nhyde: Existentialism holds that existence precedes essence—humans are not born with a fixed nature but create themselves through choices. Sartre argued we are \"condemned to be free,\" fully responsible for our actions. Kierkegaard emphasized the anxiety of individual choice, while Camus explored the absurdity of seeking meaning in an indifferent universe."}
+{"input": "battery test", "output": "lex: battery test multimeter voltage\nlex: battery test car 12V load\nlex: battery testing health capacity\nvec: how to test a battery's charge level and health using a multimeter or load tester\nvec: how to check if a car battery or device battery needs replacement\nhyde: Test a 12V car battery with a multimeter set to DC volts. A fully charged battery reads 12.6V or higher. Between 12.0-12.4V indicates partial charge. Below 12.0V means the battery is discharged. For a load test, apply a load equal to half the CCA rating for 15 seconds—voltage should stay above 9.6V."}
+{"input": "what is hdr photography?", "output": "lex: HDR photography high dynamic range\nlex: HDR photo bracketing tone mapping\nvec: what is HDR photography and how does it capture a wider range of light and shadow\nvec: how do you shoot and process HDR photos using exposure bracketing and tone mapping\nhyde: HDR (High Dynamic Range) photography combines multiple exposures of the same scene—typically 3-5 bracketed shots—to capture detail in both highlights and shadows. The images are merged using software like Photomatix or Lightroom, then tone-mapped to produce a single image with a wider dynamic range than a single exposure."}
+{"input": "what is the significance of literary awards?", "output": "lex: literary awards significance publishing\nlex: literary prizes Nobel Pulitzer Booker impact\nvec: why are literary awards significant for authors and the publishing industry\nvec: how do prizes like the Nobel, Pulitzer, and Booker Prize affect book sales and literary reputation\nhyde: Literary awards elevate authors' visibility and boost book sales—Booker Prize winners typically see a 600% increase in sales. Awards canonize works in literary culture, influence academic curricula, and bring attention to underrepresented voices. They also shape publishers' marketing strategies and readers' choices."}
+{"input": "what is cubism?", "output": "lex: Cubism art movement Picasso Braque\nlex: Cubism painting geometric abstraction\nvec: what is Cubism as an art movement and how did it change visual representation in painting\nvec: how did Picasso and Braque develop Cubism and what are its defining visual characteristics\nhyde: Cubism, pioneered by Pablo Picasso and Georges Braque around 1907-1914, broke objects into geometric fragments and depicted multiple viewpoints simultaneously on a flat canvas. Analytic Cubism (1907-1912) deconstructed forms into monochrome facets. Synthetic Cubism (1912-1914) introduced collage, color, and simpler shapes."}
+{"input": "cache hit", "output": "lex: cache hit rate ratio\nlex: CPU cache hit miss latency\nlex: web cache hit response time\nvec: what happens when data is found in cache memory\nvec: how cache hits improve application performance versus cache misses\nhyde: A cache hit occurs when the requested data is found in the cache layer, avoiding a slower lookup to the backing store. Hit rates above 90% typically indicate effective caching."}
+{"input": "current applications of machine learning in research", "output": "lex: machine learning research applications 2025 2026\nlex: ML models scientific research use cases\nlex: deep learning academic research tools\nvec: how is machine learning being applied in scientific research today\nvec: what are the latest ways researchers use ML models in their studies\nhyde: Machine learning is now routinely used in genomics for variant calling, in climate science for weather prediction, and in materials science for discovering novel compounds. Recent breakthroughs include protein structure prediction and automated literature review."}
+{"input": "how to plant a vegetable garden", "output": "lex: vegetable garden planting steps\nlex: backyard vegetable garden soil preparation\nlex: raised bed vegetable garden layout\nvec: what are the steps to start a vegetable garden from scratch\nvec: how to prepare soil and plant vegetables for beginners\nhyde: Choose a site with 6-8 hours of direct sunlight. Amend the soil with compost, till to 12 inches deep, and plant seedlings after the last frost date. Space rows 18-24 inches apart depending on the crop."}
+{"input": "how does existentialism view authenticity", "output": "lex: existentialism authenticity Sartre Heidegger\nlex: authentic existence existentialist philosophy\nvec: what does authenticity mean in existentialist philosophy\nvec: how do existentialist thinkers define living an authentic life\nhyde: For Sartre, authenticity means acknowledging radical freedom and refusing bad faith—the self-deception of pretending our choices are determined by external forces. Heidegger's Eigentlichkeit calls us to own our finitude rather than losing ourselves in das Man."}
+{"input": "what is the great depression", "output": "lex: Great Depression 1929 economic collapse\nlex: Great Depression causes unemployment stock market crash\nvec: what caused the Great Depression and how did it affect the economy\nvec: what were the major events and consequences of the Great Depression in the 1930s\nhyde: The Great Depression began with the stock market crash of October 1929 and lasted until the late 1930s. Unemployment peaked at 25%, thousands of banks failed, and GDP fell by nearly 30%. The New Deal introduced federal relief programs."}
+{"input": "what is the international court of justice", "output": "lex: International Court of Justice ICJ United Nations\nlex: ICJ jurisdiction Hague rulings\nvec: what is the purpose and function of the International Court of Justice\nvec: how does the ICJ at The Hague resolve disputes between countries\nhyde: The International Court of Justice (ICJ) is the principal judicial organ of the United Nations, located in The Hague, Netherlands. It settles legal disputes between states and gives advisory opinions on questions referred by UN organs."}
+{"input": "what is influencer marketing", "output": "lex: influencer marketing social media brand promotion\nlex: influencer campaigns Instagram TikTok sponsorship\nvec: how does influencer marketing work for promoting brands on social media\nvec: what is influencer marketing and why do companies pay content creators\nhyde: Influencer marketing is a strategy where brands partner with social media creators who have engaged followings to promote products. Campaigns may involve sponsored posts, affiliate links, or product reviews. ROI is measured through engagement rates, conversions, and reach."}
+{"input": "how to change a flat tire?", "output": "lex: change flat tire steps jack lug nuts\nlex: flat tire replacement spare wheel\nvec: step-by-step instructions for changing a flat tire on the side of the road\nvec: how to safely jack up a car and replace a flat tire with the spare\nhyde: Loosen the lug nuts before jacking. Place the jack under the frame near the flat tire, raise the vehicle, remove the lug nuts, swap in the spare, hand-tighten the nuts in a star pattern, lower the car, then torque to 80-100 ft-lbs."}
+{"input": "what is the significance of the lotus in buddhism?", "output": "lex: lotus flower Buddhism symbolism\nlex: lotus Buddhist enlightenment purity\nvec: why is the lotus flower an important symbol in Buddhism\nvec: what does the lotus represent in Buddhist art and teachings\nhyde: The lotus grows from muddy water yet blooms immaculately, symbolizing the journey from suffering to enlightenment. In Buddhist iconography, the Buddha is often depicted seated on a lotus throne, representing purity of mind arising from the world of samsara."}
+{"input": "code lint", "output": "lex: code linter static analysis\nlex: linting tools ESLint Pylint code quality\nlex: lint rules syntax errors warnings\nvec: what is code linting and how do linting tools check source code for errors\nvec: how to set up a code linter for catching bugs and enforcing style rules\nhyde: A linter performs static analysis on source code to detect syntax errors, stylistic issues, and potential bugs without executing the program. Popular linters include ESLint for JavaScript, Pylint for Python, and Clippy for Rust."}
+{"input": "what is content marketing", "output": "lex: content marketing strategy blog SEO\nlex: content marketing audience engagement brand\nvec: what is content marketing and how does it attract customers\nvec: how do businesses use content marketing to drive traffic and build trust\nhyde: Content marketing focuses on creating and distributing valuable, relevant content—blog posts, videos, podcasts, whitepapers—to attract and retain a target audience. Rather than directly promoting a product, it builds authority and nurtures leads through the sales funnel."}
+{"input": "what is the meaning of hanukkah", "output": "lex: Hanukkah meaning Jewish festival of lights\nlex: Hanukkah menorah Maccabees temple rededication\nvec: what is the history and significance of Hanukkah in Judaism\nvec: why do Jewish people celebrate Hanukkah and what does it commemorate\nhyde: Hanukkah commemorates the rededication of the Second Temple in Jerusalem after the Maccabean revolt against the Seleucid Empire in 164 BCE. The miracle of the oil—one day's supply lasting eight days—is celebrated by lighting the menorah each night."}
+{"input": "what is existential angst", "output": "lex: existential angst anxiety Kierkegaard\nlex: existential dread absurdity freedom\nvec: what does existential angst mean in philosophy\nvec: how do existentialist philosophers describe the feeling of existential anxiety\nhyde: Existential angst, or Angst, is the deep anxiety that arises from confronting freedom, mortality, and the absence of inherent meaning. Kierkegaard described it as the dizziness of freedom; Heidegger linked it to awareness of one's Being-toward-death."}
+{"input": "how to style open shelves", "output": "lex: open shelf styling tips decor\nlex: kitchen open shelving arrangement display\nvec: how to arrange and decorate open shelves so they look good\nvec: what are tips for styling open shelves in a kitchen or living room\nhyde: Group items in odd numbers and vary heights. Mix functional pieces like dishes with decorative objects like plants or small art. Leave 30% of the shelf empty to avoid clutter. Use a consistent color palette to tie everything together."}
+{"input": "linkedin profile", "output": "lex: LinkedIn profile optimization headline\nlex: LinkedIn profile tips summary photo\nlex: LinkedIn profile writing professional\nvec: how to create an effective LinkedIn profile that attracts recruiters\nvec: what should you include in your LinkedIn profile headline and summary\nhyde: Your LinkedIn headline should go beyond your job title—include keywords and your value proposition. Use the summary section to tell your professional story in first person. Add a professional headshot; profiles with photos get 21x more views."}
+{"input": "what are the benefits of yoga", "output": "lex: yoga benefits health flexibility stress\nlex: yoga physical mental health advantages\nvec: what are the physical and mental health benefits of practicing yoga regularly\nvec: how does yoga improve flexibility, strength, and stress levels\nhyde: Regular yoga practice improves flexibility, builds core strength, and lowers cortisol levels. Studies show it reduces chronic back pain, lowers blood pressure, and decreases symptoms of anxiety and depression. Even 20 minutes daily produces measurable benefits."}
+{"input": "what is virtue ethics", "output": "lex: virtue ethics Aristotle character moral\nlex: virtue ethics eudaimonia moral philosophy\nvec: what is virtue ethics and how does it differ from other moral theories\nvec: how does Aristotle's virtue ethics define moral character and the good life\nhyde: Virtue ethics, rooted in Aristotle's Nicomachean Ethics, holds that morality centers on developing virtuous character traits—courage, temperance, justice, prudence—rather than following rules or calculating consequences. The goal is eudaimonia, or human flourishing."}
+{"input": "how to calculate carbon emissions?", "output": "lex: carbon emissions calculation formula CO2\nlex: carbon footprint calculator methodology\nvec: how do you calculate the carbon emissions from energy use and transportation\nvec: what formulas and data are used to measure carbon dioxide emissions\nhyde: To calculate CO2 emissions, multiply the activity data (e.g., kWh of electricity, liters of fuel) by the appropriate emission factor. For gasoline: 2.31 kg CO2 per liter burned. For grid electricity, use the regional emission factor, typically 0.3-0.9 kg CO2/kWh."}
+{"input": "how to start rock climbing", "output": "lex: rock climbing beginner indoor gym\nlex: rock climbing gear shoes harness belay\nvec: how to get started with rock climbing as a complete beginner\nvec: what equipment and skills do beginners need for indoor rock climbing\nhyde: Start at an indoor climbing gym where you can rent shoes and a harness. Take a belay certification class to learn rope handling. Begin on easy routes graded V0-V1 for bouldering or 5.6-5.8 for top-rope. Focus on footwork over arm strength."}
+{"input": "how to create a moon garden?", "output": "lex: moon garden white flowers night-blooming plants\nlex: moon garden design layout fragrant plants\nvec: how to plan and plant a garden designed to be enjoyed at night\nvec: what plants and flowers work best in a moon garden\nhyde: A moon garden features white and pale-colored flowers, silver foliage, and night-blooming plants that glow under moonlight. Include moonflower (Ipomoea alba), white nicotiana, night-blooming jasmine, dusty miller, and lamb's ear. Add light-colored gravel paths for reflection."}
+{"input": "what is the significance of the bildungsroman?", "output": "lex: bildungsroman coming-of-age novel literary genre\nlex: bildungsroman significance literature examples\nvec: what is a bildungsroman and why is it an important literary genre\nvec: how does the bildungsroman novel trace a character's growth and development\nhyde: The bildungsroman, or coming-of-age novel, follows a protagonist's psychological and moral development from youth to adulthood. Examples include Goethe's Wilhelm Meister, Dickens' Great Expectations, and Joyce's A Portrait of the Artist as a Young Man."}
+{"input": "what is moral behavior", "output": "lex: moral behavior ethics right wrong conduct\nlex: moral behavior definition philosophy psychology\nvec: what defines moral behavior and how do people distinguish right from wrong\nvec: what is moral behavior according to ethics and psychology\nhyde: Moral behavior refers to actions that conform to standards of right conduct within a society or ethical framework. It involves making choices that consider the well-being of others, guided by principles such as fairness, honesty, empathy, and respect for autonomy."}
+{"input": "how to use a rototiller?", "output": "lex: rototiller operation tilling soil garden\nlex: rototiller how to use depth settings\nvec: step-by-step instructions for using a rototiller to prepare garden soil\nvec: how to operate a rototiller safely and effectively\nhyde: Set the tilling depth to 6-8 inches for new beds. Walk slowly and let the tines do the work—don't force it forward. Make overlapping passes in parallel rows. Avoid tilling wet soil, which creates compaction. Clean tines after each use."}
+{"input": "how to build a greenhouse?", "output": "lex: greenhouse build DIY construction plans\nlex: greenhouse frame polycarbonate panels foundation\nvec: how to build a small greenhouse in your backyard step by step\nvec: what materials and design are needed to construct a DIY greenhouse\nhyde: Start with a level foundation of treated lumber or concrete blocks. Build the frame from galvanized steel or cedar. Cover with 8mm twin-wall polycarbonate panels, which insulate better than glass. Include ridge vents for airflow and a door on the south-facing end."}
+{"input": "how to handle sibling rivalry?", "output": "lex: sibling rivalry parenting tips conflict\nlex: sibling fighting jealousy children strategies\nvec: how can parents manage sibling rivalry and reduce fighting between children\nvec: what strategies help siblings get along and resolve conflicts\nhyde: Avoid comparing siblings or taking sides. Acknowledge each child's feelings before mediating. Teach conflict resolution skills: use I-statements, take turns speaking, and brainstorm solutions together. Spend one-on-one time with each child to reduce jealousy."}
+{"input": "how to polish car paint?", "output": "lex: car paint polish compound buffing\nlex: auto paint polishing scratch removal swirl marks\nvec: how to polish car paint to remove scratches and restore shine\nvec: what is the correct technique for machine polishing automotive paint\nhyde: Wash and clay bar the surface first. Apply a small amount of polishing compound to a foam pad on a dual-action polisher. Work in 2x2 foot sections at 1200-1500 RPM with medium pressure. Wipe residue with a microfiber towel, then apply sealant or wax."}
+{"input": "what is intrinsic value", "output": "lex: intrinsic value philosophy ethics\nlex: intrinsic value stock valuation finance\nvec: what does intrinsic value mean in philosophy and in finance\nvec: how is intrinsic value defined as something valuable in itself regardless of consequences\nhyde: In philosophy, intrinsic value is the worth something has in itself, independent of its usefulness. Kant argued that rational beings have intrinsic value as ends in themselves. In finance, intrinsic value refers to the calculated true worth of an asset based on fundamentals."}
+{"input": "how to get rid of weeds naturally", "output": "lex: natural weed killer organic herbicide\nlex: remove weeds without chemicals mulch vinegar\nvec: what are natural methods for killing and preventing weeds in a garden\nvec: how to get rid of weeds without using chemical herbicides\nhyde: Apply a 3-4 inch layer of mulch to suppress weed growth. Pour boiling water directly on weeds in cracks. Spray a mixture of white vinegar, salt, and dish soap on foliage in full sun. Hand-pull weeds after rain when roots come out easily."}
+{"input": "what is the concept of original sin", "output": "lex: original sin Christian theology Adam Eve\nlex: original sin doctrine fall of man\nvec: what is original sin in Christian theology and where does the idea come from\nvec: how does the concept of original sin explain human nature in Christianity\nhyde: Original sin is the Christian doctrine that humanity inherited a sinful nature from Adam and Eve's disobedience in the Garden of Eden. Augustine of Hippo formalized the teaching, arguing that all humans are born in a state of sin, redeemable only through divine grace."}
+{"input": "how to build a successful brand", "output": "lex: brand building strategy identity positioning\nlex: brand identity logo messaging target audience\nvec: what steps are needed to build a strong and recognizable brand\nvec: how do companies create a successful brand identity and positioning\nhyde: Define your brand's mission, values, and target audience. Develop a distinctive visual identity—logo, color palette, typography. Craft a consistent brand voice across all channels. Differentiate with a clear value proposition and deliver on your brand promise consistently."}
+{"input": "what are the teachings of the baha'i faith?", "output": "lex: Baha'i faith teachings principles Baha'u'llah\nlex: Baha'i beliefs unity humanity religion\nvec: what are the core beliefs and teachings of the Baha'i faith\nvec: what did Baha'u'llah teach about unity, equality, and world peace\nhyde: The Baha'i faith, founded by Baha'u'llah in 19th-century Persia, teaches the oneness of God, the oneness of religion, and the oneness of humanity. Core principles include elimination of prejudice, equality of men and women, universal education, and harmony of science and religion."}
+{"input": "how to potty train a toddler?", "output": "lex: potty training toddler tips methods\nlex: toddler toilet training readiness signs\nvec: how to potty train a toddler and what are the signs of readiness\nvec: what is the best approach to potty training a 2-year-old child\nhyde: Watch for readiness signs: staying dry for 2 hours, showing interest in the toilet, and communicating the need to go. Start with a child-sized potty, establish a routine after meals and naps, use positive reinforcement, and expect accidents—avoid punishment."}
+{"input": "how to reduce waste in everyday life?", "output": "lex: reduce waste zero waste lifestyle tips\nlex: waste reduction recycling composting reuse\nvec: what are practical ways to reduce household waste in daily life\nvec: how can individuals cut down on trash and move toward zero waste living\nhyde: Bring reusable bags, bottles, and containers when shopping. Buy in bulk to reduce packaging. Compost food scraps instead of sending them to landfill. Choose products with minimal packaging, repair items before replacing, and donate what you no longer need."}
+{"input": "how international relations affect trade", "output": "lex: international relations trade policy tariffs\nlex: geopolitics trade agreements bilateral multilateral\nvec: how do international political relationships influence global trade and tariffs\nvec: what is the connection between diplomacy and international trade policy\nhyde: Diplomatic relations directly shape trade flows through tariffs, sanctions, and trade agreements. Countries with strong bilateral ties negotiate favorable terms—like the USMCA between the US, Mexico, and Canada—while geopolitical tensions can trigger trade wars and export controls."}
+{"input": "what is business continuity planning", "output": "lex: business continuity planning BCP disaster recovery\nlex: BCP risk assessment contingency plan\nvec: what is a business continuity plan and why do organizations need one\nvec: how do companies create a business continuity plan for disaster recovery\nhyde: Business continuity planning (BCP) ensures an organization can maintain critical functions during and after a disruption. It includes risk assessment, identifying essential operations, establishing recovery time objectives, and defining procedures for communication, IT recovery, and alternate work sites."}
+{"input": "how to have a successful playdate?", "output": "lex: playdate tips children toddler socializing\nlex: kids playdate activities hosting\nvec: how to plan and host a successful playdate for young children\nvec: what tips help make a playdate fun and smooth for kids and parents\nhyde: Keep playdates short—90 minutes is ideal for toddlers. Prepare a few structured activities but allow free play. Put away special toys to avoid conflicts. Have snacks ready, discuss allergies with the other parent beforehand, and supervise without hovering."}
+{"input": "what are the major forms of poetry?", "output": "lex: poetry forms types sonnet haiku epic\nlex: poetic forms verse structures literary\nvec: what are the main types and forms of poetry in literature\nvec: how do different poetry forms like sonnets, haiku, and free verse differ\nhyde: Major poetic forms include the sonnet (14 lines, iambic pentameter), haiku (3 lines, 5-7-5 syllables), epic (long narrative), ballad (storytelling with rhyme), ode (lyrical praise), limerick (humorous five-line form), villanelle (19 lines with refrains), and free verse (no fixed structure)."}
+{"input": "when to plant tulip bulbs?", "output": "lex: tulip bulbs planting time season fall\nlex: tulip bulb planting depth spacing\nvec: what time of year should you plant tulip bulbs for spring blooms\nvec: when is the best season to plant tulips and how deep should the bulbs go\nhyde: Plant tulip bulbs in fall, 6-8 weeks before the ground freezes—typically October to November in most zones. Set bulbs 6-8 inches deep, pointed end up, spaced 4-6 inches apart. They need a cold period of 12-16 weeks to bloom in spring."}
+{"input": "where to buy raised garden beds?", "output": "lex: raised garden beds buy online store\nlex: raised bed garden kits cedar metal\nvec: where can I buy raised garden beds and what materials are best\nvec: what are the best places to purchase raised bed garden kits\nhyde: Raised garden beds are available at Home Depot, Lowe's, and garden centers. Online retailers like Gardener's Supply, Amazon, and Birdies offer metal and cedar kits. Cedar is rot-resistant and long-lasting; galvanized steel beds are durable and modern-looking."}
+{"input": "how to plant a tree properly?", "output": "lex: tree planting technique hole depth root ball\nlex: plant tree correctly mulch watering\nvec: what is the correct way to plant a tree so it grows healthy\nvec: how deep and wide should the hole be when planting a new tree\nhyde: Dig a hole 2-3 times wider than the root ball but only as deep. Set the tree so the root flare sits at ground level. Backfill with native soil, water deeply, and apply 2-4 inches of mulch in a ring, keeping it away from the trunk to prevent rot."}
+{"input": "what is the role of enzymes in digestion", "output": "lex: enzymes digestion amylase protease lipase\nlex: digestive enzymes stomach intestine breakdown\nvec: how do enzymes help break down food during the digestive process\nvec: what role do specific enzymes like amylase and protease play in digestion\nhyde: Digestive enzymes catalyze the breakdown of macronutrients into absorbable units. Amylase in saliva and the pancreas breaks starch into sugars. Pepsin in the stomach cleaves proteins. Lipase from the pancreas breaks fats into fatty acids and glycerol in the small intestine."}
+{"input": "what to wear for rock climbing", "output": "lex: rock climbing clothing gear outfit\nlex: climbing shoes harness chalk bag apparel\nvec: what clothes and gear should you wear for indoor or outdoor rock climbing\nvec: what is the best clothing to wear when rock climbing for comfort and safety\nhyde: Wear stretchy, moisture-wicking pants or shorts that allow full range of motion. Choose a fitted athletic shirt—avoid loose fabric that catches on holds. Climbing shoes should fit snugly. Bring a chalk bag for grip and a harness for roped routes."}
+{"input": "latest uses of bioinformatics in research", "output": "lex: bioinformatics research applications 2025 2026\nlex: bioinformatics genomics proteomics computational biology\nvec: how is bioinformatics being used in current scientific research\nvec: what are the newest bioinformatics tools and applications in genomics and drug discovery\nhyde: Recent bioinformatics advances include single-cell RNA sequencing analysis pipelines, AlphaFold-based protein structure prediction for drug targets, CRISPR off-target analysis algorithms, and large-scale metagenomic assembly for microbiome studies."}
+{"input": "how the scientific community addresses research bias", "output": "lex: research bias scientific community peer review\nlex: scientific bias mitigation replication reproducibility\nvec: how do scientists identify and reduce bias in research studies\nvec: what methods does the scientific community use to address research bias and ensure reproducibility\nhyde: To combat research bias, journals require pre-registration of study protocols, blinded peer review, and reporting of negative results. Replication studies verify findings. Statistical safeguards like p-value corrections and effect size reporting reduce publication bias."}
+{"input": "what is ethical dilemma in real life", "output": "lex: ethical dilemma real life examples\nlex: moral dilemma everyday situations conflict\nvec: what are examples of ethical dilemmas people face in everyday life\nvec: how do real-life ethical dilemmas force people to choose between conflicting values\nhyde: A common ethical dilemma is discovering a coworker falsifying expense reports—report them and risk the relationship, or stay silent and condone dishonesty. Other examples include whistleblowing, end-of-life medical decisions, and allocating scarce resources during emergencies."}
+{"input": "best techniques for street photography", "output": "lex: street photography techniques composition tips\nlex: street photography candid camera settings\nvec: what are the best techniques for capturing compelling street photographs\nvec: how do street photographers take candid shots of people in public spaces\nhyde: Shoot at f/8 for deep depth of field and zone focus at 3 meters for quick candid shots. Use a 28mm or 35mm lens. Anticipate moments—find good light or backgrounds and wait for subjects to enter the frame. Shoot from the hip to stay inconspicuous."}
+{"input": "how to become a researcher", "output": "lex: become researcher academic career path\nlex: research career PhD graduate school publish\nvec: what steps do you need to take to become a professional researcher\nvec: how do you build a career in academic or scientific research\nhyde: Start with an undergraduate degree in your field, seek research assistant positions, and publish early. Apply to graduate programs for a master's or PhD. Build a publication record, attend conferences, and network with established researchers. Postdoctoral positions lead to faculty or industry research roles."}
+{"input": "web socket", "output": "lex: WebSocket protocol real-time connection\nlex: WebSocket API JavaScript server client\nlex: WebSocket vs HTTP persistent connection\nvec: how do WebSockets work for real-time bidirectional communication\nvec: how to implement a WebSocket connection between a client and server\nhyde: WebSocket provides full-duplex communication over a single TCP connection. After an HTTP upgrade handshake, client and server can send messages in both directions without polling. Use `new WebSocket('ws://host/path')` on the client and a library like ws on the server."}
+{"input": "what is lean manufacturing", "output": "lex: lean manufacturing Toyota production system\nlex: lean manufacturing waste reduction kaizen\nvec: what is lean manufacturing and what principles does it follow\nvec: how does lean manufacturing eliminate waste and improve production efficiency\nhyde: Lean manufacturing, derived from the Toyota Production System, aims to minimize waste (muda) while maximizing value. Its five principles: define value from the customer's perspective, map the value stream, create flow, establish pull, and pursue perfection through continuous improvement (kaizen)."}
+{"input": "what are writing prompts?", "output": "lex: writing prompts creative fiction ideas\nlex: writing prompts exercises journal story starters\nvec: what are writing prompts and how do writers use them for inspiration\nvec: how do writing prompts help overcome writer's block and spark creativity\nhyde: Writing prompts are short scenarios, questions, or opening lines designed to spark creative writing. Examples: \"Write about a door that appeared overnight\" or \"Describe your earliest memory from a stranger's perspective.\" They help overcome writer's block and build a daily writing habit."}
+{"input": "how to capture bokeh effect", "output": "lex: bokeh effect photography aperture lens\nlex: bokeh background blur shallow depth of field\nvec: how to achieve a bokeh effect with blurred background in photography\nvec: what camera settings and lenses produce the best bokeh\nhyde: Use a wide aperture (f/1.4 to f/2.8) to create shallow depth of field. A fast prime lens like a 50mm f/1.8 or 85mm f/1.4 produces smooth bokeh. Increase the distance between subject and background, and get close to your subject for maximum blur."}
+{"input": "what is a controlled experiment", "output": "lex: controlled experiment scientific method variables\nlex: control group experimental group independent variable\nvec: what is a controlled experiment and how does it work in science\nvec: how do scientists set up control and experimental groups in a controlled experiment\nhyde: A controlled experiment tests a hypothesis by changing one independent variable while keeping all other conditions constant. The control group receives no treatment, while the experimental group does. Comparing outcomes isolates the effect of the variable being tested."}
+{"input": "what is telemedicine", "output": "lex: telemedicine telehealth virtual doctor visit\nlex: telemedicine remote healthcare video consultation\nvec: what is telemedicine and how does it deliver healthcare remotely\nvec: how do patients use telemedicine for virtual doctor appointments\nhyde: Telemedicine uses video calls, phone consultations, and remote monitoring to deliver healthcare without in-person visits. Patients can consult doctors from home for diagnoses, prescriptions, and follow-ups. It expanded rapidly during COVID-19 and now covers specialties from dermatology to psychiatry."}
+{"input": "what are the teachings of jainism", "output": "lex: Jainism teachings principles ahimsa karma\nlex: Jain philosophy non-violence Mahavira\nvec: what are the core teachings and beliefs of Jainism\nvec: what did Mahavira teach about non-violence and the path to liberation in Jainism\nhyde: Jainism, taught by Mahavira in the 6th century BCE, centers on ahimsa (non-violence), satya (truth), and aparigraha (non-attachment). Jains believe the soul is eternal, bound by karma accumulated through actions. Liberation (moksha) is achieved through right faith, right knowledge, and right conduct."}
+{"input": "what is sustainable living", "output": "lex: sustainable living eco-friendly lifestyle\nlex: sustainable living reduce reuse recycle carbon footprint\nvec: what does sustainable living mean and how can people practice it\nvec: what are the key principles and habits of a sustainable lifestyle\nhyde: Sustainable living means reducing your environmental impact by consuming fewer resources, choosing renewable energy, eating locally, minimizing waste, and favoring durable goods over disposable ones. It applies to housing, transportation, food, clothing, and daily consumption habits."}
+{"input": "xml parse", "output": "lex: XML parser parsing library\nlex: XML DOM SAX parser programming\nlex: XML parse Python JavaScript Java\nvec: how to parse XML documents programmatically in different languages\nvec: what are the common methods for reading and parsing XML files in code\nhyde: To parse XML in Python, use `xml.etree.ElementTree`: `tree = ET.parse('file.xml'); root = tree.getroot()`. For streaming large files, use SAX with `xml.sax`. In JavaScript, use `DOMParser` or libraries like `fast-xml-parser`."}
+{"input": "how does compound interest work", "output": "lex: compound interest formula calculation rate\nlex: compound interest savings investment growth\nvec: how does compound interest grow money over time compared to simple interest\nvec: what is the formula for compound interest and how is it calculated\nhyde: Compound interest is calculated on both the principal and accumulated interest. The formula is A = P(1 + r/n)^(nt), where P is principal, r is annual rate, n is compounding frequency, and t is time in years. Monthly compounding on $10,000 at 5% yields $16,470 after 10 years."}
+{"input": "what is the role of reason in ethics", "output": "lex: reason ethics moral philosophy rationalism\nlex: reason morality Kant rational ethical judgment\nvec: what role does reason play in making moral and ethical decisions\nvec: how do philosophers like Kant argue that reason is the foundation of ethics\nhyde: Kant held that reason alone can determine moral duty through the categorical imperative: act only according to maxims you could universalize. Rationalist ethics contrasts with sentimentalism (Hume), which grounds morality in emotion rather than rational deliberation."}
+{"input": "videography tips", "output": "lex: videography tips filming techniques camera\nlex: video production shooting composition stabilization\nvec: what are practical tips for improving videography and video shooting quality\nvec: how to shoot better video with camera movement, lighting, and composition techniques\nhyde: Stabilize shots with a gimbal or tripod. Follow the rule of thirds for framing. Shoot at 24fps for cinematic feel or 60fps for smooth slow motion. Use three-point lighting. Record clean audio separately with a lavalier or shotgun mic—audio quality matters more than resolution."}
+{"input": "how to choose a daycare?", "output": "lex: daycare choose selection criteria childcare\nlex: daycare center evaluation safety ratio\nvec: what should parents look for when choosing a daycare for their child\nvec: how to evaluate and compare daycare centers for quality and safety\nhyde: Visit multiple centers and observe interactions between staff and children. Check the staff-to-child ratio (1:4 for infants is ideal), licensing status, cleanliness, and safety measures. Ask about daily routines, curriculum, discipline policies, and staff qualifications and turnover."}
+{"input": "how to replace car alternator?", "output": "lex: replace car alternator DIY steps\nlex: alternator replacement belt removal installation\nvec: step-by-step instructions for replacing a car alternator yourself\nvec: how to remove and install a new alternator in a vehicle\nhyde: Disconnect the negative battery terminal. Remove the serpentine belt by releasing the tensioner. Unplug the electrical connectors and unbolt the alternator. Install the new unit, reconnect the wiring, route the belt back on, and reconnect the battery. Test by checking voltage at 13.5-14.5V."}
+{"input": "how to create a youtube channel", "output": "lex: create YouTube channel setup steps\nlex: YouTube channel start grow subscribers content\nvec: how to set up and launch a new YouTube channel from scratch\nvec: what steps do you need to take to create and grow a YouTube channel\nhyde: Sign in to YouTube with a Google account, click Create a Channel, and choose your channel name. Upload a profile picture and banner. Write a channel description with keywords. Plan a content schedule, create your first video, and optimize titles, thumbnails, and tags for search."}
+{"input": "what is dualism in mind-body philosophy", "output": "lex: mind-body dualism Descartes substance\nlex: dualism philosophy of mind mental physical\nvec: what is mind-body dualism and how does Descartes explain the relationship between mind and body\nvec: how does dualism in philosophy argue that mind and body are separate substances\nhyde: Cartesian dualism, proposed by René Descartes, holds that mind and body are two distinct substances: res cogitans (thinking substance) and res extensa (extended substance). The mind is non-physical and conscious; the body is physical and mechanistic. Their interaction remains the central problem."}
+{"input": "what is cliffhanger?", "output": "lex: cliffhanger literary device narrative suspense\nlex: cliffhanger ending story plot tension\nvec: what is a cliffhanger in storytelling and how does it create suspense\nvec: how do writers use cliffhangers to keep readers or viewers engaged\nhyde: A cliffhanger is a narrative device that ends a chapter, episode, or story at a moment of high suspense, leaving the outcome unresolved. It compels the audience to continue reading or watching. The term originates from serialized fiction where characters were literally left hanging from cliffs."}
+{"input": "how to volunteer for civic initiatives", "output": "lex: volunteer civic initiatives community service\nlex: volunteering local government community projects\nvec: how can someone find and volunteer for civic engagement and community initiatives\nvec: what are ways to get involved in local civic volunteer opportunities\nhyde: Check your city's website or community board for volunteer openings on advisory committees, park cleanups, and voter registration drives. Organizations like VolunteerMatch and local nonprofits connect volunteers with civic projects. Attend town hall meetings to learn about current needs."}
+{"input": "how does hinduism view the divine cycle of creation?", "output": "lex: Hinduism creation cycle Brahma Vishnu Shiva\nlex: Hindu cosmology srishti sthiti pralaya\nvec: how does Hinduism explain the cosmic cycle of creation, preservation, and destruction\nvec: what is the Hindu view of the divine cycle involving Brahma, Vishnu, and Shiva\nhyde: In Hindu cosmology, creation is cyclical. Brahma creates the universe, Vishnu preserves it, and Shiva destroys it so it can be reborn. Each cycle spans a kalpa (4.32 billion years). The universe undergoes endless cycles of srishti (creation), sthiti (preservation), and pralaya (dissolution)."}
+{"input": "what is consequentialist ethics", "output": "lex: consequentialism ethics utilitarianism outcomes\nlex: consequentialist moral theory consequences actions\nvec: what is consequentialist ethics and how does it judge the morality of actions\nvec: how does consequentialism differ from deontological ethics in evaluating right and wrong\nhyde: Consequentialism judges actions solely by their outcomes. The most influential form, utilitarianism (Bentham, Mill), holds that the right action maximizes overall happiness or well-being. Unlike deontology, which focuses on duties and rules, consequentialism permits any action if the results are good."}
+{"input": "how to promote environmental awareness?", "output": "lex: environmental awareness promotion education campaigns\nlex: promote environmental sustainability community outreach\nvec: how can individuals and organizations promote environmental awareness in their communities\nvec: what are effective strategies for raising public awareness about environmental issues\nhyde: Organize community cleanups, host documentary screenings, and partner with schools for environmental education programs. Use social media campaigns with clear calls to action. Start a local recycling or composting initiative. Create informational signage at parks and public spaces."}
+{"input": "how to practice self-love", "output": "lex: self-love self-care practices mental health\nlex: self-love habits self-compassion boundaries\nvec: what are practical ways to practice self-love and self-compassion daily\nvec: how to build self-love through healthy habits and positive self-talk\nhyde: Practice self-love by setting boundaries, speaking to yourself with kindness, and prioritizing rest without guilt. Journal about what you appreciate about yourself. Replace self-criticism with curiosity: ask \"what do I need right now?\" instead of \"what's wrong with me?\""}
+{"input": "what is companion planting with vegetables", "output": "lex: companion planting vegetables garden chart\nlex: companion planting tomato basil marigold\nvec: what is companion planting and which vegetables grow well together\nvec: how does companion planting benefit vegetable gardens and deter pests\nhyde: Companion planting pairs vegetables that benefit each other. Basil planted near tomatoes repels aphids and may improve flavor. Marigolds deter nematodes around most vegetables. The Three Sisters—corn, beans, and squash—is a classic trio: corn supports beans, beans fix nitrogen, squash shades soil."}
+{"input": "how to set achievable goals?", "output": "lex: set achievable goals SMART goal setting\nlex: goal setting strategy actionable realistic\nvec: how to set realistic and achievable goals using the SMART framework\nvec: what techniques help people set goals they can actually accomplish\nhyde: Use the SMART framework: Specific (define exactly what you want), Measurable (quantify progress), Achievable (within your capabilities), Relevant (aligned with larger objectives), Time-bound (set a deadline). Break large goals into weekly milestones and track progress visually."}
+{"input": "how do scientists study animal behavior", "output": "lex: animal behavior study ethology methods\nlex: animal behavior research observation field experiments\nvec: what methods do scientists use to study and analyze animal behavior\nvec: how do ethologists observe and research animal behavior in the wild and in labs\nhyde: Ethologists use direct observation, video tracking, and GPS telemetry to study animal behavior in natural habitats. Lab experiments control variables to test hypotheses about cognition and social behavior. Focal sampling follows one individual; scan sampling records group behavior at intervals."}
+{"input": "how to maintain motivation through challenges?", "output": "lex: maintain motivation challenges resilience\nlex: staying motivated difficult times strategies\nvec: how to stay motivated when facing setbacks and difficult challenges\nvec: what strategies help maintain motivation during tough periods in life or work\nhyde: Break the challenge into small wins to maintain a sense of progress. Revisit your original purpose—why did you start? Celebrate incremental achievements. Build accountability through a partner or group. Accept setbacks as data rather than failure, and adjust your approach rather than your goal."}
+{"input": "what is the philosophy of mind", "output": "lex: philosophy of mind consciousness mental states\nlex: philosophy of mind problem qualia dualism physicalism\nvec: what is the philosophy of mind and what questions does it explore\nvec: how does philosophy of mind address consciousness, mental states, and the mind-body problem\nhyde: Philosophy of mind investigates the nature of consciousness, mental states, and their relationship to the physical brain. Central questions include the hard problem of consciousness (why subjective experience exists), whether mental states reduce to brain states, and the nature of intentionality and qualia."}
+{"input": "enum class", "output": "lex: enum class C++ Java strongly typed\nlex: enum class Python enumeration members\nlex: enum class scoped enumeration\nvec: how to define and use enum classes in C++ or Java for type-safe enumerations\nvec: what is the difference between an enum and an enum class in C++\nhyde: In C++11, `enum class` creates a scoped, strongly typed enumeration. Unlike plain enums, values don't implicitly convert to int and must be accessed with the scope operator: `enum class Color { Red, Green, Blue }; Color c = Color::Red;`"}
+{"input": "how to sell art on etsy?", "output": "lex: sell art Etsy shop setup listing\nlex: Etsy art shop pricing shipping prints\nvec: how to set up an Etsy shop to sell original art and prints\nvec: what tips help artists successfully sell artwork on Etsy\nhyde: Create an Etsy seller account and set up your shop with a clear brand name and banner. Photograph art in natural light with a neutral background. Write detailed listings with keywords buyers search for. Price to cover materials, time, Etsy fees (6.5%), and shipping. Offer prints alongside originals."}
+{"input": "what is virtue epistemology", "output": "lex: virtue epistemology intellectual virtues knowledge\nlex: virtue epistemology Sosa Zagzebski epistemic\nvec: what is virtue epistemology and how does it differ from traditional theories of knowledge\nvec: how does virtue epistemology evaluate knowledge based on intellectual character traits\nhyde: Virtue epistemology evaluates beliefs based on the intellectual character of the knower rather than just the properties of the belief. Ernest Sosa's reliabilism treats virtues as reliable cognitive faculties; Linda Zagzebski's responsibilism focuses on traits like open-mindedness, intellectual courage, and thoroughness."}
+{"input": "what is ethical egoism", "output": "lex: ethical egoism moral theory self-interest\nlex: ethical egoism Ayn Rand rational selfishness\nvec: what is ethical egoism and how does it differ from psychological egoism\nvec: how does ethical egoism argue that acting in self-interest is morally right\nhyde: Ethical egoism holds that agents ought to act in their own self-interest. Unlike psychological egoism (a descriptive claim that people always act selfishly), ethical egoism is normative—it prescribes self-interest as the moral standard. Ayn Rand's rational self-interest is a well-known variant."}
+{"input": "tech fix", "output": "lex: tech troubleshooting fix repair computer\nlex: technology fix common problems software hardware\nlex: tech support fix device issue\nvec: how to troubleshoot and fix common technology problems with computers and devices\nvec: what are basic tech fixes for common software and hardware issues\nhyde: Start with a restart—it resolves most transient issues. Clear browser cache for web problems. Check cables and connections for hardware failures. Update drivers and firmware. For persistent crashes, check event logs and run diagnostics. Factory reset as a last resort after backing up data."}
+{"input": "how to evaluate scientific sources", "output": "lex: evaluate scientific sources credibility peer-reviewed\nlex: scientific source evaluation criteria journal\nvec: how to evaluate whether a scientific source or study is credible and reliable\nvec: what criteria should you use to assess the quality of scientific research papers\nhyde: Check if the study is published in a peer-reviewed journal with an impact factor. Examine the sample size, methodology, and statistical analysis. Look for conflicts of interest in funding disclosures. Verify the authors' credentials and institutional affiliations. Check citation count and whether results have been replicated."}
+{"input": "what is taoism", "output": "lex: Taoism Daoism Lao Tzu Tao Te Ching\nlex: Taoism philosophy wu wei yin yang\nvec: what are the core beliefs and principles of Taoism\nvec: what did Lao Tzu teach in the Tao Te Ching about the way and harmony with nature\nhyde: Taoism (Daoism) is a Chinese philosophical and spiritual tradition rooted in the Tao Te Ching by Lao Tzu. The Tao (\"the Way\") is the fundamental, nameless force underlying all things. Core concepts include wu wei (effortless action), yin-yang balance, simplicity, and harmony with nature."}
+{"input": "how neural networks function", "output": "lex: neural network layers neurons weights backpropagation\nlex: neural network deep learning forward pass activation\nvec: how do artificial neural networks process data and learn from training\nvec: what is the architecture and learning mechanism of a neural network\nhyde: A neural network processes input through layers of interconnected neurons. Each neuron computes a weighted sum of its inputs, applies an activation function (ReLU, sigmoid), and passes the result forward. Training uses backpropagation to adjust weights by computing gradients of the loss function."}
+{"input": "how to maintain a bonsai tree?", "output": "lex: bonsai tree care maintenance watering pruning\nlex: bonsai trimming repotting soil fertilizer\nvec: how to properly care for and maintain a bonsai tree at home\nvec: what are the watering, pruning, and soil requirements for bonsai trees\nhyde: Water bonsai when the top half-inch of soil feels dry—never on a schedule. Place in bright indirect light for indoor species or full sun for outdoor varieties. Prune new growth to maintain shape. Repot every 2-3 years in spring using well-draining akadama-based soil. Fertilize biweekly during growing season."}
+{"input": "what role does language play in philosophy", "output": "lex: language philosophy linguistic turn Wittgenstein\nlex: philosophy of language meaning reference semantics\nvec: what role does language play in philosophical inquiry and analysis\nvec: how did Wittgenstein and analytic philosophers view the relationship between language and thought\nhyde: The linguistic turn of the 20th century made language central to philosophy. Wittgenstein argued that philosophical problems arise from misunderstandings of language. Analytic philosophers examine how meaning, reference, and truth conditions work. Ordinary language philosophy holds that everyday usage resolves many metaphysical puzzles."}
+{"input": "how to fight pests organically", "output": "lex: organic pest control garden insects\nlex: organic pesticide neem oil insecticidal soap\nvec: how to control garden pests using organic and natural methods\nvec: what organic pest control methods work for vegetable gardens\nhyde: Spray neem oil or insecticidal soap to kill soft-bodied pests like aphids and whiteflies. Introduce beneficial insects: ladybugs eat aphids, parasitic wasps target caterpillars. Use row covers to physically exclude pests. Apply diatomaceous earth around plant bases for slugs and beetles."}
+{"input": "what is the role of research institutions", "output": "lex: research institutions universities role science\nlex: research institutions funding labs innovation\nvec: what role do research institutions and universities play in advancing science\nvec: how do research institutions contribute to knowledge creation and innovation\nhyde: Research institutions—universities, government labs, and private research organizations—drive scientific progress through funded investigations, peer-reviewed publications, and training of new researchers. They provide infrastructure (labs, equipment, libraries), facilitate collaboration, and translate findings into real-world applications."}
+{"input": "what is narrative ethics", "output": "lex: narrative ethics storytelling moral philosophy\nlex: narrative ethics literature moral reasoning\nvec: what is narrative ethics and how does storytelling relate to moral understanding\nvec: how do narrative ethicists use stories and literature to explore moral questions\nhyde: Narrative ethics holds that moral understanding is shaped by the stories we tell and hear. Rather than abstract principles, it emphasizes particular cases and lived experience. Literature, patient narratives in medicine, and personal testimony illuminate moral complexity that rules-based ethics may miss."}
+{"input": "ai ops", "output": "lex: AIOps artificial intelligence IT operations\nlex: AIOps monitoring anomaly detection automation\nlex: AIOps MLOps machine learning operations\nvec: what is AIOps and how does AI improve IT operations management\nvec: how do AIOps platforms use machine learning for monitoring and incident response\nhyde: AIOps (Artificial Intelligence for IT Operations) applies machine learning to IT operations data—logs, metrics, events—to detect anomalies, predict outages, and automate incident response. Platforms like Datadog, Splunk, and Moogsoft correlate alerts to reduce noise and speed up root cause analysis."}
+{"input": "how to negotiate a business deal", "output": "lex: negotiate business deal tactics strategy\nlex: business negotiation skills contract terms\nvec: what are effective strategies for negotiating a business deal successfully\nvec: how to prepare for and conduct a business negotiation to reach a favorable agreement\nhyde: Prepare by researching the other party's priorities and constraints. Define your BATNA (best alternative to a negotiated agreement) and walk-away point. Open with an ambitious but defensible anchor. Listen more than you talk. Focus on interests, not positions, to find creative win-win solutions."}
+{"input": "how to protest peacefully", "output": "lex: peaceful protest demonstration rights organizing\nlex: nonviolent protest civil disobedience activism\nvec: how to organize and participate in a peaceful protest effectively\nvec: what are the principles and logistics of peaceful demonstration and nonviolent activism\nhyde: Know your rights: peaceful assembly is protected by the First Amendment. Organize with clear goals, designated marshals, and a planned route. Coordinate with local authorities for permits. Bring water, ID, and emergency contacts. Stay nonviolent, document with video, and have legal observers present."}
+{"input": "how to start oil painting?", "output": "lex: oil painting beginner supplies techniques\nlex: oil painting start canvas brushes paints medium\nvec: how to get started with oil painting as a beginner\nvec: what supplies and techniques do beginners need to start oil painting\nhyde: Start with a basic set of oil paints: titanium white, cadmium yellow, cadmium red, ultramarine blue, and burnt umber. Use medium-grade bristle brushes in sizes 4, 8, and 12. Work on pre-primed canvas. Thin early layers with odorless mineral spirits and use linseed oil for later layers (fat over lean)."}
+{"input": "what is the significance of archetypes?", "output": "lex: archetypes Carl Jung collective unconscious\nlex: archetypes significance literature psychology\nvec: what is the significance of archetypes in psychology and literature\nvec: how did Carl Jung define archetypes and why do they appear across cultures\nhyde: Carl Jung described archetypes as universal, inherited patterns in the collective unconscious—the Hero, the Shadow, the Trickster, the Great Mother. They recur across myths, dreams, and stories worldwide because they reflect fundamental human experiences and psychological structures shared by all cultures."}
+{"input": "how to mix colors in oil painting?", "output": "lex: oil painting color mixing palette technique\nlex: mix oil paint colors complementary warm cool\nvec: how to mix oil paint colors to achieve the right hues and values\nvec: what is the proper technique for blending and mixing colors in oil painting\nhyde: Mix on a glass or wood palette using a palette knife for clean blends. Start with the lighter color and add the darker one gradually. To mute a color, mix in its complement: add green to red, purple to yellow. Mix value (light/dark) separately from hue for better control."}
+{"input": "how do different religions define good and evil?", "output": "lex: good evil religion definition theology\nlex: good evil Christianity Islam Buddhism Hinduism\nvec: how do different world religions define and explain the concepts of good and evil\nvec: what are the religious perspectives on good versus evil across Christianity, Islam, Buddhism, and Hinduism\nhyde: Christianity frames evil as separation from God through sin, with goodness as alignment with divine will. Islam teaches that evil arises from disobeying Allah's commands. Buddhism sees evil as rooted in ignorance, greed, and hatred rather than a cosmic force. Hinduism links good and evil to dharma and karma."}
+{"input": "sail boat", "output": "lex: sailboat sailing types rigging\nlex: sailboat buy beginner learn to sail\nlex: sailboat parts hull keel mast\nvec: what are the different types of sailboats and how do they work\nvec: how to get started with sailboat sailing as a beginner\nhyde: Sailboats are propelled by wind acting on sails. Common types include dinghies (small, single-hull), keelboats (weighted keel for stability), catamarans (twin hulls), and sloops (single mast, fore-and-aft rigged). Key parts include the hull, mast, boom, jib, mainsail, rudder, and keel."}
+{"input": "how crispr technology works", "output": "lex: CRISPR Cas9 gene editing mechanism\nlex: CRISPR technology DNA guide RNA\nvec: how does CRISPR-Cas9 gene editing technology work at the molecular level\nvec: what is the mechanism by which CRISPR cuts and edits DNA sequences\nhyde: CRISPR-Cas9 uses a guide RNA (gRNA) complementary to the target DNA sequence. The gRNA directs the Cas9 nuclease to the precise genomic location, where it creates a double-strand break. The cell's repair machinery then either disrupts the gene (NHEJ) or inserts a new sequence (HDR) using a provided template."}
+{"input": "hair cut", "output": "lex: haircut styles men women trends\nlex: haircut salon barbershop near me\nlex: haircut techniques layered fade trim\nvec: what are the popular haircut styles and how to choose the right one\nvec: how to communicate what haircut you want to a stylist or barber\nhyde: Popular haircuts include the bob, pixie cut, and layers for women, and the fade, crew cut, and textured crop for men. Choose based on face shape: round faces suit angular cuts, long faces benefit from volume at the sides. Bring reference photos to your appointment for clear communication."}
+{"input": "how to develop an art portfolio?", "output": "lex: art portfolio development pieces selection\nlex: art portfolio presentation layout artist\nvec: how to build a strong art portfolio for school applications or professional work\nvec: what should an art portfolio include and how should it be organized\nhyde: Select 15-20 of your strongest, most cohesive pieces that demonstrate range and skill. Open and close with your best work. Show process sketches alongside finished pieces. Use consistent, high-quality photography. For digital portfolios, use platforms like Behance or a personal website with clean navigation."}
+{"input": "what is atmospheric science", "output": "lex: atmospheric science meteorology climate weather\nlex: atmospheric science atmosphere composition dynamics\nvec: what is atmospheric science and what topics does it study\nvec: how does atmospheric science explain weather, climate, and the Earth's atmosphere\nhyde: Atmospheric science studies the Earth's atmosphere—its composition, structure, and dynamics. Sub-fields include meteorology (weather forecasting), climatology (long-term patterns), atmospheric chemistry (ozone, pollutants), and atmospheric physics (radiation, cloud formation). It underpins weather prediction and climate change research."}
+{"input": "how to apply for a mortgage", "output": "lex: mortgage application process requirements\nlex: apply mortgage home loan pre-approval credit score\nvec: what are the steps to apply for a home mortgage loan\nvec: how to prepare your finances and documents to apply for a mortgage\nhyde: Check your credit score (aim for 620+, 740+ for best rates). Save for a down payment of 3-20%. Get pre-approved with a lender by submitting W-2s, pay stubs, bank statements, and tax returns. Compare rates from multiple lenders. Once you find a home, submit the full application and await underwriting."}
+{"input": "how to analyze political polls", "output": "lex: political poll analysis methodology\nlex: polling data interpretation margin error\nlex: election survey statistics\nvec: what methods are used to analyze and interpret political polling data\nvec: how to evaluate the accuracy and reliability of election polls\nvec: understanding margin of error and sample size in political surveys\nhyde: To analyze a political poll, start by examining the sample size, methodology, and margin of error. A poll of 1,000 likely voters with a ±3% margin means the true value falls within that range 95% of the time. Compare results across multiple polls using polling averages to reduce noise."}
+{"input": "how does the body maintain homeostasis", "output": "lex: homeostasis regulation human body\nlex: negative feedback loop physiology\nlex: body temperature pH blood glucose regulation\nvec: what mechanisms does the human body use to maintain internal stability\nvec: how do feedback loops help regulate body temperature and blood sugar levels\nhyde: The body maintains homeostasis through negative feedback loops. When blood glucose rises after a meal, the pancreas releases insulin, signaling cells to absorb glucose. When body temperature drops, the hypothalamus triggers shivering and vasoconstriction to conserve heat."}
+{"input": "how to transplant seedlings?", "output": "lex: transplant seedlings garden\nlex: seedling hardening off repotting\nlex: moving seedlings outdoors soil\nvec: what is the correct process for transplanting seedlings from pots into the garden\nvec: when and how should you harden off and transplant young plants outdoors\nhyde: Transplant seedlings after hardening them off for 7-10 days. Dig a hole slightly larger than the root ball, gently remove the seedling from its pot, and place it at the same depth it was growing. Water thoroughly and mulch around the base to retain moisture."}
+{"input": "how to interpret graphs and charts", "output": "lex: reading graphs charts data visualization\nlex: interpret bar line pie chart\nlex: graph axis scale data trends\nvec: how do you read and interpret different types of graphs and charts correctly\nvec: what should you look for when analyzing data presented in visual charts\nhyde: To interpret a graph, first read the title and axis labels to understand what is being measured. Identify the scale and units. For line charts, look at trends over time. For bar charts, compare heights across categories. Always check whether the y-axis starts at zero, as truncated axes can exaggerate differences."}
+{"input": "how to start a sketchbook?", "output": "lex: sketchbook practice beginner drawing\nlex: daily sketching habit art journal\nlex: first sketchbook tips supplies\nvec: how do beginners start and maintain a regular sketchbook practice\nvec: what supplies and techniques should you use when starting your first sketchbook\nhyde: Start your sketchbook by choosing a book with paper weight of at least 80gsm. Begin with simple observational drawings of everyday objects. Draw for 10-15 minutes daily without worrying about perfection. Use pencil, pen, or whatever feels comfortable. Date each page to track your progress."}
+{"input": "what are the main teachings of jainism?", "output": "lex: jainism core teachings principles\nlex: ahimsa anekantavada aparigraha jain\nlex: jain dharma beliefs nonviolence\nvec: what are the central beliefs and philosophical teachings of Jainism\nvec: how do Jain principles like ahimsa and anekantavada guide ethical living\nhyde: Jainism teaches three core principles: ahimsa (nonviolence toward all living beings), anekantavada (many-sidedness of truth), and aparigraha (non-attachment to possessions). The path to liberation involves the Three Jewels: right faith, right knowledge, and right conduct. Jains practice strict vegetarianism and asceticism."}
+{"input": "how to choose curtains for living room", "output": "lex: living room curtain selection fabric\nlex: curtain length style window treatment\nlex: drapes color pattern room decor\nvec: how do you choose the right curtains for a living room based on style and function\nvec: what curtain fabric length and color work best for different living room windows\nhyde: Choose curtains that hang 1-2 inches above the floor for a polished look. For a small living room, use light-colored sheer fabrics to maximize natural light. Mount the curtain rod 4-6 inches above the window frame and extend it 3-8 inches beyond each side to make windows appear larger."}
+{"input": "how to take macro photos", "output": "lex: macro photography technique close-up\nlex: macro lens focus stacking lighting\nlex: close-up photography camera settings\nvec: what camera settings and equipment do you need for macro photography\nvec: how to achieve sharp focus and good lighting in close-up macro shots\nhyde: For macro photography, use a dedicated macro lens (60mm or 100mm) or extension tubes. Set your aperture to f/8-f/16 for sufficient depth of field. Use a tripod and remote shutter to eliminate camera shake. Focus stacking—taking multiple shots at different focus distances—produces sharp images throughout the subject."}
+{"input": "how to write a query letter?", "output": "lex: query letter writing literary agent\nlex: book manuscript submission query format\nlex: query letter hook synopsis comp titles\nvec: how do you write an effective query letter to a literary agent for your novel\nvec: what structure and elements should a query letter include for book submissions\nhyde: A query letter has three paragraphs: the hook (a compelling one-sentence pitch), the mini-synopsis (250 words covering the protagonist, conflict, and stakes), and the bio (your credentials and comp titles). Address the agent by name, mention why you chose them, and keep the entire letter under one page."}
+{"input": "what are plasmids", "output": "lex: plasmid DNA circular extrachromosomal\nlex: plasmid bacteria gene transfer cloning\nlex: plasmid vector molecular biology\nvec: what are plasmids and what role do they play in bacterial genetics\nvec: how are plasmids used as vectors in molecular biology and genetic engineering\nhyde: Plasmids are small, circular, double-stranded DNA molecules found in bacteria that replicate independently of chromosomal DNA. They often carry genes for antibiotic resistance. In genetic engineering, plasmids serve as vectors to insert foreign genes into host cells for cloning and protein expression."}
+{"input": "how do scientists accurately measure time", "output": "lex: atomic clock time measurement precision\nlex: cesium clock seconds SI definition\nlex: timekeeping scientific instruments\nvec: how do atomic clocks and other instruments allow scientists to measure time with extreme precision\nvec: what is the scientific definition of a second and how is it measured\nhyde: The SI second is defined by the cesium-133 atom, which oscillates 9,192,631,770 times per second. Atomic clocks use this transition frequency to achieve accuracy within one second over millions of years. Optical lattice clocks using strontium atoms are even more precise, losing less than one second over the age of the universe."}
+{"input": "how to build a professional network?", "output": "lex: professional networking career connections\nlex: LinkedIn networking events industry contacts\nlex: building professional relationships mentorship\nvec: what are effective strategies for building and maintaining a professional network\nvec: how can attending events and using LinkedIn help grow your career network\nhyde: Build your professional network by attending industry conferences, joining professional associations, and engaging on LinkedIn. Follow up within 48 hours of meeting someone new. Offer value before asking for favors—share articles, make introductions, or provide feedback. Schedule regular coffee chats to maintain relationships."}
+{"input": "what is the significance of sacred symbols?", "output": "lex: sacred symbols religious meaning\nlex: spiritual symbols cross om menorah lotus\nlex: religious iconography symbolism significance\nvec: what role do sacred symbols play in religious and spiritual traditions\nvec: how do symbols like the cross, om, and menorah carry meaning in their respective faiths\nhyde: Sacred symbols serve as tangible expressions of spiritual truths across religions. The Christian cross represents sacrifice and redemption, the Hindu Om embodies the primordial sound of creation, and the Jewish menorah symbolizes divine light. These symbols anchor believers' faith and create shared identity within communities."}
+{"input": "how to succeed in a digital marketing career?", "output": "lex: digital marketing career skills\nlex: SEO social media analytics marketing job\nlex: digital marketing certifications portfolio\nvec: what skills and experience do you need to build a successful digital marketing career\nvec: how to get started in digital marketing and advance to senior roles\nhyde: A digital marketing career requires proficiency in SEO, paid advertising (Google Ads, Meta Ads), content marketing, email marketing, and analytics tools like Google Analytics. Build a portfolio with real campaigns. Earn certifications from Google, HubSpot, or Meta. Entry-level roles include marketing coordinator or social media specialist."}
+{"input": "how to plan a trip to europe?", "output": "lex: Europe trip planning itinerary budget\nlex: European travel visa flights accommodations\nlex: backpacking Europe route booking tips\nvec: how do you plan and budget for a multi-country trip across Europe\nvec: what are the steps for organizing flights, accommodations, and itineraries for European travel\nhyde: Plan your Europe trip 3-6 months ahead. Book flights early for the best fares. Get a Eurail pass if visiting 3+ countries. Budget €50-150/day depending on the country. Book accommodations on Booking.com or Hostelworld. Check visa requirements—US citizens can stay 90 days in the Schengen Area without a visa."}
+{"input": "how machine learning influences businesses", "output": "lex: machine learning business applications\nlex: ML AI enterprise automation prediction\nlex: machine learning revenue customer analytics\nvec: how are businesses using machine learning to improve operations and decision-making\nvec: what impact does machine learning have on business revenue and efficiency\nhyde: Machine learning transforms businesses through demand forecasting, customer churn prediction, fraud detection, and recommendation engines. Retailers use ML to optimize pricing and inventory. Banks deploy ML models for credit scoring. Companies using ML-driven analytics report 5-10% increases in revenue through personalized marketing."}
+{"input": "what are the main characteristics of memoirs?", "output": "lex: memoir characteristics literary genre\nlex: memoir vs autobiography personal narrative\nlex: memoir writing elements structure\nvec: what distinguishes a memoir from other forms of autobiographical writing\nvec: what are the key literary features and structure of a memoir\nhyde: A memoir focuses on a specific theme or period in the author's life, unlike an autobiography which covers an entire life chronologically. Key characteristics include a first-person narrative voice, emotional honesty, reflection on personal growth, vivid sensory details, and a thematic arc that gives the story universal resonance."}
+{"input": "how do sikhs practice their faith", "output": "lex: Sikh faith practices worship\nlex: gurdwara langar five Ks Sikhism\nlex: Sikh prayer Guru Granth Sahib\nvec: what are the daily religious practices and rituals observed by Sikhs\nvec: how do Sikhs worship in the gurdwara and observe the five Ks\nhyde: Sikhs practice their faith through daily prayers (Nitnem), including Japji Sahib at dawn. They worship at the gurdwara, where the Guru Granth Sahib is read aloud. Baptized Sikhs wear the five Ks: kesh (uncut hair), kangha (comb), kara (steel bracelet), kachera (undergarment), and kirpan (ceremonial sword). Langar, the communal kitchen, serves free meals to all visitors."}
+{"input": "what are the foundations of feminist ethics", "output": "lex: feminist ethics care theory foundations\nlex: feminist moral philosophy gender justice\nlex: ethics of care Gilligan Noddings feminist\nvec: what are the core principles and philosophical foundations of feminist ethics\nvec: how does feminist ethics differ from traditional moral philosophy in its approach to care and justice\nhyde: Feminist ethics emerged from Carol Gilligan's critique of Kohlberg's moral development theory, arguing that women's moral reasoning emphasizes care and relationships rather than abstract principles of justice. Nel Noddings developed the ethics of care, centering moral life on attentiveness, responsibility, and responsiveness to the needs of particular others."}
+{"input": "how do antibiotics work", "output": "lex: antibiotics mechanism action bacteria\nlex: antibiotic cell wall protein synthesis inhibition\nlex: bactericidal bacteriostatic penicillin\nvec: how do antibiotics kill or inhibit the growth of bacteria in the human body\nvec: what are the different mechanisms by which antibiotics target bacterial cells\nhyde: Antibiotics work by targeting structures unique to bacteria. Penicillin and cephalosporins inhibit cell wall synthesis, causing bacteria to burst. Tetracyclines block the 30S ribosomal subunit, preventing protein synthesis. Fluoroquinolones inhibit DNA gyrase, stopping bacterial DNA replication. Antibiotics are classified as bactericidal (kill bacteria) or bacteriostatic (stop growth)."}
+{"input": "what is geothermal energy?", "output": "lex: geothermal energy heat earth power\nlex: geothermal power plant electricity generation\nlex: geothermal renewable energy underground\nvec: how does geothermal energy work and how is it used to generate electricity\nvec: what are the advantages and limitations of geothermal energy as a renewable source\nhyde: Geothermal energy harnesses heat from the Earth's interior. Hot water and steam from underground reservoirs drive turbines to generate electricity. Geothermal power plants operate at over 90% capacity factor, far higher than wind or solar. Iceland generates 25% of its electricity from geothermal sources."}
+{"input": "how does a bill become a law", "output": "lex: bill becomes law legislative process\nlex: US Congress legislation committee vote\nlex: bill passage House Senate president sign\nvec: what are the steps a bill goes through in the US Congress to become a law\nvec: how does the legislative process work from bill introduction to presidential signature\nhyde: A bill is introduced in the House or Senate and assigned to a committee. The committee holds hearings, marks up the bill, and votes. If passed, it goes to the full chamber for debate and a vote. Both chambers must pass identical versions. Differences are resolved in a conference committee. The final bill goes to the President, who can sign it into law or veto it."}
+{"input": "what is the difference between ethics and morals", "output": "lex: ethics vs morals difference\nlex: ethics morals philosophy distinction\nlex: moral principles ethical systems comparison\nvec: what is the distinction between ethics and morals in philosophy\nvec: how do personal morals differ from ethical systems and codes of conduct\nhyde: Ethics refers to systematic, philosophical frameworks for determining right and wrong—such as utilitarianism or deontology. Morals are personal beliefs about right and wrong shaped by culture, religion, and upbringing. Ethics are prescriptive rules applied to groups (medical ethics, business ethics), while morals are individual convictions."}
+{"input": "what was the silk road", "output": "lex: Silk Road ancient trade route\nlex: Silk Road China Rome trade network\nlex: Silk Road history commerce cultural exchange\nvec: what was the historical Silk Road and what goods and ideas were traded along it\nvec: how did the Silk Road connect civilizations between China and the Mediterranean\nhyde: The Silk Road was a network of trade routes connecting China to the Mediterranean from the 2nd century BCE to the 15th century CE. Merchants traded silk, spices, gold, and jade. Beyond goods, the Silk Road facilitated the spread of Buddhism, Islam, papermaking, and gunpowder across Eurasia."}
+{"input": "what is the significance of beauty in philosophy", "output": "lex: beauty philosophy aesthetics significance\nlex: aesthetics Kant Plato beauty philosophical\nlex: philosophy of beauty sublime art\nvec: how have philosophers understood and defined the concept of beauty throughout history\nvec: what is the philosophical significance of beauty in aesthetics from Plato to Kant\nhyde: In Plato's Symposium, beauty is a ladder ascending from physical attraction to the Form of Beauty itself. Kant distinguished between the beautiful (harmonious, universal pleasure) and the sublime (overwhelming grandeur). For Hegel, beauty in art reveals truth through sensory form. Contemporary aesthetics debates whether beauty is objective or culturally constructed."}
+{"input": "how to communicate with elected officials", "output": "lex: contact elected officials representatives\nlex: write letter call congressman senator\nlex: constituent advocacy elected official communication\nvec: what are effective ways to communicate your concerns to elected officials\nvec: how to write letters or make phone calls to your congressional representatives\nhyde: The most effective way to reach your elected officials is a phone call to their district office. Identify yourself as a constituent, state the bill number, and clearly state your position in under 60 seconds. Personalized letters are more impactful than form emails. Attend town halls for face-to-face interaction."}
+{"input": "what is phenomenology", "output": "lex: phenomenology philosophy Husserl\nlex: phenomenological method consciousness experience\nlex: phenomenology Heidegger Merleau-Ponty intentionality\nvec: what is phenomenology and how does it study conscious experience\nvec: how did Husserl and Heidegger develop phenomenology as a philosophical method\nhyde: Phenomenology is a philosophical method founded by Edmund Husserl that studies the structures of conscious experience as they appear to the subject. Through \"bracketing\" (epoché), the phenomenologist suspends assumptions about the external world to describe phenomena as they are experienced. Heidegger extended this into an analysis of Being-in-the-world."}
+{"input": "how to enhance concentration", "output": "lex: improve concentration focus techniques\nlex: attention span deep work focus tips\nlex: concentration exercises mindfulness pomodoro\nvec: what techniques and habits can help you improve focus and concentration\nvec: how can mindfulness and time management methods like Pomodoro improve attention\nhyde: Improve concentration by eliminating distractions: silence notifications, use website blockers, and work in a quiet environment. The Pomodoro Technique—25 minutes of focused work followed by a 5-minute break—builds sustained attention. Regular exercise, adequate sleep (7-9 hours), and mindfulness meditation physically strengthen the brain's prefrontal cortex."}
+{"input": "what is the theory of relativity", "output": "lex: theory of relativity Einstein\nlex: special general relativity spacetime gravity\nlex: E=mc2 Einstein relativity physics\nvec: what are Einstein's special and general theories of relativity and what do they explain\nvec: how does the theory of relativity describe the relationship between space time and gravity\nhyde: Einstein's special relativity (1905) states that the speed of light is constant for all observers and that time dilates at high velocities (E=mc²). General relativity (1915) describes gravity not as a force but as the curvature of spacetime caused by mass and energy. Massive objects bend spacetime, and objects follow curved paths."}
+{"input": "what is depth of field?", "output": "lex: depth of field photography aperture\nlex: DOF shallow deep focus bokeh\nlex: aperture f-stop focal length depth field\nvec: what is depth of field in photography and how does aperture affect it\nvec: how do aperture, focal length, and distance control the depth of field in a photo\nhyde: Depth of field (DOF) is the range of distance in a photo that appears acceptably sharp. A wide aperture (f/1.8) produces a shallow DOF with a blurred background (bokeh), ideal for portraits. A narrow aperture (f/16) produces deep DOF where everything is sharp, suited for landscapes. Focal length and subject distance also affect DOF."}
+{"input": "how to write a haiku", "output": "lex: haiku poem writing syllable\nlex: haiku 5-7-5 Japanese poetry\nlex: haiku nature season kigo structure\nvec: what are the rules and structure for writing a traditional haiku poem\nvec: how do you compose a haiku with the 5-7-5 syllable pattern and seasonal reference\nhyde: A haiku is a three-line Japanese poem with a 5-7-5 syllable structure. Traditional haiku includes a kigo (seasonal word) and a kireji (cutting word) that creates a pause or shift. Example: \"An old silent pond / A frog jumps into the pond— / Splash! Silence again.\" Focus on a single moment in nature observed with clarity."}
+{"input": "how to address misinformation in politics", "output": "lex: political misinformation combat fact-checking\nlex: fake news disinformation media literacy\nlex: countering political misinformation strategies\nvec: what strategies can be used to identify and counter political misinformation\nvec: how can media literacy and fact-checking help address false political claims\nhyde: Combat political misinformation by checking claims against nonpartisan fact-checkers like PolitiFact, Snopes, and FactCheck.org. Verify the original source before sharing. Teach media literacy skills: examine the URL, author credentials, and whether other outlets confirm the story. Prebunking—warning people about manipulation techniques before exposure—is more effective than debunking after the fact."}
+{"input": "what is the philosophy of humor?", "output": "lex: philosophy of humor laughter theory\nlex: incongruity superiority relief theory humor\nlex: humor philosophy comedy Bergson\nvec: what are the main philosophical theories that explain why things are funny\nvec: how do incongruity theory, superiority theory, and relief theory explain humor\nhyde: Three major theories explain humor. Superiority theory (Hobbes) says we laugh at others' misfortunes. Relief theory (Freud) says laughter releases nervous energy. Incongruity theory (Kant, Schopenhauer) says humor arises when expectations are violated—we laugh at the gap between what we expect and what occurs."}
+{"input": "how does determinism challenge free will", "output": "lex: determinism free will debate\nlex: causal determinism libertarian compatibilism\nlex: free will philosophy hard determinism\nvec: how does philosophical determinism pose a challenge to the concept of free will\nvec: can free will exist if every event is causally determined by prior events\nhyde: Determinism holds that every event, including human choices, is the inevitable result of prior causes. If our decisions are fully determined by brain states, genetics, and environment, then free will appears illusory. Compatibilists like Hume argue free will means acting on one's desires without external coercion, which is compatible with determinism."}
+{"input": "how to write compelling endings?", "output": "lex: writing compelling story ending\nlex: novel ending techniques resolution climax\nlex: satisfying conclusion fiction writing\nvec: what techniques do authors use to write powerful and satisfying story endings\nvec: how to craft a compelling ending that resolves the plot and resonates emotionally\nhyde: A compelling ending resolves the central conflict while delivering an emotional payoff. Techniques include the circular ending (returning to an opening image with new meaning), the surprise twist (recontextualizing everything), and the resonant final image. Avoid deus ex machina. The ending should feel both surprising and inevitable—earned by what came before."}
+{"input": "how to make scientific presentations engaging", "output": "lex: scientific presentation engaging tips\nlex: science talk slides audience storytelling\nlex: research presentation design delivery\nvec: how can scientists make their research presentations more engaging and accessible\nvec: what techniques improve the delivery and visual design of scientific talks\nhyde: Make scientific presentations engaging by opening with a question or surprising finding rather than an outline slide. Use large visuals and minimal text—no more than 6 words per slide. Tell a story: setup the problem, build tension with the data, and deliver the conclusion as a punchline. Practice to stay under time and make eye contact."}
+{"input": "how to draw with a graphic tablet?", "output": "lex: graphic tablet drawing digital art\nlex: Wacom drawing tablet pen pressure\nlex: digital drawing tablet beginner setup\nvec: how do you set up and start drawing with a graphic tablet for digital art\nvec: what are tips for beginners learning to draw on a Wacom or similar tablet\nhyde: Set up your graphic tablet by installing the driver software and calibrating pen pressure. Start in a drawing program like Clip Studio Paint or Krita. The key challenge is hand-eye coordination—you draw on the tablet but look at the screen. Practice simple lines and circles to build muscle memory. Adjust pressure sensitivity curves to match your drawing style."}
+{"input": "how to build a capsule wardrobe", "output": "lex: capsule wardrobe essentials minimalist\nlex: capsule wardrobe build pieces mix match\nlex: minimalist wardrobe basics clothing\nvec: how do you create a capsule wardrobe with a minimal set of versatile clothing pieces\nvec: what are the essential items and steps to build a functional capsule wardrobe\nhyde: A capsule wardrobe consists of 30-40 versatile pieces that mix and match. Start by choosing a neutral color palette (black, navy, white, beige). Include 2-3 pairs of pants, 5-7 tops, 2 jackets, 2 pairs of shoes, and 1-2 dresses or suits. Remove items you haven't worn in a year. Invest in quality basics over trendy pieces."}
+{"input": "what was the impact of the berlin wall?", "output": "lex: Berlin Wall impact fall 1989\nlex: Berlin Wall Cold War Germany division\nlex: Berlin Wall consequences reunification\nvec: what was the historical impact of the Berlin Wall on Germany and the Cold War\nvec: how did the fall of the Berlin Wall in 1989 change Europe and global politics\nhyde: The Berlin Wall divided East and West Berlin from 1961 to 1989, symbolizing the Iron Curtain between communist and capitalist worlds. Its fall on November 9, 1989, triggered German reunification in 1990 and accelerated the collapse of communist regimes across Eastern Europe, effectively ending the Cold War."}
+{"input": "classic literature", "output": "lex: classic literature novels canon\nlex: classic books literary fiction great works\nlex: classic literature reading list authors\nvec: what are the most important works of classic literature and why are they significant\nvec: which classic novels and authors are considered essential reading in the Western literary canon\nhyde: Classic literature includes works that have stood the test of time for their artistic merit, universal themes, and cultural influence. Essential classics include Homer's Odyssey, Shakespeare's Hamlet, Austen's Pride and Prejudice, Dostoevsky's Crime and Punishment, and Fitzgerald's The Great Gatsby."}
+{"input": "how to make slime at home", "output": "lex: homemade slime recipe DIY\nlex: slime glue borax contact solution\nlex: make slime kids craft\nvec: what ingredients and steps do you need to make slime at home\nvec: how to make homemade slime using glue and borax or contact lens solution\nhyde: Mix 1/2 cup of white PVA glue with 1/2 cup of liquid starch or 1 tablespoon of borax dissolved in 1 cup of water. Stir until the slime pulls away from the bowl. Knead with your hands for 2-3 minutes until smooth. Add food coloring or glitter before mixing for a custom look. Store in an airtight container."}
+{"input": "what is the ethics of climate change", "output": "lex: climate change ethics moral responsibility\nlex: climate ethics justice intergenerational\nlex: environmental ethics carbon emissions moral\nvec: what are the ethical and moral dimensions of climate change and environmental responsibility\nvec: how do philosophers approach questions of climate justice and intergenerational obligation\nhyde: Climate ethics addresses who bears moral responsibility for carbon emissions and their consequences. Key questions include intergenerational justice (obligations to future generations), distributive justice (developing nations suffer most but polluted least), and the tragedy of the commons. Philosophers debate whether current generations owe a carbon debt to those who will inherit a warmer world."}
+{"input": "what are leadership qualities", "output": "lex: leadership qualities traits effective\nlex: leader skills communication vision integrity\nlex: leadership characteristics management\nvec: what personal qualities and traits define an effective leader\nvec: which skills and characteristics are most important for strong leadership\nhyde: Effective leaders demonstrate integrity, clear communication, empathy, and decisiveness. They articulate a compelling vision and inspire others to work toward shared goals. Key qualities include emotional intelligence, accountability, adaptability under pressure, and the ability to delegate while empowering team members to take ownership."}
+{"input": "what is the difference between a credit score and a credit report", "output": "lex: credit score vs credit report difference\nlex: credit report FICO score bureaus\nlex: credit score number credit report history\nvec: what is the difference between a credit score and a credit report\nvec: how does a credit report relate to the credit score number lenders use\nhyde: A credit report is a detailed record of your credit history maintained by bureaus (Equifax, Experian, TransUnion). It lists accounts, payment history, balances, and inquiries. A credit score is a three-digit number (300-850) calculated from your credit report data. FICO scores weigh payment history (35%), amounts owed (30%), length of history (15%), new credit (10%), and credit mix (10%)."}
+{"input": "how to make homemade pizza", "output": "lex: homemade pizza dough recipe\nlex: pizza from scratch oven toppings\nlex: make pizza dough sauce crust\nvec: how do you make pizza from scratch at home with homemade dough and sauce\nvec: what is the best recipe for homemade pizza dough and how do you bake it\nhyde: Mix 3 cups flour, 1 packet yeast, 1 tsp salt, 1 tbsp olive oil, and 1 cup warm water. Knead for 10 minutes and let rise 1 hour. Stretch the dough on a floured surface, spread tomato sauce, add mozzarella and toppings. Bake at 475°F (245°C) on a preheated pizza stone for 10-12 minutes until the crust is golden."}
+{"input": "how to improve workplace productivity", "output": "lex: workplace productivity improvement strategies\nlex: employee productivity time management office\nlex: work efficiency focus deep work\nvec: what strategies and techniques can improve productivity in the workplace\nvec: how can employees and managers increase work output and reduce wasted time\nhyde: Improve workplace productivity by eliminating unnecessary meetings, batching similar tasks together, and protecting blocks of uninterrupted focus time. Use the Eisenhower Matrix to prioritize tasks by urgency and importance. Managers should set clear goals, reduce bureaucratic overhead, and ensure employees have the tools and autonomy they need."}
+{"input": "what is the role of clergy in christianity", "output": "lex: clergy role Christianity priest pastor\nlex: Christian minister ordained church leadership\nlex: priest pastor deacon church clergy duties\nvec: what roles and responsibilities do clergy members serve in Christian churches\nvec: how do priests, pastors, and deacons function within different Christian denominations\nhyde: Christian clergy serve as spiritual leaders, administering sacraments, preaching sermons, and providing pastoral care. In Catholicism, ordained priests celebrate Mass, hear confessions, and perform baptisms. Protestant pastors focus on preaching and teaching Scripture. Deacons serve the community through charity and administrative support. The clergy structure varies widely across denominations."}
+{"input": "how does virtue ethics work", "output": "lex: virtue ethics Aristotle moral character\nlex: virtue ethics eudaimonia character traits\nlex: Aristotelian ethics virtues vices\nvec: how does virtue ethics evaluate moral action based on character rather than rules\nvec: what is Aristotle's approach to virtue ethics and how does it define the good life\nhyde: Virtue ethics, rooted in Aristotle's Nicomachean Ethics, holds that moral action flows from virtuous character rather than following rules (deontology) or maximizing outcomes (consequentialism). Virtues like courage, temperance, and justice are developed through practice. The goal is eudaimonia—human flourishing—achieved by living according to reason and cultivating the mean between excess and deficiency."}
+{"input": "what are the challenges of climate science", "output": "lex: climate science challenges research\nlex: climate modeling uncertainty data gaps\nlex: climate change research limitations predictions\nvec: what are the major scientific challenges in studying and predicting climate change\nvec: why is climate modeling difficult and what uncertainties do climate scientists face\nhyde: Climate science faces challenges including modeling complex feedback loops (clouds, ocean currents, ice sheets), limited historical data from pre-instrumental periods, and the chaotic nature of weather systems. Regional predictions are harder than global ones. Tipping points—thresholds beyond which changes become irreversible—are difficult to predict with current models."}
+{"input": "how to reduce stress naturally", "output": "lex: reduce stress naturally techniques\nlex: stress relief meditation exercise breathing\nlex: natural stress management relaxation\nvec: what natural methods and lifestyle changes can help reduce stress without medication\nvec: how do exercise, meditation, and breathing techniques reduce stress levels\nhyde: Reduce stress naturally by exercising 30 minutes daily—aerobic exercise lowers cortisol and releases endorphins. Practice deep breathing: inhale for 4 counts, hold for 7, exhale for 8. Meditate for 10 minutes each morning. Limit caffeine and alcohol, sleep 7-9 hours, and spend time in nature. Progressive muscle relaxation and journaling also help."}
+{"input": "how to start trail running", "output": "lex: trail running beginner start\nlex: trail running shoes gear technique\nlex: off-road running trails tips\nvec: how do beginners get started with trail running and what gear is needed\nvec: what training tips and safety advice should new trail runners follow\nhyde: Start trail running on well-marked, relatively flat trails. Invest in trail running shoes with lugged soles for traction. Run by effort, not pace—expect to be 1-2 minutes per mile slower than road pace. Walk the uphills, run the flats and downhills. Carry water on runs over 45 minutes. Watch your footing and shorten your stride on technical terrain."}
+{"input": "how to write a literary essay?", "output": "lex: literary essay writing analysis\nlex: literary analysis thesis evidence essay\nlex: English literature essay structure argument\nvec: how do you write a strong literary analysis essay with a clear thesis and evidence\nvec: what is the structure and approach for writing an essay analyzing a work of literature\nhyde: A literary essay argues a specific thesis about a text using evidence from the work itself. Open with a hook and thesis statement. Each body paragraph should present a claim, textual evidence (quotations), and analysis explaining how the evidence supports your argument. Use close reading to examine language, imagery, symbolism, and structure. Conclude by synthesizing your argument."}
+{"input": "sustainable development goals", "output": "lex: sustainable development goals SDGs UN\nlex: SDG 2030 agenda United Nations\nlex: UN sustainability goals poverty climate\nvec: what are the United Nations Sustainable Development Goals and what do they aim to achieve\nvec: how are the 17 SDGs structured and what progress has been made toward the 2030 agenda\nhyde: The 17 Sustainable Development Goals (SDGs) were adopted by the United Nations in 2015 as a universal call to action by 2030. They include: No Poverty (SDG 1), Zero Hunger (SDG 2), Good Health (SDG 3), Quality Education (SDG 4), Gender Equality (SDG 5), Clean Water (SDG 6), and Climate Action (SDG 13), among others."}
+{"input": "how to navigate with gps", "output": "lex: GPS navigation outdoor use\nlex: GPS coordinates waypoint route handheld\nlex: GPS device map navigation hiking\nvec: how do you use a GPS device or app for outdoor navigation and route finding\nvec: how to read GPS coordinates and set waypoints for hiking or travel\nhyde: To navigate with GPS, first mark your starting point as a waypoint. Enter your destination coordinates or select a point on the map. The GPS receiver triangulates your position using signals from at least 4 satellites. Follow the bearing and distance readings to your waypoint. Always carry a paper map and compass as backup in case of battery failure."}
+{"input": "how to conduct a scientific experiment", "output": "lex: scientific experiment method steps\nlex: scientific method hypothesis variables control\nlex: experiment design procedure data collection\nvec: what are the steps involved in designing and conducting a proper scientific experiment\nvec: how do you set up controls, variables, and data collection for a science experiment\nhyde: A scientific experiment follows these steps: 1) Ask a question, 2) Research background, 3) Form a hypothesis, 4) Design the experiment with independent, dependent, and controlled variables, 5) Collect data through repeated trials, 6) Analyze results using statistics, 7) Draw conclusions. Always include a control group and change only one variable at a time."}
+{"input": "digital transformation strategy implementation", "output": "lex: digital transformation strategy enterprise\nlex: digital transformation implementation roadmap\nlex: enterprise digitalization technology adoption\nvec: how do organizations plan and implement a digital transformation strategy\nvec: what are the key phases and challenges of enterprise digital transformation\nhyde: Digital transformation strategy begins with assessing current technology maturity and identifying high-impact processes for digitization. Build a roadmap with quick wins (cloud migration, workflow automation) and long-term goals (data-driven decision making, AI integration). Assign executive sponsorship, train employees, and measure success with KPIs like cycle time reduction and customer satisfaction scores."}
+{"input": "how to improve sleep quality naturally?", "output": "lex: improve sleep quality natural remedies\nlex: sleep hygiene tips better rest\nlex: insomnia natural treatment melatonin\nvec: what natural methods and sleep hygiene habits improve the quality of sleep\nvec: how can you fall asleep faster and sleep more deeply without medication\nhyde: Improve sleep quality by maintaining a consistent schedule—go to bed and wake at the same time daily. Keep your bedroom cool (65-68°F), dark, and quiet. Avoid screens for 1 hour before bed since blue light suppresses melatonin. Limit caffeine after noon. Exercise regularly but not within 3 hours of bedtime. Try magnesium supplements or chamomile tea."}
+{"input": "how to build customer loyalty", "output": "lex: customer loyalty retention strategies\nlex: loyalty program repeat customers brand\nlex: customer retention engagement satisfaction\nvec: what strategies do businesses use to build long-term customer loyalty and retention\nvec: how do loyalty programs and customer experience drive repeat business\nhyde: Build customer loyalty by delivering consistent quality and exceeding expectations. Implement a points-based loyalty program offering meaningful rewards. Personalize communications using purchase history data. Respond to complaints within 24 hours and resolve them generously. Customers who feel valued spend 67% more than new customers. Track Net Promoter Score to measure loyalty over time."}
+{"input": "what is consequentialism", "output": "lex: consequentialism ethics moral theory\nlex: consequentialism utilitarianism outcomes\nlex: consequentialist ethics Mill Bentham\nvec: what is consequentialism and how does it evaluate the morality of actions\nvec: how does consequentialist ethics judge right and wrong based on outcomes and consequences\nhyde: Consequentialism is a moral theory holding that the rightness of an action depends solely on its outcomes. The most well-known form is utilitarianism (Bentham, Mill), which aims to maximize overall happiness or well-being. An action is morally right if it produces the best consequences for the greatest number of people, regardless of the actor's intentions."}
+{"input": "how does philosophy approach artificial intelligence?", "output": "lex: philosophy artificial intelligence AI ethics\nlex: AI philosophy consciousness mind machine\nlex: philosophy of AI Turing test Chinese room\nvec: how do philosophers analyze questions about artificial intelligence and machine consciousness\nvec: what philosophical problems does AI raise about minds, consciousness, and moral status\nhyde: Philosophers approach AI through questions of consciousness (can machines be conscious?), the Chinese Room argument (Searle argued symbol manipulation isn't understanding), the Turing test (behavioral equivalence), and moral status (should sentient AI have rights?). The alignment problem—ensuring AI systems pursue human values—has become a central concern in philosophy of technology."}
+{"input": "how to reduce sugar intake", "output": "lex: reduce sugar intake diet\nlex: cut sugar cravings low sugar eating\nlex: sugar consumption health alternatives\nvec: what practical strategies help reduce daily sugar consumption and manage cravings\nvec: how can you cut back on added sugar in your diet without feeling deprived\nhyde: Reduce sugar intake by reading nutrition labels—sugar hides in sauces, bread, and yogurt under names like dextrose, maltose, and high-fructose corn syrup. Replace sugary drinks with water or sparkling water. Eat whole fruit instead of juice. Gradually reduce sugar in coffee over 2 weeks. Protein and fiber at each meal stabilize blood sugar and reduce cravings."}
+{"input": "building resilience", "output": "lex: building resilience mental toughness\nlex: emotional resilience coping skills adversity\nlex: psychological resilience strategies stress\nvec: how can individuals build emotional and psychological resilience to handle adversity\nvec: what habits and mindset shifts help develop personal resilience and mental toughness\nhyde: Building resilience involves developing a growth mindset, maintaining social connections, and practicing self-care. Reframe setbacks as learning opportunities. Cultivate problem-solving skills rather than ruminating on what went wrong. Regular exercise, adequate sleep, and mindfulness strengthen your capacity to recover from stress. Resilient people accept what they cannot control and focus energy on what they can."}
+{"input": "how to attend a town hall meeting", "output": "lex: town hall meeting attend participate\nlex: local government town hall public forum\nlex: town hall meeting preparation questions\nvec: how do you find and attend a local town hall meeting to participate in government\nvec: what should you prepare before attending a town hall meeting with your representative\nhyde: Find town hall meetings through your representative's website, social media, or local newspaper. Arrive early to get a seat. Prepare a concise question or statement under 60 seconds. Introduce yourself as a constituent and mention your town. Be respectful and specific—reference a bill number or policy. Many representatives also hold virtual town halls you can join online."}
+{"input": "google sheets", "output": "lex: Google Sheets spreadsheet formulas\nlex: Google Sheets tutorial functions tips\nlex: Google Sheets pivot table VLOOKUP\nvec: how to use Google Sheets for data analysis with formulas and functions\nvec: what are the most useful Google Sheets features, formulas, and keyboard shortcuts\nhyde: Google Sheets is a free cloud-based spreadsheet application. Key functions include VLOOKUP for searching data across columns, SUMIF for conditional totals, and QUERY for SQL-like data filtering. Use Ctrl+/ to view keyboard shortcuts. Create pivot tables via Data > Pivot table. Share sheets with collaborators for real-time editing."}
+{"input": "how to manage digital distractions?", "output": "lex: manage digital distractions focus\nlex: phone screen time notification blocking\nlex: digital distraction productivity apps\nvec: how can you reduce digital distractions from phones and social media to stay focused\nvec: what tools and strategies help manage screen time and notification overload\nhyde: Manage digital distractions by turning off non-essential notifications. Use app blockers like Freedom or Cold Turkey during focus periods. Set your phone to Do Not Disturb and place it in another room. Schedule specific times to check email and social media rather than responding in real-time. Use Screen Time (iOS) or Digital Wellbeing (Android) to track and limit usage."}
+{"input": "what are stem cells", "output": "lex: stem cells types function biology\nlex: stem cell embryonic adult pluripotent\nlex: stem cell therapy regenerative medicine\nvec: what are stem cells and what makes them different from regular cells in the body\nvec: how are stem cells used in medical research and regenerative medicine\nhyde: Stem cells are undifferentiated cells that can self-renew and differentiate into specialized cell types. Embryonic stem cells are pluripotent—they can become any cell type. Adult stem cells are multipotent, limited to specific tissues (e.g., hematopoietic stem cells produce blood cells). Induced pluripotent stem cells (iPSCs) are adult cells reprogrammed to an embryonic-like state."}
+{"input": "how does literary geography influence narratives?", "output": "lex: literary geography narrative place setting\nlex: geography literature landscape sense of place\nlex: spatial narrative setting fiction geography\nvec: how does the geography and physical setting of a story influence its narrative and themes\nvec: what role does sense of place and landscape play in shaping literary narratives\nhyde: Literary geography examines how real and imagined places shape narrative meaning. Faulkner's Yoknapatawpha County embodies Southern decay and racial tension. Hardy's Wessex landscapes mirror characters' emotional states. Setting is not just backdrop—it constrains plot, shapes character psychology, and carries symbolic weight. Urban and rural spaces generate distinct narrative possibilities."}
+{"input": "what were the causes of world war ii", "output": "lex: causes World War II WWII origins\nlex: WWII causes Treaty Versailles Hitler aggression\nlex: World War 2 causes appeasement fascism\nvec: what were the main political and economic causes that led to World War II\nvec: how did the Treaty of Versailles, fascism, and appeasement contribute to the outbreak of WWII\nhyde: World War II resulted from multiple causes: the punitive Treaty of Versailles (1919) imposed crippling reparations on Germany, fueling resentment. The Great Depression created economic desperation exploited by fascist movements. Hitler's expansionist aggression—remilitarizing the Rhineland, annexing Austria, and invading Czechoslovakia—met with appeasement from Britain and France until the invasion of Poland in September 1939."}
+{"input": "what is the role of faith in spirituality", "output": "lex: faith role spirituality belief\nlex: spiritual faith trust divine religious\nlex: faith spirituality meaning transcendence\nvec: what role does faith play in spiritual practice and personal transcendence\nvec: how does faith relate to spiritual growth and the search for meaning\nhyde: Faith in spirituality serves as the foundation for trust in a reality beyond the material world. It enables surrender to uncertainty and provides a framework for interpreting suffering and purpose. Unlike dogmatic belief, spiritual faith often involves personal experience—a felt sense of connection to something greater that sustains practice through doubt and difficulty."}
+{"input": "how to contribute to political campaigns", "output": "lex: political campaign contribution donate volunteer\nlex: volunteer political campaign canvassing\nlex: campaign donation fundraising grassroots\nvec: how can individuals contribute to political campaigns through donations or volunteering\nvec: what are the different ways to get involved in a political campaign as a volunteer\nhyde: Contribute to political campaigns by donating through the candidate's official website (individual contributions are limited to $3,300 per election per candidate in federal races). Volunteer to canvass door-to-door, phone bank, or text bank. Attend campaign events, host a house party, or share the candidate's message on social media. Small-dollar donations are increasingly impactful."}
+{"input": "what is the importance of meditation in spirituality?", "output": "lex: meditation spirituality importance practice\nlex: spiritual meditation mindfulness contemplation\nlex: meditation enlightenment inner peace spiritual\nvec: why is meditation considered essential to many spiritual traditions and practices\nvec: how does meditation contribute to spiritual growth and inner transformation\nhyde: Meditation is central to nearly every spiritual tradition. In Buddhism, vipassana meditation cultivates insight into impermanence. Hindu dhyana aims for union with Brahman. Christian contemplative prayer seeks direct experience of God. Across traditions, meditation quiets mental chatter, develops present-moment awareness, and opens practitioners to transcendent experience."}
+{"input": "how to prune fruit trees?", "output": "lex: prune fruit trees technique timing\nlex: fruit tree pruning winter dormant cuts\nlex: apple pear tree pruning branches\nvec: when and how should you prune fruit trees for better growth and fruit production\nvec: what pruning techniques are used for apple, pear, and other fruit trees\nhyde: Prune fruit trees during late winter dormancy (January-March) before buds break. Remove dead, diseased, and crossing branches first. Open the center of the tree to allow sunlight and air circulation. Make cuts at a 45-degree angle just above an outward-facing bud. Remove water sprouts (vertical shoots) and suckers from the base. Never remove more than 25% of the canopy in one season."}
+{"input": "what is conservation biology", "output": "lex: conservation biology biodiversity preservation\nlex: conservation biology endangered species habitat\nlex: wildlife conservation ecology management\nvec: what is conservation biology and what are its main goals and methods\nvec: how do conservation biologists work to protect endangered species and biodiversity\nhyde: Conservation biology is the scientific study of preserving biodiversity and preventing extinction. It combines ecology, genetics, and landscape management to protect threatened species and ecosystems. Key approaches include habitat restoration, establishing wildlife corridors, captive breeding programs, and designating protected areas. The field was formalized in the 1980s by Michael Soulé."}
+{"input": "how do muslims observe hajj?", "output": "lex: Hajj Muslim pilgrimage Mecca rituals\nlex: Hajj rites Kaaba Arafat Mina Islam\nlex: Islamic pilgrimage Hajj steps obligations\nvec: what are the rituals and steps Muslims follow during the Hajj pilgrimage to Mecca\nvec: how do Muslims prepare for and perform the Hajj pilgrimage\nhyde: Hajj occurs annually during Dhul Hijjah, the 12th month of the Islamic calendar. Pilgrims enter a state of ihram (ritual purity) and wear simple white garments. They perform tawaf (circling the Kaaba seven times), sa'i (walking between Safa and Marwah), stand at Arafat in prayer, and stone the pillars at Mina. Hajj concludes with Eid al-Adha, the Festival of Sacrifice."}
+{"input": "digital economy transformation", "output": "lex: digital economy transformation trends\nlex: digital economy e-commerce fintech platform\nlex: economic digitalization technology market 2025\nvec: how is the digital economy transforming traditional industries and business models\nvec: what are the key drivers and trends of digital economic transformation\nhyde: The digital economy encompasses all economic activity enabled by digital technologies. E-commerce, fintech, cloud computing, and platform businesses (Uber, Airbnb) have disrupted traditional industries. By 2025, the digital economy accounts for over 15% of global GDP. Key drivers include mobile internet penetration, AI automation, and the shift to subscription-based and data-driven business models."}
+{"input": "how does philosophy address systemic injustice?", "output": "lex: philosophy systemic injustice structural oppression\nlex: social justice philosophy racial gender inequality\nlex: systemic injustice Rawls critical race theory\nvec: how do philosophers analyze and propose solutions to systemic injustice and structural oppression\nvec: what philosophical frameworks address racial, gender, and economic systemic inequality\nhyde: Philosophers address systemic injustice through multiple frameworks. Rawls's veil of ignorance argues just institutions would be designed without knowing one's social position. Critical race theory examines how legal and social structures perpetuate racial inequality. Iris Marion Young distinguished five faces of oppression: exploitation, marginalization, powerlessness, cultural imperialism, and violence."}
+{"input": "how to analyze a political speech", "output": "lex: political speech analysis rhetoric\nlex: speech analysis persuasion ethos pathos logos\nlex: rhetorical analysis political discourse\nvec: what techniques are used to analyze the rhetoric and persuasive strategies in political speeches\nvec: how do you evaluate a political speech for logical arguments, emotional appeals, and credibility\nhyde: Analyze a political speech by examining its rhetorical appeals: ethos (credibility—does the speaker establish authority?), pathos (emotion—what feelings are evoked?), and logos (logic—are arguments supported by evidence?). Identify rhetorical devices like repetition, anaphora, and metaphor. Consider the audience, context, and what the speaker wants listeners to do."}
+{"input": "how to support clean energy initiatives?", "output": "lex: clean energy support renewable initiatives\nlex: renewable energy advocacy solar wind policy\nlex: clean energy action community support\nvec: how can individuals and communities support clean energy initiatives and policies\nvec: what actions can people take to promote renewable energy adoption in their area\nhyde: Support clean energy by installing solar panels or subscribing to community solar. Switch to a green electricity provider. Contact elected officials to support renewable energy legislation and tax credits. Invest in clean energy funds. Drive electric or hybrid vehicles. Advocate for local building codes that require energy efficiency standards. Join or donate to organizations like the Sierra Club or local clean energy cooperatives."}
+{"input": "how to diagnose car starting problems?", "output": "lex: car starting problems diagnosis troubleshoot\nlex: car won't start battery starter ignition\nlex: engine cranks no start fuel spark\nvec: how do you diagnose why a car won't start and identify the root cause\nvec: what are the common reasons a car fails to start and how to troubleshoot them\nhyde: If the car clicks but won't crank, the battery is likely dead—test with a multimeter (should read 12.6V). If the engine cranks but won't start, check fuel delivery (listen for the fuel pump whine) and spark (pull a plug and check for spark). A no-crank, no-click condition often points to a failed starter motor or corroded battery terminals."}
+{"input": "how to identify personal values and beliefs?", "output": "lex: identify personal values beliefs self-reflection\nlex: core values assessment life priorities\nlex: personal values exercise self-awareness\nvec: how can you identify and clarify your core personal values and beliefs\nvec: what exercises and reflection methods help discover what you truly value in life\nhyde: Identify your core values by reflecting on peak experiences—moments when you felt most fulfilled and authentic. Write down 10-15 values (integrity, creativity, family, freedom) and narrow to your top 5. Ask: what angers you when it's violated? What would you fight for? A values card sort exercise—ranking printed values—can clarify priorities you struggle to articulate."}
+{"input": "what is the significance of the gnostic gospels?", "output": "lex: gnostic gospels significance Nag Hammadi\nlex: gnostic texts Gospel Thomas early Christianity\nlex: gnostic gospels meaning heresy Christian\nvec: what are the gnostic gospels and why are they significant for understanding early Christianity\nvec: how did the Nag Hammadi discovery change our knowledge of gnostic Christian texts\nhyde: The gnostic gospels are early Christian texts discovered at Nag Hammadi, Egypt in 1945. They include the Gospel of Thomas, Gospel of Philip, and Gospel of Truth. These texts reveal diverse beliefs in early Christianity—including the idea that salvation comes through secret knowledge (gnosis) rather than faith alone. They were excluded from the biblical canon as heretical by the 4th century church."}
+{"input": "russia train", "output": "lex: Russia train travel Trans-Siberian railway\nlex: Russian railway routes tickets booking\nlex: Trans-Siberian Express Moscow Vladivostok\nvec: how to travel by train in Russia and what are the major railway routes\nvec: what is the Trans-Siberian Railway and how do you book tickets for Russian trains\nhyde: The Trans-Siberian Railway is the longest railway line in the world, spanning 9,289 km from Moscow to Vladivostok over 6 days. Book tickets through Russian Railways (RZD) at rzd.ru or through agents like RealRussia. Classes include platzkart (open berth), kupe (4-person compartment), and SV (2-person sleeper). Bring your own food for long journeys."}
+{"input": "how do you write an effective book review?", "output": "lex: book review writing effective structure\nlex: write book review summary critique\nlex: book review template opinion analysis\nvec: how do you write a thoughtful and effective book review with summary and analysis\nvec: what structure and elements make a strong book review for publication or school\nhyde: An effective book review opens with the book's title, author, genre, and a one-sentence summary. Discuss the main themes and the author's writing style. Include specific examples and short quotations. Evaluate strengths and weaknesses honestly. Avoid spoilers for fiction. End with a recommendation and who would enjoy the book. Aim for 500-800 words."}
+{"input": "how to practice self-compassion?", "output": "lex: self-compassion practice exercises\nlex: self-compassion Kristin Neff mindfulness\nlex: self-kindness inner critic self-care\nvec: what are practical ways to practice self-compassion and quiet your inner critic\nvec: how does Kristin Neff's framework for self-compassion work in daily life\nhyde: Kristin Neff defines self-compassion as three components: self-kindness (treating yourself as you would a friend), common humanity (recognizing suffering is shared), and mindfulness (acknowledging pain without over-identifying). Practice by placing your hand on your heart when distressed and saying: \"This is a moment of suffering. Suffering is part of life. May I be kind to myself.\""}
+{"input": "what is the significance of pilgrimage in religion?", "output": "lex: pilgrimage religion significance spiritual\nlex: religious pilgrimage Mecca Jerusalem Varanasi\nlex: pilgrimage sacred journey faith tradition\nvec: why is pilgrimage important across different religious traditions\nvec: what spiritual significance does the act of pilgrimage carry in major world religions\nhyde: Pilgrimage holds deep significance across religions. Muslims perform Hajj to Mecca as one of the Five Pillars. Christians journey to Jerusalem, Rome, and Santiago de Compostela. Hindus bathe in the Ganges at Varanasi. The physical journey symbolizes an inner spiritual transformation—leaving ordinary life, enduring hardship, and arriving at a sacred place of renewal and encounter with the divine."}
+{"input": "api doc", "output": "lex: API documentation reference endpoints\nlex: REST API docs developer guide\nlex: API documentation Swagger OpenAPI\nvec: how to read and use API documentation for integrating with a web service\nvec: what tools and formats are used for creating and hosting API documentation\nhyde: API documentation describes available endpoints, request/response formats, authentication methods, and error codes. RESTful APIs typically document each endpoint with its HTTP method (GET, POST, PUT, DELETE), URL path, query parameters, request body schema, and example responses. Tools like Swagger/OpenAPI generate interactive docs where developers can test endpoints directly."}
+{"input": "how to boil an egg perfectly", "output": "lex: boil egg perfectly soft hard\nlex: boiled egg timing minutes technique\nlex: perfect hard soft boiled egg recipe\nvec: how long do you boil an egg for soft-boiled and hard-boiled results\nvec: what is the best technique for boiling eggs so they peel easily and cook perfectly\nhyde: Place eggs in a single layer in a pot and cover with cold water by 1 inch. Bring to a rolling boil, then remove from heat and cover. For soft-boiled: 6-7 minutes. For medium: 9-10 minutes. For hard-boiled: 12-13 minutes. Transfer immediately to an ice bath for 5 minutes. Older eggs (7-10 days) peel more easily than fresh ones."}
+{"input": "how to create a home office space", "output": "lex: home office setup design workspace\nlex: home office desk chair ergonomic\nlex: work from home office organization\nvec: how do you set up a productive and ergonomic home office workspace\nvec: what furniture, lighting, and layout create the best home office environment\nhyde: Set up your home office in a quiet room with natural light. Invest in an ergonomic chair with lumbar support and a desk at elbow height (28-30 inches). Position your monitor at arm's length with the top at eye level. Use a desk lamp with 4000-5000K color temperature. Keep cables organized and add a plant—studies show greenery reduces stress and improves focus."}
+{"input": "what are the basic laws of thermodynamics", "output": "lex: laws of thermodynamics basic physics\nlex: thermodynamics first second third law entropy\nlex: thermodynamic laws energy heat transfer\nvec: what are the four laws of thermodynamics and what does each one describe\nvec: how do the laws of thermodynamics govern energy transfer and entropy\nhyde: The zeroth law establishes thermal equilibrium: if A and B are each in equilibrium with C, they are in equilibrium with each other. The first law states energy cannot be created or destroyed (conservation of energy). The second law says entropy in a closed system always increases—heat flows from hot to cold, never the reverse. The third law states entropy approaches zero as temperature approaches absolute zero."}
+{"input": "how to create a home yoga space", "output": "lex: home yoga space setup room\nlex: yoga room design mat props space\nlex: home yoga studio create practice area\nvec: how do you set up a dedicated yoga practice space in your home\nvec: what equipment and room setup do you need for a home yoga studio\nhyde: Create a home yoga space in an area with at least 6x8 feet of clear floor space. Use a non-slip yoga mat (6mm thickness for comfort). Add blocks, a strap, and a bolster for supported poses. Keep the space clutter-free and at a comfortable temperature (68-72°F). Soft natural light and a small speaker for calming music enhance the atmosphere."}
+{"input": "what is the bible?", "output": "lex: Bible Christian scripture holy book\nlex: Bible Old New Testament books\nlex: Bible history composition canon\nvec: what is the Bible and how is it organized into Old and New Testaments\nvec: how was the Bible composed and compiled over time as a sacred text\nhyde: The Bible is the sacred scripture of Christianity, consisting of the Old Testament (39 books in Protestant tradition, 46 in Catholic) and the New Testament (27 books). The Old Testament includes the Torah, historical books, poetry, and prophets, written primarily in Hebrew. The New Testament contains the Gospels, Acts, Epistles, and Revelation, written in Greek during the 1st century CE."}
+{"input": "how does virtue ethics differ from other ethical theories", "output": "lex: virtue ethics vs deontology consequentialism\nlex: virtue ethics comparison ethical theories\nlex: Aristotle virtue ethics Kant Mill contrast\nvec: how does virtue ethics differ from deontological and consequentialist moral theories\nvec: what makes virtue ethics unique compared to rule-based and outcome-based ethical frameworks\nhyde: Virtue ethics (Aristotle) asks \"What kind of person should I be?\" rather than \"What should I do?\" Deontology (Kant) focuses on following moral rules regardless of outcomes. Consequentialism (Mill) judges actions by their results. Virtue ethics emphasizes developing moral character through habit and practical wisdom, while the others prescribe universal principles or calculations."}
+{"input": "how genetic research impacts medicine", "output": "lex: genetic research medicine impact\nlex: genomics personalized medicine gene therapy\nlex: genetic testing pharmacogenomics CRISPR\nvec: how has genetic research transformed medical treatments and diagnosis\nvec: what advances in genomics and gene therapy are changing the future of medicine\nhyde: Genetic research has revolutionized medicine through pharmacogenomics (tailoring drug dosages to genetic profiles), gene therapy (correcting defective genes, as in the FDA-approved Luxturna for inherited blindness), and CRISPR gene editing (potential cures for sickle cell disease). Genetic testing identifies cancer risk (BRCA1/2 mutations) enabling early screening and prevention."}
+{"input": "how to fix car scratches?", "output": "lex: fix car scratches paint repair\nlex: car scratch removal polish compound\nlex: auto paint scratch repair DIY\nvec: how do you repair and remove scratches from a car's paint finish at home\nvec: what products and techniques fix different types of car paint scratches\nhyde: Car scratches fall into three categories: clear coat scratches (light, fingernail doesn't catch), base coat scratches (deeper, white visible), and primer/metal scratches (deepest). For clear coat scratches, use rubbing compound followed by polish. For deeper scratches, apply touch-up paint matching your car's color code (found on the door jamb sticker), then clear coat and wet sand with 2000-grit."}
+{"input": "how digital currencies work", "output": "lex: digital currency cryptocurrency blockchain\nlex: Bitcoin cryptocurrency how it works\nlex: digital currency blockchain mining wallet\nvec: how do digital currencies like Bitcoin use blockchain technology to process transactions\nvec: what is the technical process behind cryptocurrency transactions and mining\nhyde: Digital currencies operate on blockchain technology—a decentralized ledger distributed across thousands of computers. When you send Bitcoin, the transaction is broadcast to the network. Miners validate transactions by solving cryptographic puzzles (proof of work), adding them to a block. Each block links to the previous one, creating an immutable chain. Wallets store private keys that prove ownership."}
+{"input": "what is existentialism", "output": "lex: existentialism philosophy Sartre Kierkegaard\nlex: existentialism existence precedes essence freedom\nlex: existentialist philosophy meaning absurd\nvec: what is existentialism and what are its core philosophical claims about human existence\nvec: how did Sartre, Kierkegaard, and Camus develop existentialist philosophy\nhyde: Existentialism holds that existence precedes essence—humans are not born with a fixed nature but create meaning through choices and actions. Kierkegaard emphasized individual faith and anxiety. Sartre declared we are \"condemned to be free\"—radical freedom brings radical responsibility. Camus confronted the absurd: life has no inherent meaning, yet we must live as if it does."}
+{"input": "what are the key concepts in marxist philosophy", "output": "lex: Marxist philosophy key concepts\nlex: Marx dialectical materialism class struggle surplus\nlex: Marxism alienation historical materialism ideology\nvec: what are the central ideas and concepts in Karl Marx's philosophical framework\nvec: how do dialectical materialism, class struggle, and alienation function in Marxist thought\nhyde: Key concepts in Marxist philosophy include historical materialism (material conditions drive historical change), dialectical materialism (contradictions between productive forces and relations of production), class struggle (bourgeoisie vs. proletariat), alienation (workers separated from their labor's product), surplus value (profit extracted from unpaid labor), and ideology (ruling class ideas that justify the status quo)."}
+{"input": "how to find emotional support", "output": "lex: emotional support resources help\nlex: finding emotional support therapy counseling\nlex: mental health support groups crisis helpline\nvec: where can someone find emotional support during difficult times or mental health challenges\nvec: what resources are available for people seeking emotional support and counseling\nhyde: Find emotional support through multiple channels: talk to a trusted friend or family member. Contact a therapist through Psychology Today's directory or your insurance provider. Call the 988 Suicide and Crisis Lifeline (dial 988) for immediate help. Join support groups through NAMI or local community centers. Online therapy platforms like BetterHelp and Talkspace offer accessible counseling."}
+{"input": "relationship goals", "output": "lex: relationship goals healthy couple\nlex: relationship goals communication trust partnership\nlex: healthy relationship habits couples\nvec: what are realistic and healthy relationship goals for couples to work toward\nvec: how do couples build a strong relationship through communication and shared goals\nhyde: Healthy relationship goals include open and honest communication, maintaining individual identities while building shared experiences, resolving conflicts respectfully without contempt or stonewalling, expressing appreciation daily, supporting each other's personal growth, maintaining physical intimacy, and aligning on major life decisions like finances, children, and career priorities."}
+{"input": "what is the role of media in politics", "output": "lex: media role politics influence\nlex: political media coverage news bias\nlex: media politics democracy journalism fourth estate\nvec: what role does the media play in shaping political discourse and public opinion\nvec: how does news coverage and media bias influence political outcomes and democracy\nhyde: The media serves as the \"fourth estate\" in democracy—informing citizens, holding officials accountable, and setting the public agenda. Media framing shapes which issues voters prioritize. Agenda-setting theory shows that what the media covers becomes what the public considers important. The rise of partisan media and social media algorithms has increased polarization by creating ideological echo chambers."}
+{"input": "what is stream of consciousness", "output": "lex: stream of consciousness literary technique\nlex: stream of consciousness narrative style\nvec: what does stream of consciousness mean as a writing technique in literature\nvec: how does stream of consciousness narration work in novels and fiction\nhyde: Stream of consciousness is a narrative technique that presents a character's continuous flow of thoughts, feelings, and sensory impressions as they occur. Pioneered by writers like Virginia Woolf and James Joyce, it mimics the unstructured way the human mind processes experience."}
+{"input": "where to find budget travel tips", "output": "lex: budget travel tips cheap flights accommodations\nlex: affordable travel planning money saving\nvec: where can I find reliable tips for traveling on a tight budget\nvec: what are the best resources for planning cheap vacations and budget trips\nhyde: To travel on a budget, book flights midweek, use fare comparison tools like Google Flights or Skyscanner, stay in hostels or use house-sitting platforms, and eat at local markets instead of tourist restaurants."}
+{"input": "what is fallibilism", "output": "lex: fallibilism epistemology philosophy\nlex: fallibilism knowledge certainty\nvec: what does fallibilism mean in philosophy and epistemology\nvec: how does fallibilism challenge the idea that knowledge requires absolute certainty\nhyde: Fallibilism is the philosophical doctrine that no belief or claim can ever be conclusively justified or proven beyond all doubt. Associated with Charles Sanders Peirce and Karl Popper, it holds that all human knowledge is provisional and subject to revision."}
+{"input": "auth flow", "output": "lex: authentication flow OAuth JWT\nlex: authorization code flow token exchange\nlex: auth login session management\nvec: how does an authentication and authorization flow work in web applications\nvec: what are the steps in an OAuth 2.0 authorization code flow\nhyde: The OAuth 2.0 authorization code flow begins when the client redirects the user to the authorization server. After login, the server returns an authorization code, which the client exchanges for an access token and refresh token via the token endpoint."}
+{"input": "where to find datasets for scientific research", "output": "lex: scientific research datasets open data repositories\nlex: public datasets academic research download\nvec: where can researchers find free datasets for scientific studies\nvec: what are the best open data repositories for academic and scientific research\nhyde: Public research datasets are available from repositories such as Kaggle, the UCI Machine Learning Repository, NASA's Open Data Portal, NOAA Climate Data, and institutional data archives like Harvard Dataverse and Zenodo."}
+{"input": "ui build", "output": "lex: UI build frontend framework components\nlex: user interface build tooling bundler\nlex: UI component library development\nvec: how to build a user interface for a web or mobile application\nvec: what tools and frameworks are used to build modern frontend UIs\nhyde: To build a responsive UI, start by choosing a component framework such as React, Vue, or Svelte. Use a build tool like Vite or Webpack to bundle assets, and style with CSS modules or Tailwind CSS for rapid layout development."}
+{"input": "how to conserve water at home?", "output": "lex: water conservation home tips\nlex: reduce household water usage\nvec: what are practical ways to conserve water at home and reduce water bills\nvec: how can I use less water in my house for everyday tasks\nhyde: Fix leaky faucets promptly—a single drip can waste over 3,000 gallons per year. Install low-flow showerheads and dual-flush toilets, run dishwashers and washing machines only with full loads, and water your garden early in the morning to minimize evaporation."}
+{"input": "how to obtain information on state legislation", "output": "lex: state legislation tracking bill search\nlex: state law lookup legislative database\nvec: how can I find and track state legislation and bills currently being considered\nvec: what websites or tools let you look up state laws and legislative history\nhyde: To track state legislation, visit your state legislature's official website, which provides bill text, status, and voting records. Tools like LegiScan and the National Conference of State Legislatures (NCSL) aggregate bills across all 50 states."}
+{"input": "what shoes for hiking?", "output": "lex: hiking shoes boots trail footwear\nlex: best hiking boots waterproof ankle support\nvec: what type of shoes or boots should I wear for hiking on trails\nvec: how to choose the right hiking footwear for different terrain and conditions\nhyde: For day hikes on well-maintained trails, lightweight hiking shoes with good tread provide enough support. For rocky or wet terrain, mid-cut waterproof boots with ankle support and Vibram soles offer better protection and stability."}
+{"input": "what is the role of empathy in moral decision-making", "output": "lex: empathy moral decision-making ethics\nlex: empathy role ethical judgment\nvec: how does empathy influence the way people make moral and ethical decisions\nvec: what role does feeling empathy play in moral reasoning and ethical behavior\nhyde: Empathy allows individuals to imagine the experiences of others, which directly influences moral judgment. Studies show that people who score higher on empathy scales are more likely to make prosocial decisions, though critics like Paul Bloom argue empathy can also bias moral reasoning."}
+{"input": "how to improve self-worth?", "output": "lex: improve self-worth self-esteem building\nlex: boost self-confidence self-value exercises\nvec: what are effective strategies to improve your sense of self-worth and self-esteem\nvec: how can someone build stronger self-worth through daily habits and mindset shifts\nhyde: To improve self-worth, start by identifying and challenging negative self-talk. Practice self-compassion, set small achievable goals, keep a journal of accomplishments, and surround yourself with supportive people. Cognitive behavioral techniques can help reframe core beliefs about your value."}
+{"input": "what is cryptography", "output": "lex: cryptography encryption decryption\nlex: cryptographic algorithms symmetric asymmetric\nvec: what is cryptography and how does it protect data through encryption\nvec: how do cryptographic systems work to secure communications and information\nhyde: Cryptography is the science of encoding and decoding information to prevent unauthorized access. It uses algorithms like AES (symmetric) and RSA (asymmetric) to encrypt plaintext into ciphertext. Only parties with the correct key can decrypt the message back to its original form."}
+{"input": "how to photograph reflections", "output": "lex: photography reflections water glass mirror\nlex: reflection photography techniques composition\nvec: what techniques help capture sharp and creative reflection photographs\nvec: how to photograph reflections in water, mirrors, and glass surfaces\nhyde: To photograph reflections, use a polarizing filter to control glare and increase clarity. Shoot at a low angle to maximize the reflected image in water. For mirror or glass reflections, focus manually on the reflected subject rather than the surface itself."}
+{"input": "how do black holes form", "output": "lex: black hole formation stellar collapse\nlex: black holes neutron star supernova\nvec: how do black holes form from dying stars and gravitational collapse\nvec: what is the process by which a massive star becomes a black hole\nhyde: Black holes form when a massive star—typically more than 20 solar masses—exhausts its nuclear fuel and can no longer support itself against gravitational collapse. The core implodes past the neutron star stage, compressing into a singularity surrounded by an event horizon."}
+{"input": "how to conduct literature review in research", "output": "lex: literature review research methodology\nlex: academic literature review systematic search\nvec: how do you conduct a thorough literature review for an academic research paper\nvec: what are the steps to search, organize, and synthesize sources in a literature review\nhyde: Begin by defining your research question, then search databases like PubMed, Google Scholar, and Web of Science using targeted keywords. Screen abstracts for relevance, organize selected papers by theme, and synthesize findings to identify gaps in existing knowledge."}
+{"input": "how do scientists use models", "output": "lex: scientific models simulation prediction\nlex: scientific modeling research methodology\nvec: how do scientists use models to understand and predict natural phenomena\nvec: what types of models do scientists build to test hypotheses and simulate systems\nhyde: Scientists use mathematical, computational, and physical models to represent complex systems. Climate models simulate atmospheric interactions, molecular models predict protein folding, and epidemiological models forecast disease spread. Models are validated against observed data and refined iteratively."}
+{"input": "how to stage a home for sale", "output": "lex: home staging tips selling house\nlex: stage house real estate curb appeal\nvec: how do you stage a home to make it more appealing to potential buyers\nvec: what are the key steps to prepare and stage a house before listing it for sale\nhyde: Declutter every room, remove personal photos, and use neutral paint colors. Arrange furniture to maximize space and natural light. Add fresh flowers, clean all surfaces, and improve curb appeal with trimmed landscaping and a freshly painted front door."}
+{"input": "rim fix", "output": "lex: rim repair bent wheel fix\nlex: alloy rim curb damage repair\nlex: car wheel rim straightening\nvec: how to fix a bent or damaged car wheel rim\nvec: can a curb-damaged alloy rim be repaired and how much does it cost\nhyde: Minor curb rash on alloy rims can be sanded, filled with body filler, and repainted at home. Bent rims require professional straightening on a hydraulic press. If the rim has cracks, replacement is safer than repair."}
+{"input": "what is speculative fiction?", "output": "lex: speculative fiction genre definition\nlex: speculative fiction sci-fi fantasy dystopia\nvec: what is speculative fiction and what genres does it encompass\nvec: how is speculative fiction different from science fiction and fantasy\nhyde: Speculative fiction is an umbrella genre that includes science fiction, fantasy, horror, dystopian, and alternate history literature. It explores \"what if\" scenarios by altering known reality—imagining different technologies, social structures, or natural laws."}
+{"input": "what are algorithms in computer science", "output": "lex: algorithms computer science data structures\nlex: algorithm sorting searching complexity\nvec: what are algorithms in computer science and why are they fundamental\nvec: how do computer science algorithms solve problems through step-by-step procedures\nhyde: An algorithm is a finite sequence of well-defined instructions for solving a class of problems or performing a computation. Common examples include sorting algorithms (quicksort, mergesort), search algorithms (binary search), and graph algorithms (Dijkstra's shortest path)."}
+{"input": "how to calculate car loan payments?", "output": "lex: car loan payment calculator formula\nlex: auto loan monthly payment interest rate\nvec: how do you calculate monthly car loan payments based on principal, interest rate, and term\nvec: what formula is used to determine monthly auto loan payments\nhyde: The monthly car loan payment is calculated using the formula: M = P × [r(1+r)^n] / [(1+r)^n − 1], where P is the principal, r is the monthly interest rate (annual rate divided by 12), and n is the total number of monthly payments."}
+{"input": "how to recycle electronics?", "output": "lex: electronics recycling e-waste disposal\nlex: recycle old computers phones e-waste\nvec: how and where can I recycle old electronics like phones, computers, and TVs\nvec: what is the proper way to dispose of electronic waste responsibly\nhyde: Many retailers like Best Buy and Staples offer free electronics drop-off recycling. Check Earth911.org for local e-waste facilities. Before recycling, wipe personal data from devices. Never throw electronics in regular trash—they contain lead, mercury, and other hazardous materials."}
+{"input": "what is the significance of the anti-hero?", "output": "lex: anti-hero literary significance character\nlex: anti-hero fiction protagonist flawed\nvec: what is the literary significance of the anti-hero as a character type in fiction\nvec: why are anti-heroes important in storytelling and what do they represent\nhyde: The anti-hero challenges traditional notions of heroism by embodying flawed, morally ambiguous traits. Characters like Raskolnikov, Walter White, and Deadpool resonate because they reflect the complexity of human nature, blurring the line between virtue and vice."}
+{"input": "what is the significance of ramadan", "output": "lex: Ramadan significance Islam fasting\nlex: Ramadan holy month Muslim observance\nvec: what is the spiritual and cultural significance of Ramadan in Islam\nvec: why do Muslims observe Ramadan and what does the month represent\nhyde: Ramadan is the ninth month of the Islamic lunar calendar, during which Muslims fast from dawn to sunset. It commemorates the first revelation of the Quran to Prophet Muhammad. The fast cultivates self-discipline, empathy for the hungry, and spiritual closeness to God."}
+{"input": "where to find landscaping stones?", "output": "lex: landscaping stones buy garden rocks\nlex: landscape stone supply yard near me\nvec: where can I buy landscaping stones and decorative rocks for my yard\nvec: what are the best places to find affordable landscaping stones and pavers\nhyde: Landscaping stones can be purchased from home improvement stores like Home Depot and Lowe's, local stone yards, and quarries. For bulk orders, landscape supply companies deliver directly. River rock, flagstone, and pea gravel are popular choices for garden paths and borders."}
+{"input": "where to watch latest movies online", "output": "lex: watch movies online streaming platforms 2026\nlex: latest movies streaming services new releases\nvec: where can I watch the latest movies online through streaming services in 2026\nvec: which streaming platforms have the newest movie releases available to watch\nhyde: New theatrical releases typically arrive on streaming platforms 45-90 days after their cinema debut. Netflix, Amazon Prime Video, Disney+, Apple TV+, and Max each acquire exclusive titles. Check JustWatch.com to see which service currently streams a specific movie."}
+{"input": "what is contemporary art?", "output": "lex: contemporary art definition movement\nlex: contemporary art 21st century modern\nvec: what defines contemporary art and how is it different from modern art\nvec: what are the key characteristics and themes of contemporary art\nhyde: Contemporary art refers to art produced from the late 20th century to the present day. Unlike modern art (roughly 1860s–1970s), contemporary art encompasses a wide range of media—installation, video, digital, and performance—and often engages with identity, globalization, and technology."}
+{"input": "what is the significance of easter", "output": "lex: Easter significance Christianity resurrection\nlex: Easter religious meaning Christian holiday\nvec: what is the religious and cultural significance of Easter in Christianity\nvec: why is Easter considered the most important Christian holiday\nhyde: Easter celebrates the resurrection of Jesus Christ on the third day after his crucifixion, as described in the New Testament Gospels. It is the most important feast in Christianity, marking the fulfillment of prophecy and the foundation of Christian faith in life after death."}
+{"input": "how to install peel and stick wallpaper", "output": "lex: peel and stick wallpaper installation\nlex: self-adhesive wallpaper apply walls\nvec: what are the steps to properly install peel and stick wallpaper on a wall\nvec: how do you apply self-adhesive wallpaper without bubbles or wrinkles\nhyde: Clean the wall surface and let it dry completely. Start at the top, peeling back a few inches of backing at a time. Use a smoothing tool to press the wallpaper flat, working from the center outward to remove air bubbles. Trim excess at the ceiling and baseboard with a sharp blade."}
+{"input": "how do behavioral scientists study behavior", "output": "lex: behavioral science research methods\nlex: behavioral psychology experiments observation\nvec: what methods do behavioral scientists use to study and measure human behavior\nvec: how do behavioral researchers design experiments and observational studies\nhyde: Behavioral scientists study behavior through controlled experiments, field observations, surveys, and neuroimaging. Randomized controlled trials isolate variables, while observational studies capture behavior in natural settings. Eye-tracking and fMRI provide physiological data on decision-making processes."}
+{"input": "soccer training drills", "output": "lex: soccer training drills exercises\nlex: football practice drills passing shooting\nvec: what are effective soccer training drills for improving skills and fitness\nvec: which soccer drills help players improve dribbling, passing, and shooting\nhyde: Set up a cone dribbling course with 10 cones spaced 2 meters apart. Players weave through using inside and outside touches at speed. For passing accuracy, pair players 15 meters apart and practice one-touch passes, alternating feet. Finish sessions with 1v1 attacking drills near the box."}
+{"input": "how to invest in the stock market", "output": "lex: stock market investing beginner guide\nlex: invest stocks brokerage portfolio\nvec: how do beginners start investing in the stock market and building a portfolio\nvec: what are the basic steps to open a brokerage account and buy stocks\nhyde: To start investing, open a brokerage account with a platform like Fidelity, Schwab, or Vanguard. Begin with low-cost index funds that track the S&P 500 for broad diversification. Invest regularly through dollar-cost averaging and avoid trying to time the market."}
+{"input": "what is the role of prophets in christianity?", "output": "lex: prophets Christianity role Bible\nlex: Christian prophets Old Testament New Testament\nvec: what role do prophets play in Christian theology and scripture\nvec: how are prophets understood in Christianity compared to other Abrahamic religions\nhyde: In Christianity, prophets are individuals called by God to deliver divine messages and foretell events. Old Testament prophets like Isaiah and Jeremiah predicted the coming of the Messiah. In the New Testament, Jesus is seen as the ultimate fulfillment of prophetic tradition."}
+{"input": "what is a no-dig garden?", "output": "lex: no-dig garden method sheet mulching\nlex: no-dig gardening lasagna layering technique\nvec: what is a no-dig garden and how do you build one without tilling the soil\nvec: how does the no-dig gardening method work to improve soil health\nhyde: A no-dig garden is built by layering organic materials—cardboard, compost, straw, and leaf mold—directly on top of existing ground. This preserves soil structure, encourages worm activity, suppresses weeds, and builds fertile topsoil without the labor of digging or tilling."}
+{"input": "how to raise startup capital", "output": "lex: raise startup capital funding sources\nlex: startup fundraising seed investors venture capital\nvec: what are the main ways to raise capital for a new startup company\nvec: how do founders raise seed funding and early-stage investment for a startup\nhyde: Startup capital can come from bootstrapping, friends and family, angel investors, venture capital firms, crowdfunding platforms like Kickstarter, or government grants. Prepare a pitch deck with your business model, market size, traction metrics, and financial projections before approaching investors."}
+{"input": "how to save money effectively", "output": "lex: save money tips budgeting strategies\nlex: effective saving habits personal finance\nvec: what are effective strategies and habits for saving money consistently\nvec: how can I create a budget and save more money each month\nhyde: Follow the 50/30/20 rule: allocate 50% of income to needs, 30% to wants, and 20% to savings. Automate transfers to a high-yield savings account on payday. Track spending with an app, cancel unused subscriptions, and build a 3-6 month emergency fund before investing."}
+{"input": "what is the problem of evil", "output": "lex: problem of evil philosophy theodicy\nlex: problem of evil God suffering\nvec: what is the philosophical problem of evil and how does it challenge belief in God\nvec: how do philosophers and theologians respond to the problem of evil and suffering\nhyde: The problem of evil asks: if an omnipotent, omniscient, and benevolent God exists, why does suffering occur? Epicurus first formulated this dilemma. Theodicies like the free will defense and soul-making theodicy attempt to reconcile God's existence with the reality of evil."}
+{"input": "how to register to vote online", "output": "lex: register to vote online voter registration\nlex: online voter registration state website\nvec: how can I register to vote online in my state\nvec: what do I need to register to vote through an online voter registration system\nhyde: Most U.S. states offer online voter registration at vote.org or through the secretary of state's website. You'll need your state-issued ID number or last four digits of your Social Security number, your date of birth, and current residential address."}
+{"input": "what are the principles of evolution", "output": "lex: principles of evolution natural selection\nlex: evolution theory variation inheritance selection\nvec: what are the core principles of biological evolution by natural selection\nvec: how do variation, inheritance, and selection drive the process of evolution\nhyde: Evolution operates through four key principles: variation (individuals differ genetically), inheritance (traits pass from parents to offspring), selection (individuals better adapted to their environment survive and reproduce more), and time (changes accumulate across generations, leading to speciation)."}
+{"input": "explain the ten commandments", "output": "lex: Ten Commandments Bible Exodus Deuteronomy\nlex: Ten Commandments meaning list\nvec: what are the Ten Commandments and what does each one mean\nvec: how are the Ten Commandments explained in the Bible and interpreted by different faiths\nhyde: The Ten Commandments, given to Moses on Mount Sinai, include: (1) You shall have no other gods before me, (2) You shall not make idols, (3) You shall not take the Lord's name in vain, (4) Remember the Sabbath, (5) Honor your father and mother, (6) You shall not murder."}
+{"input": "how to pose people for portraits", "output": "lex: portrait posing techniques photography\nlex: portrait photography poses guide\nvec: what are effective ways to pose people for flattering portrait photographs\nvec: how do professional photographers direct subjects into natural-looking portrait poses\nhyde: Have your subject shift their weight to one foot and angle their body 45 degrees from the camera. Turn the chin slightly down and toward the light. For hands, give them something to hold or rest them naturally. Ask them to breathe out before the shot to relax their expression."}
+{"input": "css grid", "output": "lex: CSS grid layout template columns rows\nlex: CSS grid container gap alignment\nlex: CSS grid-template-areas responsive\nvec: how to create page layouts using CSS grid with rows and columns\nvec: what are the key CSS grid properties for building responsive layouts\nhyde: .container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; } .item-wide { grid-column: span 2; } CSS Grid allows two-dimensional layout control with explicit row and column definitions, making it ideal for full-page layouts."}
+{"input": "how to go plastic-free in the kitchen?", "output": "lex: plastic-free kitchen alternatives\nlex: reduce plastic kitchen reusable containers\nvec: how can I eliminate single-use plastics from my kitchen\nvec: what are the best plastic-free alternatives for food storage and kitchen items\nhyde: Replace plastic wrap with beeswax wraps or silicone lids. Store food in glass jars or stainless steel containers. Use bar dish soap instead of bottled liquid soap. Buy in bulk using cloth bags, and choose wooden or bamboo utensils over plastic ones."}
+{"input": "what are the teachings of confucius?", "output": "lex: Confucius teachings Confucianism philosophy\nlex: Confucian ethics filial piety ren li\nvec: what are the main teachings and ethical principles of Confucius\nvec: how did Confucius define virtue, proper conduct, and social harmony\nhyde: Confucius emphasized ren (benevolence), li (ritual propriety), xiao (filial piety), and junzi (the ideal of a morally cultivated person). He taught that social harmony comes from fulfilling one's role in relationships—ruler to subject, parent to child, husband to wife, elder to younger, and friend to friend."}
+{"input": "what is performance art?", "output": "lex: performance art definition live medium\nlex: performance art artists examples history\nvec: what is performance art and how does it differ from traditional visual art\nvec: what are the defining characteristics and famous examples of performance art\nhyde: Performance art is a live, time-based art form in which the artist's body and actions are the medium. Emerging in the 1960s and 70s, artists like Marina Abramović, Yoko Ono, and Joseph Beuys blurred boundaries between art and life, often engaging audiences directly."}
+{"input": "how do vaccines work", "output": "lex: vaccines immune system antibodies mechanism\nlex: how vaccines work immunization\nvec: how do vaccines train the immune system to fight diseases\nvec: what is the biological mechanism by which vaccines provide immunity\nhyde: Vaccines introduce a weakened, inactivated, or fragment form of a pathogen (or its mRNA blueprint) into the body. The immune system recognizes it as foreign, produces antibodies, and creates memory cells. If exposed to the real pathogen later, the immune system responds rapidly."}
+{"input": "ai-driven marketing", "output": "lex: AI-driven marketing automation personalization\nlex: artificial intelligence marketing campaigns analytics\nvec: how is artificial intelligence being used to drive marketing strategies and campaigns\nvec: what AI tools and techniques improve marketing personalization and customer targeting\nhyde: AI-driven marketing uses machine learning to segment audiences, predict customer behavior, and personalize content at scale. Tools like predictive analytics, chatbots, and recommendation engines increase conversion rates. A/B testing is automated, and ad spend is optimized in real time by algorithms."}
+{"input": "how to pursue a career in scientific research", "output": "lex: scientific research career path academia\nlex: career scientist PhD research position\nvec: what steps should I take to pursue a career in scientific research\nvec: what education and experience are needed to become a professional researcher in science\nhyde: A career in scientific research typically starts with a bachelor's degree in a STEM field, followed by a PhD program where you specialize in a research area. After completing your doctorate, postdoctoral positions provide additional training before applying for faculty or industry research roles."}
+{"input": "what is cryptocurrency trading?", "output": "lex: cryptocurrency trading buy sell exchange\nlex: crypto trading Bitcoin Ethereum strategies\nvec: what is cryptocurrency trading and how do people buy and sell digital currencies\nvec: how does cryptocurrency trading work on exchanges like Coinbase and Binance\nhyde: Cryptocurrency trading involves buying and selling digital assets like Bitcoin and Ethereum on exchanges. Traders use market orders, limit orders, and stop-losses. Strategies range from long-term holding (HODLing) to day trading based on technical analysis of price charts and volume indicators."}
+{"input": "what is calculus used for", "output": "lex: calculus applications real world uses\nlex: calculus derivatives integrals physics engineering\nvec: what are the real-world applications of calculus in science and engineering\nvec: how is calculus used in physics, economics, and other fields\nhyde: Calculus is used to model rates of change and accumulation. In physics, derivatives describe velocity and acceleration; integrals calculate areas and volumes. Engineers use calculus to design structures, economists model marginal cost and revenue, and biologists model population growth with differential equations."}
+{"input": "how does moral philosophy address human rights", "output": "lex: moral philosophy human rights ethics\nlex: philosophical foundations human rights natural rights\nvec: how does moral philosophy provide a foundation for human rights\nvec: what ethical theories support the concept of universal human rights\nhyde: Moral philosophy grounds human rights through several frameworks: natural law theory holds rights are inherent to human nature, Kantian ethics argues every person deserves dignity as a rational agent, and utilitarianism supports rights as instruments that maximize overall well-being."}
+{"input": "how to choose a writing genre?", "output": "lex: choose writing genre fiction nonfiction\nlex: writing genre selection author style\nvec: how should a writer choose the best genre for their writing style and interests\nvec: what factors help an author decide which literary genre to write in\nhyde: Consider what you love to read—your favorite genre as a reader often translates well. Experiment by writing short pieces in different genres: fantasy, mystery, literary fiction, memoir. Pay attention to which genre energizes you and where your voice feels most natural."}
+{"input": "how to write a standout personal statement", "output": "lex: personal statement writing tips college application\nlex: standout personal statement essay graduate school\nvec: how do you write a compelling personal statement for college or graduate school admissions\nvec: what makes a personal statement stand out to admissions committees\nhyde: Open with a vivid, specific anecdote—not a generic quote. Show rather than tell by describing experiences that shaped your goals. Connect your past to your intended field of study. Be authentic; admissions officers read thousands of essays and recognize genuine voice immediately."}
+{"input": "how to improve sleep quality", "output": "lex: improve sleep quality tips habits\nlex: better sleep hygiene insomnia remedies\nvec: what are proven ways to improve sleep quality and fall asleep faster\nvec: how can I develop better sleep habits to get more restful sleep\nhyde: Maintain a consistent sleep schedule, even on weekends. Keep your bedroom cool (65-68°F), dark, and quiet. Avoid screens for 30 minutes before bed. Limit caffeine after noon. Regular exercise improves sleep, but finish workouts at least 3 hours before bedtime."}
+{"input": "how to stay updated on global affairs", "output": "lex: global affairs news sources current events\nlex: world news reliable sources daily updates\nvec: what are the best ways to stay informed about global affairs and world news\nvec: which news sources and tools help you keep up with international current events\nhyde: Follow reputable outlets like Reuters, AP News, BBC World, and The Economist for balanced global coverage. Use RSS readers or news aggregator apps like Feedly. Subscribe to daily briefing newsletters such as Morning Brew or The Daily from the New York Times."}
+{"input": "what are the characteristics of renaissance architecture?", "output": "lex: Renaissance architecture characteristics features\nlex: Renaissance architecture columns dome symmetry\nvec: what are the defining characteristics of Renaissance architecture in Europe\nvec: how did Renaissance architects use symmetry, columns, and domes in their buildings\nhyde: Renaissance architecture, flourishing in 15th-16th century Italy, revived classical Greek and Roman forms. Key features include symmetrical facades, round arches, columns with Corinthian capitals, hemispherical domes (as in Brunelleschi's Florence Cathedral), and harmonious proportions based on geometry."}
+{"input": "what are color modes in photography?", "output": "lex: color modes photography RGB CMYK sRGB\nlex: photography color space Adobe RGB ProPhoto\nvec: what are the different color modes and color spaces used in digital photography\nvec: how do RGB, sRGB, Adobe RGB, and CMYK color modes affect photo editing and printing\nhyde: Digital photographs use RGB color mode for screens, with sRGB as the standard web color space and Adobe RGB offering a wider gamut for print work. CMYK is used for commercial printing. ProPhoto RGB captures the widest range but requires careful color management to avoid banding."}
+{"input": "how to create a zen garden?", "output": "lex: zen garden create Japanese rock garden\nlex: zen garden design sand gravel stones\nvec: how do you design and create a traditional Japanese zen rock garden\nvec: what materials and layout principles are used in building a zen garden\nhyde: A zen garden (karesansui) uses raked white gravel or sand to represent water, with carefully placed rocks symbolizing mountains or islands. Rake parallel lines for calm or concentric circles around rocks. Keep the design minimal—moss, a few stones, and clean gravel on a flat rectangular area."}
+{"input": "mountain peak", "output": "lex: mountain peak climbing summit elevation\nlex: highest mountain peaks world list\nlex: mountain peak hiking trails\nvec: what are the highest mountain peaks in the world and their elevations\nvec: how to plan a hike or climb to a mountain peak summit\nhyde: Mount Everest stands at 8,849 meters (29,032 ft), the highest peak on Earth. K2 at 8,611 m and Kangchenjunga at 8,586 m follow. For trekkers, peaks like Mont Blanc (4,808 m) and Mount Kilimanjaro (5,895 m) are accessible without technical climbing experience."}
+{"input": "how to follow campaign finance laws", "output": "lex: campaign finance laws compliance regulations\nlex: campaign finance rules FEC political donations\nvec: how do political candidates and organizations comply with campaign finance laws\nvec: what are the key campaign finance regulations and reporting requirements in the U.S.\nhyde: Campaign finance laws require candidates to register with the FEC, disclose all contributions and expenditures, and adhere to contribution limits. Individual donors can give up to $3,300 per candidate per election. PACs and Super PACs have separate rules. File quarterly reports electronically."}
+{"input": "how to advocate for education reform", "output": "lex: education reform advocacy strategies\nlex: advocate education policy change\nvec: how can individuals effectively advocate for education reform in their community\nvec: what strategies work for pushing education policy changes at the local and state level\nhyde: Start by attending school board meetings and building relationships with elected officials. Join or form coalitions with parent groups, teachers' unions, and nonprofits. Write op-eds, organize town halls, and use data on student outcomes to make evidence-based arguments for specific policy changes."}
+{"input": "how do philosophical arguments work", "output": "lex: philosophical arguments logic premises conclusion\nlex: philosophical reasoning deductive inductive\nvec: how are philosophical arguments structured with premises and conclusions\nvec: what makes a philosophical argument valid or sound in logic\nhyde: A philosophical argument consists of premises (claims assumed to be true) and a conclusion that follows from them. In a deductive argument, if the premises are true and the form is valid, the conclusion must be true. An argument is sound when it is both valid and its premises are actually true."}
+{"input": "fix roof", "output": "lex: roof repair fix leak shingles\nlex: roof damage repair DIY contractor\nlex: fix roof leak flashing\nvec: how to repair a damaged or leaking roof at home\nvec: when should you DIY a roof fix versus hiring a professional roofer\nhyde: For minor roof leaks, locate the source from the attic during rain. Replace cracked or missing shingles by lifting surrounding shingles, removing nails, and sliding in a new one. Apply roofing cement under flashing for small gaps. For structural damage or large areas, hire a licensed roofer."}
+{"input": "how to implement csr initiatives", "output": "lex: CSR initiatives corporate social responsibility implementation\nlex: corporate social responsibility programs strategy\nvec: how do companies implement corporate social responsibility initiatives effectively\nvec: what steps should a business take to launch a CSR program\nhyde: Start by conducting a materiality assessment to identify social and environmental issues relevant to your business and stakeholders. Set measurable goals aligned with the UN Sustainable Development Goals. Allocate budget, assign a dedicated CSR team, and report progress annually using GRI standards."}
+{"input": "how to meditate for beginners", "output": "lex: meditation beginners guide mindfulness\nlex: beginner meditation techniques breathing\nvec: how do beginners start a daily meditation practice from scratch\nvec: what are simple meditation techniques for people who have never meditated before\nhyde: Sit comfortably with your back straight. Close your eyes and focus on your breath—notice each inhale and exhale. When thoughts arise, gently return attention to your breathing without judgment. Start with 5 minutes daily and gradually increase. Consistency matters more than duration."}
+{"input": "how to boost immune system naturally", "output": "lex: boost immune system natural remedies\nlex: strengthen immune system diet exercise sleep\nvec: what natural methods help strengthen the immune system\nvec: which foods, supplements, and lifestyle habits boost immune function naturally\nhyde: Eat a diet rich in fruits, vegetables, and lean protein to supply vitamins C, D, and zinc. Exercise moderately for 30 minutes most days. Sleep 7-9 hours per night. Manage stress through meditation or yoga. Fermented foods like yogurt and kimchi support gut health, which is linked to immune function."}
+{"input": "how to bake a cake from scratch", "output": "lex: bake cake from scratch recipe\nlex: homemade cake recipe flour butter eggs\nvec: how do you bake a basic cake from scratch without a box mix\nvec: what is a simple recipe for baking a homemade vanilla or chocolate cake\nhyde: Preheat oven to 350°F (175°C). Mix 2 cups flour, 1.5 cups sugar, 3 eggs, 1 cup butter, 1 cup milk, 2 tsp baking powder, 1 tsp vanilla. Pour into greased 9-inch pans and bake 30-35 minutes until a toothpick comes out clean. Cool before frosting."}
+{"input": "what are the main festivals in hinduism", "output": "lex: Hindu festivals Diwali Holi Navratri\nlex: Hinduism religious festivals celebrations\nvec: what are the major festivals celebrated in Hinduism and their significance\nvec: which Hindu festivals are the most widely observed and what do they celebrate\nhyde: Diwali, the festival of lights, celebrates the triumph of light over darkness and honors Lakshmi. Holi marks the arrival of spring with colored powders. Navratri is a nine-night festival honoring the goddess Durga. Ganesh Chaturthi celebrates the birth of Lord Ganesha with elaborate processions."}
+{"input": "how to replace car air filter?", "output": "lex: replace car air filter engine cabin\nlex: car air filter replacement DIY steps\nvec: how do you replace the engine air filter in a car yourself\nvec: what are the steps to change a car's air filter at home without a mechanic\nhyde: Open the hood and locate the air filter housing—usually a black plastic box near the engine. Unclip the latches, remove the old filter, and note its orientation. Insert the new filter with the rubber rim facing up, close the housing, and secure the clips. Replace every 12,000-15,000 miles."}
+{"input": "digital transformation strategies", "output": "lex: digital transformation strategy enterprise\nlex: digital transformation cloud automation AI\nvec: what strategies do organizations use to drive successful digital transformation\nvec: how do enterprises plan and execute a digital transformation initiative\nhyde: A digital transformation strategy begins with assessing current processes and identifying bottlenecks. Prioritize quick wins like automating manual workflows. Migrate infrastructure to cloud platforms, adopt data analytics for decision-making, and invest in employee training. Measure ROI with KPIs tied to business outcomes."}
+{"input": "how to argument for climate action", "output": "lex: argue climate action policy advocacy\nlex: climate change argument evidence persuasion\nvec: how can you make a compelling argument for urgent climate action\nvec: what evidence and reasoning support the case for strong climate change policies\nhyde: The scientific consensus is clear: global temperatures have risen 1.1°C since pre-industrial levels, causing more extreme weather, rising seas, and ecosystem collapse. Economic analyses show that the cost of inaction—estimated at $23 trillion by 2050—far exceeds the investment needed for a clean energy transition."}
+{"input": "how does human activity affect climate change", "output": "lex: human activity climate change greenhouse gas emissions\nlex: anthropogenic climate change fossil fuels deforestation\nvec: how do human activities like burning fossil fuels contribute to climate change\nvec: what is the scientific evidence linking human activity to global warming\nhyde: Human activities—primarily burning fossil fuels for energy, deforestation, and industrial agriculture—release greenhouse gases like CO2 and methane into the atmosphere. Since 1850, atmospheric CO2 has risen from 280 to over 420 ppm, trapping heat and raising global average temperatures by 1.1°C."}
+{"input": "how to create a wildlife-friendly garden?", "output": "lex: wildlife-friendly garden habitat plants\nlex: garden attract birds bees butterflies\nvec: how can I design a garden that attracts and supports local wildlife\nvec: what plants and features make a garden friendly to birds, bees, and butterflies\nhyde: Plant native flowering species to attract pollinators—coneflower, milkweed, and lavender support bees and butterflies. Add a shallow water dish, leave leaf litter for insects, install nest boxes for birds, and avoid pesticides. A log pile provides habitat for beetles, frogs, and hedgehogs."}
+{"input": "how to prepare for a long hike", "output": "lex: long hike preparation gear checklist\nlex: hiking preparation training nutrition hydration\nvec: how should I prepare physically and logistically for a long day hike or multi-day trek\nvec: what gear, training, and planning is needed before a long hiking trip\nhyde: Train by walking with a loaded pack for progressively longer distances over 4-6 weeks. Pack the ten essentials: navigation, sun protection, insulation, illumination, first aid, fire, tools, nutrition, hydration, and shelter. Check the weather forecast and file a trip plan with someone you trust."}
+{"input": "how to use photoshop for digital painting?", "output": "lex: Photoshop digital painting brushes techniques\nlex: digital painting Photoshop tutorial layers\nvec: how do you use Adobe Photoshop for digital painting and illustration\nvec: what Photoshop tools, brushes, and techniques are essential for digital painting\nhyde: In Photoshop, start a digital painting by creating a new canvas at 300 DPI. Use the Brush tool (B) with pressure sensitivity enabled on a graphics tablet. Block in shapes on separate layers, then refine details. Use layer blend modes like Multiply for shadows and Screen for highlights."}
+{"input": "what changed in kubernetes latest version", "output": "lex: Kubernetes latest version changes release notes 2025 2026\nlex: Kubernetes new features changelog update\nvec: what are the notable changes and new features in the latest Kubernetes release\nvec: what major features were added or deprecated in the most recent Kubernetes version in 2025 or 2026\nhyde: Kubernetes v1.32 introduced improvements to sidecar containers (now GA), enhanced pod scheduling with dynamic resource allocation, graduated the Gateway API to stable, and deprecated legacy in-tree cloud provider integrations in favor of external cloud controller managers."}
+{"input": "what is e-commerce?", "output": "lex: e-commerce electronic commerce online shopping\nlex: e-commerce platform business model\nvec: what is e-commerce and how do online businesses sell products and services\nvec: how does electronic commerce work from storefront to payment processing\nhyde: E-commerce (electronic commerce) is the buying and selling of goods or services over the internet. Business models include B2C (Amazon, Shopify stores), B2B (Alibaba), C2C (eBay, Etsy), and D2C (brands selling directly). Transactions are processed through payment gateways like Stripe or PayPal."}
+{"input": "what is meant by 'the good life' in philosophy", "output": "lex: the good life philosophy eudaimonia ethics\nlex: philosophical good life Aristotle virtue happiness\nvec: what does the concept of the good life mean in philosophy and ethics\nvec: how did Aristotle and other philosophers define what it means to live a good life\nhyde: In Aristotelian ethics, the good life (eudaimonia) is achieved through the practice of virtue and the exercise of reason over a complete lifetime. It is not mere pleasure but a state of flourishing—living in accordance with one's highest capacities within a community."}
+{"input": "how to obtain information on federal legislation", "output": "lex: federal legislation tracking Congress bills\nlex: federal law lookup Congress.gov bill status\nvec: how can I find information about federal legislation and bills in the U.S. Congress\nvec: what resources are available to track federal bills and laws through the legislative process\nhyde: Congress.gov is the official source for federal legislation. Search by bill number, keyword, or sponsor. Each bill page shows full text, status, cosponsors, committee actions, and vote records. GovTrack.us and ProPublica's Congress API provide additional analysis and tracking tools."}
+{"input": "what are the elements of classical music?", "output": "lex: classical music elements melody harmony rhythm\nlex: classical music composition structure form\nvec: what are the fundamental elements and structures of classical music\nvec: how do melody, harmony, rhythm, and form work together in classical music compositions\nhyde: Classical music is built on melody (a sequence of notes forming a theme), harmony (chords supporting the melody), rhythm (the timing and pattern of notes), dynamics (volume changes), and form (the structure, such as sonata, rondo, or theme and variations)."}
+{"input": "what are celtic traditions and customs", "output": "lex: Celtic traditions customs festivals Ireland Scotland\nlex: Celtic culture Samhain Beltane druids\nvec: what are the traditional customs and cultural practices of the Celtic peoples\nvec: which Celtic traditions like Samhain and Beltane are still observed today\nhyde: Celtic traditions include seasonal festivals marking the agricultural calendar: Samhain (Oct 31) honored the dead and the start of winter, Imbolc (Feb 1) marked spring's return, Beltane (May 1) celebrated fertility with bonfires, and Lughnasadh (Aug 1) was the harvest festival. Many survive in Irish and Scottish culture today."}
+{"input": "hash code", "output": "lex: hash code function programming\nlex: hashCode Java hash table implementation\nlex: cryptographic hash function SHA MD5\nvec: what is a hash code and how are hash functions used in programming\nvec: how does the hashCode method work in Java for hash tables and collections\nhyde: A hash code is an integer value computed from an object's data, used to quickly locate it in a hash table. In Java, every object has a hashCode() method. For HashMap, objects with equal hashCodes go to the same bucket, and equals() resolves collisions. Override both hashCode() and equals() together."}
+{"input": "what is artificial intelligence", "output": "lex: artificial intelligence AI machine learning\nlex: artificial intelligence definition applications\nvec: what is artificial intelligence and how does it work at a fundamental level\nvec: what are the main types and applications of artificial intelligence technology\nhyde: Artificial intelligence (AI) is the simulation of human intelligence by computer systems. It encompasses machine learning (learning from data), natural language processing (understanding language), and computer vision (interpreting images). AI systems are trained on large datasets to recognize patterns and make predictions."}
+{"input": "what is interfaith dialogue?", "output": "lex: interfaith dialogue religious traditions\nlex: interfaith dialogue ecumenism interreligious\nvec: what is interfaith dialogue and why is it important for religious communities\nvec: how do different religious groups engage in interfaith dialogue to promote understanding\nhyde: Interfaith dialogue is the cooperative interaction between people of different religious traditions, aimed at mutual understanding rather than conversion. Organizations like the Parliament of the World's Religions bring together leaders from Christianity, Islam, Judaism, Hinduism, Buddhism, and others to discuss shared values and address social issues."}
+{"input": "what is darwin's theory of evolution", "output": "lex: Darwin theory evolution natural selection\nlex: Darwin Origin of Species evolution\nvec: what is Charles Darwin's theory of evolution by natural selection\nvec: how did Darwin explain the origin of species through natural selection and adaptation\nhyde: In On the Origin of Species (1859), Charles Darwin proposed that species evolve over generations through natural selection. Organisms with traits better suited to their environment survive and reproduce more, passing those advantageous traits to offspring. Over time, this leads to new species."}
+{"input": "what is permaculture gardening?", "output": "lex: permaculture gardening design principles\nlex: permaculture garden sustainable agriculture\nvec: what is permaculture gardening and how does it apply ecological design principles\nvec: how do you design a permaculture garden that mimics natural ecosystems\nhyde: Permaculture gardening applies ecological design principles to create self-sustaining food systems. It uses zones radiating from the home, guilds of companion plants, water harvesting with swales, and polyculture instead of monoculture. The goal is a garden that produces food with minimal external inputs."}
+{"input": "how to practice gratitude", "output": "lex: gratitude practice daily journal techniques\nlex: practicing gratitude mental health benefits\nvec: what are effective ways to practice gratitude in everyday life\nvec: how does a daily gratitude practice improve mental health and well-being\nhyde: Keep a gratitude journal and write three specific things you're grateful for each night—not vague statements, but concrete moments. Write a gratitude letter to someone who impacted you. During meals, pause to appreciate the food. Research shows consistent gratitude practice reduces anxiety and improves sleep."}
+{"input": "what are digital credentials?", "output": "lex: digital credentials badges certificates verification\nlex: digital credentials blockchain verifiable\nvec: what are digital credentials and how are they used to verify qualifications\nvec: how do digital badges and verifiable credentials work for education and employment\nhyde: Digital credentials are electronic records that verify a person's qualifications, skills, or achievements. They include digital badges, certificates, and micro-credentials issued by platforms like Credly or Accredible. Verifiable credentials use cryptographic signatures so employers can instantly confirm authenticity without contacting the issuer."}
+{"input": "how does culture influence ethics", "output": "lex: culture ethics moral values influence\nlex: cultural relativism ethics cross-cultural morality\nvec: how does culture shape people's ethical beliefs and moral values\nvec: what is the relationship between cultural norms and ethical decision-making\nhyde: Culture shapes ethics by defining what a society considers right or wrong. Collectivist cultures may prioritize group harmony and duty to family, while individualist cultures emphasize personal autonomy and rights. Cultural relativism argues that moral standards are culturally defined, while universalists hold that some ethical principles transcend culture."}
+{"input": "what is stream of consciousness?", "output": "lex: stream of consciousness writing technique\nlex: stream of consciousness Joyce Woolf literature\nvec: what is the stream of consciousness technique in literature and who pioneered it\nvec: how do authors use stream of consciousness to portray inner thoughts in fiction\nhyde: Stream of consciousness is a literary method that captures the continuous flow of a character's thoughts, memories, and perceptions without conventional structure. James Joyce's Ulysses and Virginia Woolf's Mrs Dalloway are landmark examples, using free-flowing prose, associative leaps, and minimal punctuation."}
+{"input": "how do body systems work together", "output": "lex: body systems interaction physiology\nlex: human body organ systems coordination\nvec: how do the different organ systems in the human body work together to maintain health\nvec: what are examples of body systems interacting with each other in human physiology\nhyde: The circulatory system delivers oxygen absorbed by the respiratory system to muscles controlled by the nervous system. The digestive system breaks down nutrients that the circulatory system distributes. The endocrine system releases hormones that regulate metabolism, growth, and the immune response."}
+{"input": "what are the principles of sustainable development", "output": "lex: sustainable development principles environmental social economic\nlex: sustainable development goals UN SDGs\nvec: what are the core principles of sustainable development and why do they matter\nvec: how do the three pillars of sustainable development balance environmental, social, and economic needs\nhyde: Sustainable development meets present needs without compromising future generations' ability to meet theirs (Brundtland Report, 1987). Its three pillars are environmental protection, social equity, and economic viability. The UN's 17 Sustainable Development Goals (SDGs) provide a framework for global action through 2030."}
+{"input": "how to evaluate startup ideas", "output": "lex: evaluate startup ideas validation framework\nlex: startup idea assessment market viability\nvec: how do entrepreneurs evaluate whether a startup idea is worth pursuing\nvec: what frameworks and criteria help assess the viability of a new startup idea\nhyde: Evaluate a startup idea on four dimensions: problem severity (is this a hair-on-fire problem?), market size (TAM > $1B?), competitive landscape (what's the unfair advantage?), and founder-market fit (do you have unique insight?). Validate by talking to 50+ potential customers before writing any code."}
+{"input": "how to write a business plan", "output": "lex: business plan writing template sections\nlex: business plan executive summary financial projections\nvec: how do you write a comprehensive business plan for a new company\nvec: what sections and information should be included in a startup business plan\nhyde: A business plan includes: executive summary, company description, market analysis, organization structure, product/service line, marketing strategy, funding request, and financial projections. Start with a clear problem statement and your unique solution. Include 3-year revenue forecasts with assumptions clearly stated."}
+{"input": "what are greenhouse gases?", "output": "lex: greenhouse gases CO2 methane atmosphere\nlex: greenhouse gas effect global warming climate\nvec: what are greenhouse gases and how do they contribute to global warming\nvec: which gases trap heat in Earth's atmosphere and cause the greenhouse effect\nhyde: Greenhouse gases—including carbon dioxide (CO2), methane (CH4), nitrous oxide (N2O), and fluorinated gases—trap infrared radiation in the atmosphere, warming the planet. CO2 is the most abundant from fossil fuel combustion. Methane, though shorter-lived, is 80 times more potent over 20 years."}
+{"input": "how do religions interpret the concept of sacredness?", "output": "lex: sacredness religion sacred concept interpretation\nlex: sacred space rituals holy religious traditions\nvec: how do different world religions define and interpret the concept of sacredness\nvec: what does sacredness mean across Christianity, Islam, Hinduism, Buddhism, and indigenous traditions\nhyde: In Christianity, sacredness is conferred by God's presence—churches, sacraments, and scripture are holy. In Hinduism, sacred rivers like the Ganges and temples house divine energy. Indigenous traditions see sacredness in natural features—mountains, groves, and animals. Islam treats the Quran and Mecca as inviolably sacred."}
+{"input": "when to introduce solid foods to a baby?", "output": "lex: introduce solid foods baby age months\nlex: baby first foods solids weaning schedule\nvec: at what age should you start introducing solid foods to a baby\nvec: what are the signs a baby is ready for solid foods and what foods to start with\nhyde: Most pediatricians recommend introducing solid foods around 6 months of age. Signs of readiness include sitting up with support, showing interest in food, and loss of the tongue-thrust reflex. Start with single-ingredient purees like sweet potato, avocado, or iron-fortified cereal, one new food every 3-5 days."}
+{"input": "renaissance literature", "output": "lex: Renaissance literature authors works\nlex: Renaissance literary period Shakespeare Petrarch humanism\nvec: what are the major works and characteristics of Renaissance literature\nvec: how did Renaissance humanism influence literature in Europe during the 14th-17th centuries\nhyde: Renaissance literature (14th-17th century) was shaped by humanism's emphasis on individual experience and classical learning. Key figures include Petrarch (sonnets), Boccaccio (Decameron), Shakespeare (plays and sonnets), Cervantes (Don Quixote), and Machiavelli (The Prince). Vernacular languages replaced Latin as the literary standard."}
+{"input": "how digital twins transform industries", "output": "lex: digital twins industry transformation simulation\nlex: digital twin technology manufacturing IoT\nvec: how are digital twins being used to transform industries like manufacturing and healthcare\nvec: what is digital twin technology and how does it improve operational efficiency in industry\nhyde: A digital twin is a virtual replica of a physical asset, process, or system, updated in real time with IoT sensor data. In manufacturing, digital twins simulate production lines to predict failures. In healthcare, patient-specific organ models guide surgical planning. Energy companies use them to optimize wind turbine performance."}
+{"input": "resilience training programs", "output": "lex: resilience training programs mental toughness\nlex: resilience building workplace employee training\nvec: what are resilience training programs and how do they build mental toughness\nvec: how do organizations implement resilience training for employees and teams\nhyde: Resilience training programs teach participants to manage stress, adapt to adversity, and recover from setbacks. Common frameworks include cognitive behavioral techniques, mindfulness practices, and strengths-based coaching. The U.S. Army's Master Resilience Training and Penn Resilience Program are widely studied evidence-based models."}
+{"input": "how to jump-start a car?", "output": "lex: jump-start car battery jumper cables\nlex: jump start dead car battery steps\nvec: what is the correct procedure to jump-start a car with a dead battery?\nvec: how do you connect jumper cables between two cars to restart a dead battery?\nhyde: To jump-start a car, connect the red clamp to the dead battery positive terminal, then to the donor battery positive. Connect black to donor negative, then to unpainted metal on the dead car. Start the donor car, wait 2 minutes, then start the dead car."}
+{"input": "google maps", "output": "lex: google maps directions navigation\nlex: google maps route planner\nlex: google maps API embed\nvec: how to use Google Maps for turn-by-turn driving directions\nvec: what features does Google Maps offer for route planning and navigation?\nhyde: Open Google Maps on your phone or browser, type your destination in the search bar, and tap \"Directions.\" Choose driving, transit, walking, or cycling. The app will show estimated travel time and alternative routes."}
+{"input": "sail smooth", "output": "lex: smooth sailing techniques\nlex: sailboat trim wind conditions\nlex: reduce boat heeling pitching\nvec: how do you achieve smooth sailing on a sailboat in varying wind conditions?\nvec: what techniques help reduce choppy motion and maintain a comfortable ride while sailing?\nhyde: To sail smoothly, keep the boat balanced by adjusting the mainsheet and jib trim. Ease the sails slightly in gusts to reduce heeling, and steer at an angle that minimizes pitching through waves."}
+{"input": "how to create a value proposition", "output": "lex: value proposition canvas template\nlex: unique value proposition statement\nlex: customer value proposition examples\nvec: how do you write a compelling value proposition for a product or service?\nvec: what framework helps define a unique value proposition that resonates with target customers?\nhyde: A strong value proposition clearly states what your product does, who it's for, and why it's better than alternatives. Use this formula: We help [target customer] achieve [desired outcome] by [unique approach], unlike [competitors] who [limitation]."}
+{"input": "where to buy used cars online", "output": "lex: buy used cars online marketplace\nlex: certified pre-owned cars website\nlex: online used car dealers Carvana AutoTrader\nvec: what are the best websites for buying used cars online with delivery?\nvec: which online platforms sell certified pre-owned vehicles with warranties?\nhyde: Popular online used car marketplaces include Carvana, CarMax, AutoTrader, and Cars.com. Carvana offers home delivery and a 7-day return policy. CarMax provides no-haggle pricing and certified inspections on all vehicles."}
+{"input": "what are the main practices in zoroastrianism?", "output": "lex: zoroastrianism practices rituals worship\nlex: zoroastrian fire temple prayer\nlex: zoroastrian navjote purity rituals\nvec: what are the core religious practices and rituals observed in Zoroastrianism?\nvec: how do Zoroastrians worship and what daily rituals do they follow?\nhyde: Zoroastrians pray five times daily (the five Gahs) facing a source of light. The sacred fire is maintained in fire temples as a symbol of Ahura Mazda's truth. Key rituals include the Navjote initiation ceremony, wearing the sudreh and kusti, and maintaining ritual purity."}
+{"input": "how to increase daily physical activity", "output": "lex: increase daily physical activity steps\nlex: exercise habits sedentary lifestyle\nlex: walking more daily movement tips\nvec: what are practical ways to add more physical activity to a sedentary daily routine?\nvec: how can someone gradually increase their daily step count and movement throughout the day?\nhyde: Take the stairs instead of the elevator, park farther from entrances, and set a timer to stand and walk every 30 minutes. Aim for 10,000 steps daily by adding short walks after meals. Even 5-minute movement breaks reduce the health risks of prolonged sitting."}
+{"input": "how does bioethics address cloning", "output": "lex: bioethics cloning human reproductive therapeutic\nlex: ethical issues cloning debate\nlex: cloning moral arguments bioethics\nvec: what ethical arguments do bioethicists raise for and against human cloning?\nvec: how does the field of bioethics evaluate therapeutic versus reproductive cloning?\nhyde: Bioethicists distinguish between reproductive cloning, which aims to create a new human being, and therapeutic cloning, which produces embryonic stem cells for medical research. Most bioethicists oppose reproductive cloning due to safety risks, concerns about human dignity, and the commodification of life."}
+{"input": "what is genetic engineering", "output": "lex: genetic engineering DNA modification\nlex: gene editing CRISPR recombinant DNA\nlex: genetically modified organisms GMO\nvec: what is genetic engineering and how does it work to modify an organism's DNA?\nvec: what are the main techniques used in genetic engineering such as CRISPR and recombinant DNA?\nhyde: Genetic engineering is the direct manipulation of an organism's DNA using biotechnology. Scientists can insert, delete, or modify genes to alter traits. Key techniques include recombinant DNA technology, which combines DNA from different sources, and CRISPR-Cas9, which allows precise editing at specific locations in the genome."}
+{"input": "how to test drive a car?", "output": "lex: test drive car checklist\nlex: car test drive tips what to check\nlex: dealership test drive questions\nvec: what should you look for and evaluate during a car test drive?\nvec: how do you properly test drive a vehicle before buying it?\nhyde: During a test drive, check acceleration, braking response, and steering feel. Drive on highways, local roads, and over bumps. Listen for unusual noises. Test the infotainment system, climate control, and visibility from all mirrors. Make sure the seats are comfortable and adjust to your driving position."}
+{"input": "how do philosophers approach death", "output": "lex: philosophy of death mortality\nlex: existentialism death Heidegger Epicurus\nlex: philosophical views afterlife mortality\nvec: how have major philosophers throughout history approached the concept of death and mortality?\nvec: what do existentialist and ancient philosophers say about the meaning of death?\nhyde: Epicurus argued that death is nothing to fear because when death exists, we do not. Heidegger saw death as central to authentic existence, calling it \"Being-toward-death.\" The Stoics taught that meditating on mortality (memento mori) leads to a more purposeful life."}
+{"input": "what is the capital of japan", "output": "lex: capital Japan Tokyo\nlex: Tokyo capital city Japan\nvec: what city is the capital of Japan?\nvec: when did Tokyo become the capital of Japan?\nhyde: Tokyo is the capital city of Japan. It became the capital in 1868 when Emperor Meiji moved the imperial seat from Kyoto. Tokyo, located on the eastern coast of Honshu, is the most populous metropolitan area in the world with over 37 million residents."}
+{"input": "what is the significance of the afterlife in different faiths?", "output": "lex: afterlife beliefs religions Christianity Islam Buddhism\nlex: heaven hell reincarnation afterlife\nlex: religious views life after death\nvec: how do different world religions view the afterlife and what happens after death?\nvec: what role does belief in the afterlife play in Christianity, Islam, Hinduism, and Buddhism?\nhyde: In Christianity, the afterlife involves heaven or hell based on faith and deeds. Islam teaches judgment day followed by paradise (Jannah) or hellfire. Hinduism and Buddhism believe in reincarnation, where the soul is reborn based on karma until achieving moksha or nirvana."}
+{"input": "what is 3d printing and how does it work", "output": "lex: 3D printing additive manufacturing process\nlex: FDM SLA 3D printer filament resin\nlex: 3D printing layer by layer CAD model\nvec: how does 3D printing work to create objects layer by layer from a digital model?\nvec: what are the main types of 3D printing technologies such as FDM and SLA?\nhyde: 3D printing, or additive manufacturing, builds objects layer by layer from a digital CAD file. The most common method, FDM (Fused Deposition Modeling), melts plastic filament and extrudes it through a nozzle. SLA (Stereolithography) uses a UV laser to cure liquid resin into solid layers."}
+{"input": "how do i contact my congressperson", "output": "lex: contact congressperson phone email address\nlex: find elected representative congress\nlex: write letter senator representative\nvec: how can I find and contact my U.S. congressional representative or senator?\nvec: what is the best way to reach out to my congressperson about an issue?\nhyde: Visit house.gov and enter your zip code to find your U.S. Representative. For senators, go to senate.gov. You can call their D.C. or district office, send an email through their website contact form, or mail a letter. Calling the Capitol switchboard at (202) 224-3121 connects you to any member's office."}
+{"input": "what is stream of consciousness writing?", "output": "lex: stream of consciousness writing technique\nlex: stream of consciousness literature Joyce Woolf\nlex: interior monologue narrative style\nvec: what is stream of consciousness as a literary writing technique?\nvec: how did authors like James Joyce and Virginia Woolf use stream of consciousness in their novels?\nhyde: Stream of consciousness is a narrative technique that presents a character's continuous flow of thoughts, feelings, and associations without conventional structure. James Joyce's \"Ulysses\" and Virginia Woolf's \"Mrs Dalloway\" are landmark examples, using long unpunctuated passages to mimic the way the mind actually works."}
+{"input": "how to use a ring light", "output": "lex: ring light setup photography video\nlex: ring light placement distance camera\nlex: ring light selfie video lighting\nvec: how do you set up and position a ring light for video recording or photography?\nvec: what are the best settings and distance for using a ring light for selfies and video calls?\nhyde: Place the ring light directly in front of your face at eye level, with the camera positioned in the center of the ring. Keep the light 12-24 inches from your face for an even, shadow-free glow. Adjust brightness to avoid overexposure. The circular catchlights in the eyes are a signature look."}
+{"input": "how to engage in civic duties", "output": "lex: civic duties voting jury duty community\nlex: civic engagement participation democracy\nlex: citizen responsibilities voting volunteering\nvec: what are the main civic duties citizens should participate in beyond voting?\nvec: how can someone actively engage in civic responsibilities in their local community?\nhyde: Civic duties include voting in elections, serving on a jury when called, staying informed about local issues, attending town hall meetings, volunteering for community organizations, and contacting elected officials about policy concerns. Voting in local elections has the most direct impact on your daily life."}
+{"input": "spain life", "output": "lex: living in Spain expat lifestyle\nlex: Spain cost of living culture daily life\nlex: move to Spain quality of life\nvec: what is daily life like for someone living in Spain as an expat or resident?\nvec: what is the cost of living and quality of life in Spain compared to other European countries?\nhyde: Life in Spain revolves around a later schedule than most of Europe. Lunch is the main meal, typically eaten between 2-3 PM, and dinner is served after 9 PM. The cost of living is lower than in northern Europe, with affordable housing outside Madrid and Barcelona. The climate, healthcare system, and social culture attract many expats."}
+{"input": "ai-driven analytics", "output": "lex: AI-driven analytics machine learning data\nlex: artificial intelligence business analytics platform\nlex: AI predictive analytics tools\nvec: how are AI and machine learning used to power data analytics and business intelligence?\nvec: what AI-driven analytics platforms help businesses make data-driven predictions?\nhyde: AI-driven analytics uses machine learning algorithms to automatically detect patterns, anomalies, and trends in large datasets. Unlike traditional BI tools, AI analytics can generate predictive forecasts, perform natural language queries, and surface insights without manual configuration."}
+{"input": "where to buy vintage home accessories", "output": "lex: vintage home accessories shop online\nlex: retro home decor antique store\nlex: vintage furniture accessories Etsy eBay\nvec: where can I buy vintage and antique home decor accessories online?\nvec: what are the best stores and websites for finding retro and vintage home furnishings?\nhyde: Shop vintage home accessories on Etsy, Chairish, and 1stDibs for curated antique finds. Local estate sales and flea markets often have unique pieces at lower prices. Ruby Lane specializes in antiques, while eBay offers a wide selection of retro decor from various eras."}
+{"input": "how to join a political party", "output": "lex: join political party registration\nlex: register Democrat Republican party membership\nlex: political party membership sign up\nvec: how do you officially join or register with a political party in the United States?\nvec: what is the process for becoming a member of a political party?\nhyde: To join a political party in the U.S., register with your state's election office by selecting a party affiliation on your voter registration form. You can register online, by mail, or at your local DMV. Some states allow you to change party affiliation at any time, while others have deadlines before primary elections."}
+{"input": "how to quit smoking?", "output": "lex: quit smoking methods nicotine\nlex: stop smoking cessation plan\nlex: nicotine replacement therapy patches gum\nvec: what are the most effective methods and strategies to quit smoking permanently?\nvec: how do nicotine replacement therapies and medications help people stop smoking?\nhyde: The most effective approach combines nicotine replacement therapy (patches, gum, or lozenges) with behavioral support. Prescription medications like varenicline (Chantix) and bupropion can double quit rates. Set a quit date, identify triggers, and call 1-800-QUIT-NOW for free coaching."}
+{"input": "what is phenomenological existentialism", "output": "lex: phenomenological existentialism Heidegger Sartre\nlex: phenomenology existentialism lived experience\nlex: existential phenomenology philosophy\nvec: what is phenomenological existentialism and how does it differ from other branches of existentialism?\nvec: how did Heidegger and Sartre combine phenomenology with existentialist philosophy?\nhyde: Phenomenological existentialism applies Husserl's phenomenological method to existential questions about human existence. Heidegger's \"Being and Time\" analyzes Dasein (being-there) through the structures of lived experience. Sartre extended this in \"Being and Nothingness,\" arguing that consciousness is always directed toward objects and that existence precedes essence."}
+{"input": "how to install car seat covers?", "output": "lex: install car seat covers DIY\nlex: car seat cover fitting instructions\nlex: universal seat covers installation steps\nvec: what is the step-by-step process for installing car seat covers?\nvec: how do you fit universal car seat covers on front and rear seats?\nhyde: Pull the seat cover over the top of the headrest and stretch it down over the backrest. Tuck the excess fabric into the gap between the seat and backrest. Hook the elastic straps underneath the seat and clip them together. For bucket seats, align the cover's seams with the seat contours before securing."}
+{"input": "what is the scientific process for drug development", "output": "lex: drug development process phases clinical trials\nlex: pharmaceutical drug approval FDA pipeline\nlex: preclinical clinical trial Phase 1 2 3\nvec: what are the stages of the scientific process for developing and approving a new pharmaceutical drug?\nvec: how does a drug go from laboratory discovery through clinical trials to FDA approval?\nhyde: Drug development follows a pipeline: discovery and preclinical testing (3-6 years), Phase I trials testing safety in small groups, Phase II trials evaluating efficacy, Phase III large-scale trials confirming effectiveness, and FDA review. The entire process typically takes 10-15 years and costs over $1 billion."}
+{"input": "what is climate change", "output": "lex: climate change global warming greenhouse gases\nlex: climate change causes effects CO2\nlex: global temperature rise fossil fuels\nvec: what is climate change and what are its primary causes and effects on the planet?\nvec: how do greenhouse gas emissions from fossil fuels contribute to global climate change?\nhyde: Climate change refers to long-term shifts in global temperatures and weather patterns. Since the Industrial Revolution, burning fossil fuels has released CO2 and other greenhouse gases that trap heat in the atmosphere, raising the average global temperature by about 1.1°C. This causes rising sea levels, extreme weather, and ecosystem disruption."}
+{"input": "how to sell a car privately?", "output": "lex: sell car privately steps title transfer\nlex: private car sale listing price\nlex: sell used car by owner paperwork\nvec: what are the steps to sell a car privately without a dealer?\nvec: what paperwork and documentation do you need to sell a car to a private buyer?\nhyde: To sell a car privately, first determine a fair price using Kelley Blue Book or Edmunds. Gather the title, maintenance records, and smog certificate. List the car on Craigslist, Facebook Marketplace, or AutoTrader. When meeting buyers, accept cashier's checks or cash. Sign the title over and file a release of liability with your DMV."}
+{"input": "how to analyze a political candidate's stance", "output": "lex: analyze political candidate stance positions\nlex: candidate policy positions voting record\nlex: compare political candidates issues\nvec: how do you research and analyze a political candidate's policy positions and voting record?\nvec: what tools and resources help voters compare political candidates on key issues?\nhyde: Review the candidate's official website for stated policy positions. Check their voting record on congress.gov or VoteSmart.org. Compare their stances on key issues using tools like ISideWith or BallotReady. Look for consistency between their statements and votes, and check campaign finance records on OpenSecrets."}
+{"input": "what is lean startup methodology", "output": "lex: lean startup methodology MVP\nlex: lean startup build measure learn\nlex: Eric Ries lean startup principles\nvec: what is the lean startup methodology and how does the build-measure-learn cycle work?\nvec: how does the lean startup approach use minimum viable products to validate business ideas?\nhyde: The lean startup methodology, developed by Eric Ries, emphasizes rapid iteration through the Build-Measure-Learn feedback loop. Start by building a Minimum Viable Product (MVP), measure how customers respond using actionable metrics, and learn whether to pivot or persevere. The goal is to reduce waste by validating assumptions before investing heavily."}
+{"input": "what is the renaissance", "output": "lex: Renaissance period history art culture\nlex: Renaissance 14th 15th 16th century Italy Europe\nlex: Renaissance art Leonardo Michelangelo humanism\nvec: what was the Renaissance period and what were its major cultural and artistic achievements?\nvec: how did the Renaissance transform European art, science, and intellectual thought?\nhyde: The Renaissance was a cultural movement spanning roughly the 14th to 17th centuries, originating in Florence, Italy. It marked a revival of classical Greek and Roman learning, emphasizing humanism, individualism, and secular inquiry. Major figures include Leonardo da Vinci, Michelangelo, and Galileo."}
+{"input": "faith respect", "output": "lex: interfaith respect tolerance\nlex: respecting different faiths religions\nlex: religious tolerance diversity beliefs\nvec: how can people show respect for different religious faiths and beliefs?\nvec: what does interfaith respect and dialogue look like in diverse communities?\nhyde: Respecting others' faith means listening without judgment, learning about different religious traditions, and recognizing that spiritual beliefs are deeply personal. Interfaith dialogue builds mutual understanding by focusing on shared values like compassion, justice, and community while honoring theological differences."}
+{"input": "where to find heirloom seed suppliers?", "output": "lex: heirloom seed suppliers catalog\nlex: buy heirloom seeds online non-GMO\nlex: heirloom vegetable seed company\nvec: where can I buy heirloom and non-GMO seeds from reputable suppliers?\nvec: what are the best heirloom seed companies that sell open-pollinated vegetable seeds?\nhyde: Top heirloom seed suppliers include Baker Creek Heirloom Seeds, Seed Savers Exchange, and Johnny's Selected Seeds. Baker Creek offers over 1,800 open-pollinated varieties with free shipping. Seed Savers Exchange is a nonprofit dedicated to preserving rare heirloom varieties through their seed bank and catalog."}
+{"input": "how do christians celebrate easter", "output": "lex: Christian Easter celebration traditions\nlex: Easter Sunday church service resurrection\nlex: Holy Week Good Friday Easter customs\nvec: how do Christians celebrate Easter and what are the main traditions of Holy Week?\nvec: what religious services and customs do Christians observe during the Easter season?\nhyde: Christians celebrate Easter as the resurrection of Jesus Christ on the third day after his crucifixion. Holy Week begins with Palm Sunday, followed by Maundy Thursday communion, Good Friday services, and Easter Sunday worship. Many churches hold sunrise services, and traditions include Easter egg hunts, lilies, and special meals."}
+{"input": "what are exchange-traded funds (etfs)", "output": "lex: exchange-traded funds ETFs investing\nlex: ETF index fund stock market\nlex: ETF vs mutual fund comparison\nvec: what are exchange-traded funds (ETFs) and how do they work as an investment?\nvec: how do ETFs differ from mutual funds and what are their advantages for investors?\nhyde: An exchange-traded fund (ETF) is a basket of securities that trades on a stock exchange like a single stock. ETFs typically track an index like the S&P 500 and offer diversification at a low expense ratio. Unlike mutual funds, ETFs can be bought and sold throughout the trading day at market price."}
+{"input": "how to enhance creativity?", "output": "lex: enhance creativity techniques exercises\nlex: boost creative thinking brainstorming\nlex: creativity habits daily practice\nvec: what are proven techniques and exercises to enhance creative thinking?\nvec: how can someone develop daily habits that boost creativity and generate new ideas?\nhyde: To enhance creativity, practice divergent thinking by generating many ideas without judgment. Keep a daily journal, expose yourself to new experiences, and set aside unstructured time for daydreaming. Research shows that walking, adequate sleep, and constraints can all stimulate creative problem-solving."}
+{"input": "what are the key features of taoist philosophy?", "output": "lex: Taoist philosophy Taoism key concepts\nlex: Tao Te Ching wu wei Taoism\nlex: Taoism yin yang natural harmony\nvec: what are the central concepts and key features of Taoist philosophy?\nvec: how does Taoism emphasize living in harmony with the Tao and the concept of wu wei?\nhyde: Taoism centers on the Tao (the Way), an ineffable force that underlies all existence. Key concepts include wu wei (non-action or effortless action), living in harmony with nature, and the balance of yin and yang. The Tao Te Ching by Laozi and the Zhuangzi are the foundational texts."}
+{"input": "how to effectively visualize scientific data", "output": "lex: scientific data visualization charts graphs\nlex: data visualization tools matplotlib Python\nlex: scientific figure plotting techniques\nvec: what are effective techniques for visualizing scientific data in charts and graphs?\nvec: which tools and software are best for creating publication-quality scientific data visualizations?\nhyde: Choose chart types that match your data: scatter plots for correlations, bar charts for comparisons, line plots for time series, and heatmaps for matrices. Use matplotlib or ggplot2 for publication figures. Minimize chart junk, label axes clearly, and use colorblind-friendly palettes like viridis."}
+{"input": "where to watch live nba games?", "output": "lex: watch live NBA games streaming\nlex: NBA League Pass live stream TV\nlex: NBA games broadcast ESPN TNT\nvec: where can I watch live NBA basketball games online or on TV?\nvec: what streaming services and TV channels broadcast live NBA games in 2025-2026?\nhyde: Live NBA games air on ESPN, TNT, and ABC during the regular season. NBA League Pass streams all out-of-market games. Streaming options include Sling TV, YouTube TV, and Hulu + Live TV for cable-free access. The NBA app offers free highlights and select live games on mobile."}
+{"input": "what was the impact of the industrial revolution on society?", "output": "lex: Industrial Revolution impact society economy\nlex: Industrial Revolution social changes urbanization\nlex: Industrial Revolution labor factories 18th 19th century\nvec: how did the Industrial Revolution transform society, economy, and daily life?\nvec: what were the major social and economic impacts of the Industrial Revolution on workers and cities?\nhyde: The Industrial Revolution (1760-1840) shifted economies from agrarian to industrial, triggering mass urbanization as workers moved to factory cities. It created a new working class, child labor, and pollution, but also raised living standards over time, enabled mass production, and spurred technological innovation in transportation and communication."}
+{"input": "wisdom gain", "output": "lex: gaining wisdom life experience\nlex: wisdom philosophy personal growth\nlex: how to become wiser decision making\nvec: how does a person gain wisdom through life experience and reflection?\nvec: what do philosophers and psychologists say about how wisdom is acquired?\nhyde: Wisdom is gained through a combination of diverse life experience, reflective thinking, and learning from mistakes. Psychologist Paul Baltes identified wisdom as expert knowledge about the fundamental pragmatics of life, including understanding uncertainty, managing emotions, and balancing competing interests."}
+{"input": "what is the role of local government", "output": "lex: local government role responsibilities\nlex: city county municipal government services\nlex: local government functions zoning schools police\nvec: what are the main roles and responsibilities of local government in a community?\nvec: how does local city and county government provide public services and manage community affairs?\nhyde: Local governments provide essential services including public schools, police and fire departments, road maintenance, water and sewer systems, zoning and land use planning, parks, and public transit. City councils and county boards set local taxes, pass ordinances, and approve budgets that directly affect residents' daily lives."}
+{"input": "what is metaphysical ethics", "output": "lex: metaphysical ethics philosophy morality\nlex: metaphysics ethics moral realism\nlex: metaethics ontology moral facts\nvec: what is metaphysical ethics and how does it relate to the nature of moral reality?\nvec: how does metaphysics inform ethical theory and questions about whether moral facts exist?\nhyde: Metaphysical ethics, closely related to metaethics, examines the ontological status of moral values. It asks whether moral facts exist independently of human minds (moral realism) or are human constructions (anti-realism). This branch investigates the metaphysical foundations that underlie ethical claims, such as whether \"goodness\" is a real property in the world."}
+{"input": "what is empiricism", "output": "lex: empiricism philosophy knowledge experience\nlex: empiricism Locke Hume sensory evidence\nlex: empiricism vs rationalism epistemology\nvec: what is empiricism in philosophy and how does it claim knowledge is acquired through experience?\nvec: how did philosophers like John Locke and David Hume develop the theory of empiricism?\nhyde: Empiricism is the philosophical theory that all knowledge is derived from sensory experience rather than innate ideas. John Locke argued the mind starts as a \"tabula rasa\" (blank slate), and David Hume extended this by arguing that even causal relationships are known only through observation and habit, not reason alone."}
+{"input": "what is epistemology", "output": "lex: epistemology philosophy knowledge\nlex: epistemology theory of knowledge justified belief\nlex: epistemology truth belief justification\nvec: what is epistemology and what questions does it address about knowledge and belief?\nvec: how does epistemology study the nature, sources, and limits of human knowledge?\nhyde: Epistemology is the branch of philosophy concerned with the nature, scope, and limits of knowledge. It examines questions like: What is knowledge? How is it different from mere belief? What counts as justification? The classic definition from Plato is that knowledge is justified true belief, though this was challenged by Gettier in 1963."}
+{"input": "what is the significance of community in spirituality?", "output": "lex: community spirituality religious fellowship\nlex: spiritual community congregation sangha\nlex: communal worship spiritual practice\nvec: why is community considered important in spiritual and religious practice?\nvec: how does belonging to a spiritual community enhance personal faith and practice?\nhyde: Spiritual communities provide shared worship, accountability, and mutual support that deepen individual faith. In Christianity, the church body gathers for fellowship; in Buddhism, the sangha is one of the Three Jewels; in Judaism, a minyan of ten is required for communal prayer. Communal practice reinforces commitment and provides belonging."}
+{"input": "what is the difference between memoir and autobiography?", "output": "lex: memoir vs autobiography difference\nlex: memoir autobiography literary genre\nlex: memoir personal narrative autobiography life story\nvec: what is the difference between a memoir and an autobiography as literary genres?\nvec: how does a memoir's scope and focus differ from a full autobiography?\nhyde: An autobiography covers the author's entire life chronologically, from birth to the present. A memoir focuses on a specific theme, period, or set of experiences from the author's life, emphasizing emotional truth and reflection. Memoirs are often more literary and thematic, while autobiographies are more comprehensive and factual."}
+{"input": "what is the significance of allegory?", "output": "lex: allegory literary device significance\nlex: allegory examples literature symbolism\nlex: allegorical writing Pilgrim's Progress Animal Farm\nvec: what is an allegory in literature and why is it a significant literary device?\nvec: how do authors use allegory to convey deeper moral or political meanings through symbolic narratives?\nhyde: An allegory is a narrative in which characters, events, and settings symbolically represent abstract ideas or moral concepts. Orwell's \"Animal Farm\" allegorizes the Russian Revolution; Bunyan's \"Pilgrim's Progress\" represents the Christian spiritual journey. Allegory allows writers to critique society, explore complex ideas, and engage readers on multiple levels."}
+{"input": "portrait photography tips", "output": "lex: portrait photography tips lighting posing\nlex: portrait photo camera settings lens\nlex: headshot portrait natural light composition\nvec: what are the best tips for taking professional-quality portrait photographs?\nvec: how should you set up lighting, posing, and camera settings for portrait photography?\nhyde: Use an 85mm or 50mm lens at f/1.8-f/2.8 to create a pleasing background blur. Position your subject near a window for soft natural light, or use a reflector to fill shadows. Focus on the nearest eye, shoot at eye level, and direct your subject to angle their body 45 degrees to the camera."}
+{"input": "how to build passive income", "output": "lex: build passive income streams\nlex: passive income ideas investments dividends\nlex: earn passive income rental property online\nvec: what are the most reliable ways to build passive income streams?\nvec: how can someone start generating passive income through investments, rental property, or online businesses?\nhyde: Common passive income sources include dividend stocks yielding 3-5% annually, rental properties generating monthly cash flow, index fund investments, creating digital products or online courses, and building affiliate marketing websites. Start by investing in a low-cost S&P 500 index fund and reinvesting dividends."}
+{"input": "how to choose the right camera", "output": "lex: choose camera DSLR mirrorless beginner\nlex: camera buying guide sensor megapixels\nlex: best camera photography type budget\nvec: how do you choose the right camera for your photography needs and budget?\nvec: what factors should you consider when deciding between DSLR and mirrorless cameras?\nhyde: Decide what you'll shoot most: landscapes, portraits, video, or street photography. Mirrorless cameras are lighter with faster autofocus, while DSLRs offer longer battery life and more lens options. Key specs to compare: sensor size (full-frame vs APS-C), megapixels, autofocus points, and video capabilities. Budget $500-1000 for a capable starter body."}
+{"input": "what is the significance of the great barrier reef?", "output": "lex: Great Barrier Reef significance ecosystem\nlex: Great Barrier Reef coral biodiversity Australia\nlex: Great Barrier Reef marine life conservation\nvec: why is the Great Barrier Reef ecologically significant and important to protect?\nvec: what makes the Great Barrier Reef the world's largest coral reef system and why is it under threat?\nhyde: The Great Barrier Reef, stretching over 2,300 km along Australia's northeast coast, is the world's largest coral reef system and is visible from space. It supports over 1,500 fish species, 400 coral species, and countless marine organisms. It's a UNESCO World Heritage Site threatened by coral bleaching from rising ocean temperatures."}
+{"input": "how to celebrate holi festival", "output": "lex: Holi festival celebration traditions India\nlex: Holi festival of colors powder\nlex: how to celebrate Holi customs food\nvec: how is the Holi festival celebrated and what are its main traditions and customs?\nvec: what are the traditional ways to celebrate Holi with colors, food, and bonfires?\nhyde: Holi is celebrated over two days: Holika Dahan (bonfire night) and Rangwali Holi (color day). On the morning of Holi, people gather outdoors to throw colored powders (gulal) and spray colored water at each other. Traditional foods include gujiya (sweet dumplings), thandai (spiced milk drink), and puran poli."}
+{"input": "how to negotiate a salary?", "output": "lex: negotiate salary offer tips\nlex: salary negotiation techniques counter offer\nlex: job offer salary negotiation script\nvec: what are effective strategies for negotiating a higher salary during a job offer?\nvec: how do you prepare for and conduct a successful salary negotiation?\nhyde: Research the market rate for your role on Glassdoor, Levels.fyi, or Payscale before negotiating. When you receive an offer, express enthusiasm, then say \"I was hoping for something closer to [target].\" Always negotiate based on market data and your value, not personal needs. Aim 10-20% above the initial offer."}
+{"input": "what is sacred geometry?", "output": "lex: sacred geometry patterns symbols\nlex: sacred geometry golden ratio Fibonacci\nlex: sacred geometry Flower of Life Metatron\nvec: what is sacred geometry and what mathematical patterns are considered sacred?\nvec: how do sacred geometry concepts like the golden ratio and Flower of Life appear in nature and architecture?\nhyde: Sacred geometry assigns symbolic and spiritual meaning to geometric shapes and proportions found in nature. Key patterns include the Flower of Life (overlapping circles), Metatron's Cube, the golden ratio (1.618), and the Fibonacci spiral. These patterns appear in sunflower seeds, nautilus shells, and ancient temple architecture."}
+{"input": "what is political corruption", "output": "lex: political corruption bribery abuse of power\nlex: government corruption examples types\nlex: political corruption embezzlement nepotism\nvec: what is political corruption and what forms does it take in government?\nvec: how does political corruption such as bribery and embezzlement undermine democratic governance?\nhyde: Political corruption is the abuse of public office for private gain. Forms include bribery (accepting payments for favorable decisions), embezzlement of public funds, nepotism (appointing relatives to positions), patronage, and vote-buying. Transparency International's Corruption Perceptions Index ranks countries by perceived levels of public sector corruption."}
+{"input": "what are the rituals of islam", "output": "lex: Islam rituals Five Pillars worship\nlex: Islamic prayer salat fasting Ramadan\nlex: Muslim rituals hajj pilgrimage zakat\nvec: what are the main rituals and religious practices in Islam?\nvec: how do Muslims observe the Five Pillars of Islam including prayer, fasting, and pilgrimage?\nhyde: The Five Pillars of Islam form the core rituals: Shahada (declaration of faith), Salat (five daily prayers facing Mecca), Zakat (annual charitable giving of 2.5% of wealth), Sawm (fasting during Ramadan from dawn to sunset), and Hajj (pilgrimage to Mecca at least once in a lifetime)."}
+{"input": "neural networks", "output": "lex: neural networks deep learning artificial\nlex: neural network architecture layers neurons\nlex: convolutional recurrent neural network CNN RNN\nvec: how do artificial neural networks work and what are the different types of architectures?\nvec: what are the basic components of a neural network including layers, weights, and activation functions?\nhyde: A neural network consists of layers of interconnected nodes (neurons). Input data passes through hidden layers where each connection has a weight. Each neuron applies an activation function (like ReLU or sigmoid) to the weighted sum of its inputs. During training, backpropagation adjusts weights to minimize the loss function."}
+{"input": "what is the trolley problem", "output": "lex: trolley problem ethics thought experiment\nlex: trolley problem utilitarianism moral dilemma\nlex: trolley problem Philippa Foot\nvec: what is the trolley problem and why is it important in ethical philosophy?\nvec: how does the trolley problem illustrate the conflict between utilitarian and deontological ethics?\nhyde: The trolley problem, introduced by Philippa Foot in 1967, asks: a runaway trolley will kill five people unless you pull a lever to divert it onto a track where it will kill one person. Do you pull the lever? Utilitarians say yes (saving more lives), while deontologists argue that actively causing someone's death is morally different from allowing deaths to occur."}
+{"input": "digital transformation in businesses", "output": "lex: digital transformation business strategy\nlex: digital transformation enterprise technology cloud\nlex: business digitization automation workflows\nvec: how are businesses implementing digital transformation to modernize their operations and strategy?\nvec: what technologies drive digital transformation in enterprises, including cloud computing and automation?\nhyde: Digital transformation involves integrating digital technology into all areas of a business, changing how it operates and delivers value. Key components include migrating to cloud infrastructure, automating manual processes, adopting data analytics for decision-making, and building digital customer experiences. McKinsey reports that 70% of transformation efforts fall short of their goals."}
+{"input": "how to protect business data", "output": "lex: protect business data security cybersecurity\nlex: data protection encryption backup strategy\nlex: business data security firewall access control\nvec: what are the most important steps to protect sensitive business data from breaches and loss?\nvec: how should a business implement data protection measures including encryption, backups, and access controls?\nhyde: Protect business data with layered security: encrypt data at rest and in transit using AES-256, implement role-based access controls, enable multi-factor authentication for all accounts, maintain automated offsite backups with the 3-2-1 rule, and train employees on phishing awareness. Conduct regular security audits and penetration testing."}
+{"input": "what is cellular respiration", "output": "lex: cellular respiration ATP glucose\nlex: cellular respiration glycolysis Krebs cycle\nlex: aerobic respiration mitochondria electron transport\nvec: what is cellular respiration and how do cells convert glucose into ATP energy?\nvec: what are the three stages of cellular respiration: glycolysis, the Krebs cycle, and the electron transport chain?\nhyde: Cellular respiration is the metabolic process by which cells break down glucose (C6H12O6) to produce ATP. It occurs in three stages: glycolysis (in the cytoplasm, producing 2 ATP), the Krebs cycle (in the mitochondrial matrix, producing 2 ATP), and the electron transport chain (on the inner mitochondrial membrane, producing 34 ATP)."}
+{"input": "how technology impacts scientific research", "output": "lex: technology impact scientific research tools\nlex: technology advances science instruments computing\nlex: AI machine learning scientific discovery\nvec: how has modern technology transformed the way scientific research is conducted?\nvec: what role do computing, AI, and advanced instruments play in accelerating scientific discovery?\nhyde: Technology has transformed scientific research through high-throughput sequencing (enabling genomics), electron microscopy (revealing molecular structures), supercomputers (running complex simulations), and machine learning (identifying patterns in massive datasets). AI tools like AlphaFold have predicted protein structures that took decades to solve experimentally."}
+{"input": "how wearable technology is evolving", "output": "lex: wearable technology evolution smartwatch fitness\nlex: wearable tech health monitoring sensors 2025 2026\nlex: wearable devices Apple Watch Garmin health tracking\nvec: how is wearable technology evolving in terms of health monitoring and smart features?\nvec: what are the latest advances in wearable devices for fitness tracking and medical diagnostics?\nhyde: Wearable technology has evolved from basic step counters to sophisticated health monitors. Modern smartwatches track heart rate, blood oxygen, ECG, sleep stages, and skin temperature. Emerging features include continuous glucose monitoring, blood pressure sensing, and AI-powered health alerts that can detect atrial fibrillation and sleep apnea."}
+{"input": "what is the significance of compassion in ethics?", "output": "lex: compassion ethics moral philosophy\nlex: compassion morality empathy ethical theory\nlex: ethics of care compassion Schopenhauer\nvec: why is compassion considered a central virtue in ethical philosophy?\nvec: how do ethical theories incorporate compassion as a foundation for moral behavior?\nhyde: Schopenhauer argued that compassion (Mitleid) is the foundation of all morality, as it allows us to recognize the suffering of others as our own. The ethics of care, developed by Carol Gilligan and Nel Noddings, places compassionate relationships at the center of moral reasoning, contrasting with abstract rule-based approaches like Kantianism."}
+{"input": "what is the principle of double effect", "output": "lex: principle of double effect ethics\nlex: double effect doctrine Aquinas moral philosophy\nlex: double effect intended foreseen consequences\nvec: what is the principle of double effect and how does it apply in moral philosophy?\nvec: how does the doctrine of double effect distinguish between intended and foreseen consequences of an action?\nhyde: The principle of double effect, originating from Thomas Aquinas, holds that an action with both good and bad effects is morally permissible if: (1) the action itself is not wrong, (2) the bad effect is not intended, (3) the bad effect is not the means to the good effect, and (4) the good effect outweighs the bad. It's commonly applied in medical ethics and just war theory."}
+{"input": "what are the latest trends in interior design", "output": "lex: interior design trends 2025 2026\nlex: interior design trends colors materials\nlex: home decor trends furniture styles\nvec: what are the newest interior design trends for homes in 2025 and 2026?\nvec: which colors, materials, and furniture styles are trending in interior design right now?\nhyde: Top interior design trends for 2025-2026 include warm earth tones replacing cool grays, curved furniture and organic shapes, bold textured walls, sustainable and natural materials like rattan and stone, statement lighting, and maximalist layering. Warm woods, bouclé fabrics, and vintage-inspired pieces continue to dominate living spaces."}
+{"input": "how to research candidates before voting", "output": "lex: research candidates before voting election\nlex: voter guide candidate positions issues\nlex: candidate research voting record platform\nvec: how can voters research political candidates and their positions before an election?\nvec: what resources help voters compare candidates' platforms and voting records before casting a ballot?\nhyde: Before voting, check nonpartisan voter guides from Vote411.org (League of Women Voters) or BallotReady. Review candidates' official websites for policy positions, and check voting records on VoteSmart.org. Read local newspaper endorsements, watch candidate debates, and verify claims on fact-checking sites like PolitiFact."}
+{"input": "how did the roman empire impact culture?", "output": "lex: Roman Empire cultural impact legacy\nlex: Roman Empire influence law language architecture\nlex: Rome culture art Latin Western civilization\nvec: how did the Roman Empire shape Western culture, law, and language?\nvec: what lasting cultural impacts did the Roman Empire have on architecture, government, and society?\nhyde: The Roman Empire's cultural legacy includes Latin (the root of Romance languages), Roman law (the basis of civil law systems worldwide), architectural innovations like arches, aqueducts, and concrete, republican government concepts, road networks, and the spread of Christianity. Roman art, literature, and engineering influenced Western civilization for centuries."}
+{"input": "explain monotheism", "output": "lex: monotheism one God religion\nlex: monotheism Christianity Islam Judaism\nlex: monotheism definition history theology\nvec: what is monotheism and which major world religions practice the belief in one God?\nvec: how did monotheism develop historically and what distinguishes it from polytheism?\nhyde: Monotheism is the belief in a single, all-powerful God. The three major monotheistic religions are Judaism, Christianity, and Islam, all tracing their roots to Abraham. Judaism was among the earliest monotheistic faiths, emerging around 2000 BCE. Monotheism contrasts with polytheism (many gods) and differs from henotheism (one chief god among many)."}
+{"input": "how to replace windshield wipers?", "output": "lex: replace windshield wipers installation\nlex: change wiper blades car DIY\nlex: windshield wiper replacement size\nvec: how do you replace windshield wiper blades on a car step by step?\nvec: what size windshield wipers does my car need and how do I install them?\nhyde: Lift the wiper arm away from the windshield. Press the small tab where the blade meets the arm and slide the old blade off the hook. Slide the new blade onto the J-hook until it clicks into place. Lower the arm back gently. Check your owner's manual or an auto parts store's fit guide for the correct blade size."}
+{"input": "what are tectonic plates", "output": "lex: tectonic plates Earth crust geology\nlex: plate tectonics continental drift boundaries\nlex: tectonic plates earthquake volcano subduction\nvec: what are tectonic plates and how does plate tectonics explain earthquakes and volcanic activity?\nvec: how do tectonic plates move and interact at convergent, divergent, and transform boundaries?\nhyde: Tectonic plates are massive slabs of Earth's lithosphere that float on the semi-fluid asthenosphere. There are 15 major plates that move 1-10 cm per year. At convergent boundaries, plates collide causing mountains and subduction zones; at divergent boundaries, plates separate creating mid-ocean ridges; at transform boundaries, plates slide past each other causing earthquakes."}
+{"input": "airbnb bookings", "output": "lex: Airbnb bookings reservations how to\nlex: Airbnb book rental property listing\nlex: Airbnb booking tips cancellation policy\nvec: how do you book a rental property on Airbnb and what should you know before reserving?\nvec: what are the Airbnb booking policies including cancellation, fees, and payment?\nhyde: To book on Airbnb, search by destination and dates, filter by price, type, and amenities, and review photos and guest reviews. Request to book or use Instant Book listings for immediate confirmation. Airbnb charges a service fee of 14-16%. Check the cancellation policy (Flexible, Moderate, or Strict) before confirming."}
+{"input": "how do you develop a writing voice?", "output": "lex: develop writing voice style\nlex: writing voice tone author style\nlex: find unique writing voice techniques\nvec: how does a writer develop their own unique writing voice and style?\nvec: what exercises and practices help writers find and strengthen their authentic voice?\nhyde: Developing a writing voice requires reading widely, writing consistently, and paying attention to what feels natural. Write the way you think and speak. Experiment with sentence length, word choice, and rhythm. Read your work aloud to hear your voice. Imitate writers you admire, then gradually let your own patterns emerge through regular practice."}
+{"input": "what is devotion in religious context", "output": "lex: devotion religion religious worship\nlex: devotion faith prayer bhakti piety\nlex: religious devotion spiritual practice\nvec: what does devotion mean in a religious context and how is it practiced across faiths?\nvec: how do different religions express devotion through prayer, worship, and spiritual discipline?\nhyde: Religious devotion refers to profound love, loyalty, and dedication to God or a divine reality, expressed through prayer, worship, and spiritual practice. In Hinduism, bhakti (devotion) is a path to liberation through loving surrender to a deity. In Christianity, devotion involves daily prayer, scripture reading, and sacramental participation."}
+{"input": "what is skepticism in philosophy", "output": "lex: skepticism philosophy epistemology doubt\nlex: philosophical skepticism Pyrrhonism Descartes\nlex: skepticism knowledge certainty questioning\nvec: what is philosophical skepticism and how does it question the possibility of knowledge?\nvec: how did Pyrrhonian skepticism and Cartesian doubt influence Western philosophical thought?\nhyde: Philosophical skepticism questions whether certain knowledge is possible. Pyrrhonian skepticism (from Pyrrho of Elis) suspends judgment on all claims, arguing that for every argument there is an equally strong counterargument. Descartes used methodological doubt—doubting everything that could be doubted—to arrive at \"cogito ergo sum\" as an indubitable foundation."}
+{"input": "fix teeth", "output": "lex: fix teeth dental repair options\nlex: broken chipped teeth treatment dentist\nlex: dental restoration crowns veneers bonding\nvec: what are the options for fixing damaged, chipped, or broken teeth?\nvec: how do dentists repair teeth using crowns, veneers, bonding, and other dental treatments?\nhyde: Common dental repairs include bonding (composite resin applied to chipped teeth, $100-400), porcelain veneers (thin shells covering the front surface, $500-2500 per tooth), crowns (caps covering the entire tooth, $800-1500), and dental implants for missing teeth ($3000-5000). Treatment depends on the extent of damage."}
+{"input": "what are social media photography tips?", "output": "lex: social media photography tips Instagram\nlex: phone photography social media lighting composition\nlex: Instagram photo tips editing filters\nvec: what are the best photography tips for creating engaging social media content?\nvec: how do you take better photos for Instagram and other social media platforms using a phone?\nhyde: Shoot during golden hour (the hour after sunrise or before sunset) for warm, flattering light. Use the rule of thirds grid on your phone camera. Keep backgrounds clean and uncluttered. Edit consistently using the same preset or filter for a cohesive feed. Shoot in natural light whenever possible and avoid using flash."}
+{"input": "what is gerrymandering", "output": "lex: gerrymandering redistricting electoral districts\nlex: gerrymandering political manipulation voting\nlex: gerrymandering packing cracking congressional\nvec: what is gerrymandering and how does it manipulate electoral district boundaries?\nvec: how does gerrymandering use techniques like packing and cracking to influence election outcomes?\nhyde: Gerrymandering is the manipulation of electoral district boundaries to favor a particular political party. Two main techniques are \"packing\" (concentrating opposition voters into a few districts) and \"cracking\" (spreading them across many districts to dilute their vote). The term dates to 1812 when Governor Elbridge Gerry approved a district shaped like a salamander."}
+{"input": "how do the arts contribute to moral understanding?", "output": "lex: arts moral understanding ethics\nlex: art literature ethics empathy\nlex: arts moral education philosophical perspective\nvec: how do the arts such as literature, film, and visual art contribute to moral understanding?\nvec: in what ways do artistic works cultivate empathy and ethical awareness in audiences?\nhyde: Literature, theater, and film place audiences in the shoes of characters facing moral dilemmas, cultivating empathy and ethical reflection. Martha Nussbaum argues that novels develop moral imagination by exposing readers to lives unlike their own. Art invites us to confront injustice, question assumptions, and feel the weight of ethical choices."}
+{"input": "what are the main beliefs of jainism?", "output": "lex: Jainism beliefs principles religion\nlex: Jainism ahimsa non-violence karma\nlex: Jain philosophy anekantavada moksha\nvec: what are the core beliefs and principles of Jainism as a religion?\nvec: how does Jainism emphasize non-violence (ahimsa) and what are its main philosophical tenets?\nhyde: Jainism's core beliefs include ahimsa (non-violence toward all living beings), anekantavada (many-sidedness of truth), and aparigraha (non-attachment). Jains believe the soul (jiva) accumulates karma through actions and must purify itself through ethical living, asceticism, and meditation to achieve moksha (liberation from the cycle of rebirth)."}
+{"input": "how do philosophers define happiness", "output": "lex: philosophers define happiness philosophy\nlex: happiness eudaimonia Aristotle hedonism\nlex: philosophical theories happiness well-being\nvec: how have major philosophers throughout history defined happiness and well-being?\nvec: what is the difference between Aristotle's eudaimonia and hedonistic views of happiness?\nhyde: Aristotle defined happiness (eudaimonia) as flourishing through virtuous activity over a complete life, not mere pleasure. Epicurus identified happiness with ataraxia (tranquility) and the absence of pain. Utilitarians like Mill equated happiness with pleasure but distinguished higher (intellectual) from lower (bodily) pleasures. Modern positive psychology studies happiness as subjective well-being."}
+{"input": "how to train a dog to sit", "output": "lex: train dog sit command\nlex: dog training sit positive reinforcement\nlex: teach puppy sit treat method\nvec: what is the step-by-step method for training a dog to sit on command?\nvec: how do you use positive reinforcement to teach a dog or puppy the sit command?\nhyde: Hold a treat close to your dog's nose, then slowly move your hand up so the dog's head follows the treat and their bottom lowers. The moment they sit, say \"sit,\" give the treat, and praise them. Repeat 5-10 times per session, 2-3 sessions daily. Within a week, most dogs learn to sit on verbal command alone."}
+{"input": "how to choose a family-friendly restaurant?", "output": "lex: family-friendly restaurant kids menu\nlex: choose restaurant families children\nlex: kid-friendly dining options reviews\nvec: how do you find and choose a family-friendly restaurant suitable for dining with children?\nvec: what features make a restaurant good for families with young kids?\nhyde: Look for restaurants with a dedicated kids' menu, high chairs, and a casual atmosphere that tolerates noise. Check Google or Yelp reviews filtered for \"family-friendly.\" Booth seating, crayons or activity sheets, and an early dinner option are good signs. Fast-casual restaurants often work well since kids don't have to wait long for food."}
+{"input": "what is historical context in literature?", "output": "lex: historical context literature analysis\nlex: historical context literary criticism period\nlex: literature historical background social conditions\nvec: what does historical context mean when analyzing and interpreting a work of literature?\nvec: how does understanding the historical period and social conditions help interpret literary texts?\nhyde: Historical context in literature refers to the social, political, economic, and cultural conditions during the time a work was written. Understanding that \"1984\" was written in 1948 during the rise of totalitarian states deepens its meaning. Historical context helps readers interpret themes, character motivations, and the author's intent within their time period."}
+{"input": "where to buy mid-century modern furniture", "output": "lex: buy mid-century modern furniture store\nlex: mid-century modern furniture online vintage\nlex: MCM furniture West Elm Design Within Reach\nvec: where can I buy authentic or reproduction mid-century modern furniture?\nvec: what are the best stores and websites for purchasing mid-century modern style furniture?\nhyde: Shop mid-century modern furniture at West Elm, Design Within Reach (DWR), and Article for contemporary reproductions. For vintage originals, check Chairish, 1stDibs, and local estate sales. IKEA offers affordable MCM-inspired pieces. Facebook Marketplace and Craigslist often have authentic Eames, Knoll, and Herman Miller pieces at lower prices."}
+{"input": "how to transition kids to new schools?", "output": "lex: transition kids new school tips\nlex: children changing schools adjustment\nlex: help child new school anxiety transfer\nvec: how can parents help their children transition smoothly to a new school?\nvec: what strategies help kids adjust emotionally and socially when changing schools?\nhyde: Visit the new school together before the first day so the building feels familiar. Meet the teacher and tour the classroom. Maintain routines at home for stability. Encourage your child to talk about their feelings and validate their anxiety. Arrange playdates with new classmates early on, and stay in contact with teachers during the first few weeks."}
+{"input": "what is graphic design?", "output": "lex: graphic design visual communication\nlex: graphic design typography layout color\nlex: graphic design tools Adobe Figma\nvec: what is graphic design and what skills and tools does a graphic designer use?\nvec: how does graphic design combine typography, color, and layout to communicate visually?\nhyde: Graphic design is the craft of creating visual content to communicate messages. Designers use typography, color theory, layout, and imagery to create logos, websites, posters, packaging, and more. Key tools include Adobe Photoshop, Illustrator, InDesign, and Figma. The field spans print design, web/UI design, branding, and motion graphics."}
+{"input": "what is the latest iphone model", "output": "lex: latest iPhone model 2025 2026\nlex: newest iPhone Apple release\nlex: iPhone 17 features specs\nvec: what is the latest iPhone model released by Apple and what are its key features?\nvec: what are the specs and improvements in the newest iPhone compared to previous models?\nhyde: The iPhone 16 series launched in September 2024 with the A18 chip, a dedicated Camera Control button, and Apple Intelligence features. The iPhone 16 Pro and Pro Max feature a 48MP main camera, titanium design, and improved battery life. The iPhone 17 lineup is expected in September 2025."}
+{"input": "where to find open access research papers", "output": "lex: open access research papers free\nlex: open access journals articles database\nlex: free academic papers PubMed arXiv\nvec: where can I find free open access research papers and academic articles?\nvec: what databases and websites provide open access to peer-reviewed scientific papers?\nhyde: Access free research papers through PubMed Central (biomedical), arXiv (physics, math, CS), SSRN (social sciences), and DOAJ (Directory of Open Access Journals). Google Scholar often links to free PDF versions. Unpaywall is a browser extension that finds legal free versions of paywalled papers. Many universities also maintain institutional repositories."}
+{"input": "how to improve interpersonal skills", "output": "lex: improve interpersonal skills communication\nlex: interpersonal skills active listening empathy\nlex: people skills social interaction workplace\nvec: what are effective ways to improve interpersonal and communication skills?\nvec: how can someone develop better listening, empathy, and social skills in personal and professional settings?\nhyde: Improve interpersonal skills by practicing active listening: maintain eye contact, avoid interrupting, and paraphrase what you heard. Ask open-ended questions to show genuine interest. Develop empathy by considering others' perspectives before responding. Practice assertive communication—express your needs clearly while respecting others. Seek feedback on how you come across."}
+{"input": "math model", "output": "lex: mathematical model equations simulation\nlex: math modeling real-world applications\nlex: mathematical model differential equations optimization\nvec: what is a mathematical model and how is it used to represent real-world systems?\nvec: how do mathematicians build models using equations to simulate and predict outcomes?\nhyde: A mathematical model uses equations and formulas to represent the behavior of a real-world system. For example, the SIR model uses differential equations to predict disease spread: dS/dt = -βSI, dI/dt = βSI - γI, dR/dt = γI. Models are validated by comparing predictions to observed data and refined iteratively."}
+{"input": "what is digital transformation", "output": "lex: digital transformation definition strategy\nlex: digital transformation technology business process\nlex: digital transformation cloud automation data-driven\nvec: what is digital transformation and how does it change how organizations operate?\nvec: what are the key components and stages of digital transformation in a business?\nhyde: Digital transformation is the process of using digital technologies to fundamentally change how an organization operates and delivers value. It goes beyond digitizing existing processes—it involves rethinking business models, customer experiences, and operational workflows using cloud computing, AI, data analytics, and automation."}
+{"input": "how to improve project outcomes", "output": "lex: improve project outcomes management\nlex: project success factors planning execution\nlex: project management methodology agile results\nvec: what strategies and practices improve project outcomes and increase the chance of success?\nvec: how can project managers improve delivery, stakeholder satisfaction, and results?\nhyde: Improve project outcomes by defining clear objectives and success criteria upfront, engaging stakeholders early and often, breaking work into short iterations with regular checkpoints, and managing risks proactively. Use retrospectives to learn from each phase. Projects with clear scope, executive sponsorship, and empowered teams are 2-3x more likely to succeed."}
+{"input": "what is the relationship between ethics and happiness?", "output": "lex: ethics happiness philosophy relationship\nlex: virtue ethics happiness eudaimonia Aristotle\nlex: morality well-being ethical living\nvec: what is the philosophical relationship between living ethically and being happy?\nvec: how does Aristotle argue that virtue and ethics are connected to happiness and human flourishing?\nhyde: Aristotle argued that happiness (eudaimonia) is achieved through virtuous living—not pleasure alone, but the active exercise of reason and moral virtue over a lifetime. The Stoics similarly held that virtue is sufficient for happiness. Utilitarianism inverts this: moral actions are those that maximize total happiness. The question of whether being moral makes you happy remains debated."}
+{"input": "how does philosophy explore the nature of truth?", "output": "lex: philosophy truth nature theories\nlex: correspondence coherence pragmatic theory truth\nlex: truth philosophy epistemology logic\nvec: how do philosophical theories explain the nature of truth and what makes a statement true?\nvec: what are the main theories of truth in philosophy such as correspondence, coherence, and pragmatic theories?\nhyde: Philosophy examines truth through several theories. The correspondence theory holds that truth is agreement between a proposition and reality. The coherence theory says a statement is true if it fits consistently within a system of beliefs. The pragmatic theory (James, Dewey) defines truth as what works in practice. Deflationary theories argue that \"true\" adds nothing beyond the assertion itself."}
+{"input": "rain drop", "output": "lex: raindrop formation size shape\nlex: raindrop water cycle precipitation\nlex: rain droplet physics terminal velocity\nvec: how do raindrops form and what determines their size and shape as they fall?\nvec: what is the science behind raindrop formation in the water cycle and precipitation?\nhyde: Raindrops form when water vapor condenses around tiny particles (condensation nuclei) in clouds. As droplets collide and merge, they grow heavy enough to fall. Contrary to the teardrop image, falling raindrops are actually shaped like hamburger buns—flattened on the bottom by air resistance. Average raindrops are 1-2mm in diameter and fall at about 20 mph."}
+{"input": "what is magical realism?", "output": "lex: magical realism literary genre\nlex: magical realism Garcia Marquez literature\nlex: magical realism Latin American fiction examples\nvec: what is magical realism as a literary genre and what are its defining characteristics?\nvec: how do authors like Gabriel Garcia Marquez blend the magical and mundane in magical realism?\nhyde: Magical realism is a literary genre in which supernatural elements appear in an otherwise realistic setting, treated as ordinary by the characters. Gabriel Garcia Marquez's \"One Hundred Years of Solitude\" is the quintessential example, where events like a character ascending to heaven while hanging laundry are narrated matter-of-factly alongside everyday life in Macondo."}
+{"input": "how to write a film review", "output": "lex: write film review movie critique\nlex: film review structure format examples\nlex: movie review writing tips analysis\nvec: how do you write a well-structured and engaging film review?\nvec: what elements should be included in a film review such as plot summary, analysis, and rating?\nhyde: Start with a hook—a striking observation about the film. Provide a brief, spoiler-free plot summary (2-3 sentences). Evaluate the directing, acting, cinematography, screenplay, and score. Support your opinion with specific scenes or examples. Address who would enjoy the film and rate it on your chosen scale. Keep the review between 400-800 words."}
+{"input": "what is the current inflation rate", "output": "lex: current inflation rate CPI 2025 2026\nlex: inflation rate United States economy\nlex: consumer price index inflation percentage\nvec: what is the current U.S. inflation rate and how is it measured by the CPI?\nvec: what is the latest consumer price index data showing the annual inflation rate?\nhyde: The U.S. Bureau of Labor Statistics measures inflation through the Consumer Price Index (CPI), which tracks the average change in prices paid by consumers for goods and services. The annual inflation rate is calculated by comparing the current CPI to the same month one year prior. Check bls.gov/cpi for the latest monthly release."}
+{"input": "what is the function of dialogue?", "output": "lex: dialogue function purpose communication\nlex: dialogue conversation role\nvec: what purpose does dialogue serve in communication and storytelling\nvec: how does dialogue function in literature and everyday interaction\nhyde: Dialogue serves multiple functions: it conveys information between characters, reveals personality and motivation, advances the plot, and creates tension. In everyday communication, dialogue enables mutual understanding and negotiation of meaning."}
+{"input": "what is the importance of peer review", "output": "lex: peer review importance scientific publishing\nlex: peer review process academic research\nvec: why is peer review important in academic and scientific publishing\nvec: how does the peer review process ensure quality in research papers\nhyde: Peer review is the cornerstone of scientific publishing. Before a paper is accepted, independent experts evaluate the methodology, data analysis, and conclusions. This process catches errors, prevents fraudulent claims, and maintains the credibility of published research."}
+{"input": "what is the impact of the printing press", "output": "lex: printing press impact history Gutenberg\nlex: printing press effects literacy knowledge\nvec: how did the invention of the printing press change society and the spread of knowledge\nvec: what were the historical consequences of Gutenberg's printing press\nhyde: Gutenberg's printing press, invented around 1440, revolutionized the production of books. By making texts affordable and widely available, it increased literacy rates, enabled the Protestant Reformation, and accelerated the Scientific Revolution across Europe."}
+{"input": "what is open science", "output": "lex: open science definition principles\nlex: open access open data research transparency\nvec: what does open science mean and what are its core principles\nvec: how does open science promote transparency and accessibility in research\nhyde: Open science is a movement to make scientific research, data, and dissemination accessible to all. It encompasses open access publishing, open data sharing, open-source software, and transparent methodologies, aiming to accelerate discovery through collaboration."}
+{"input": "swim class", "output": "lex: swimming classes lessons beginner\nlex: swim class schedule enrollment\nvec: where can I find swimming classes for beginners or children\nvec: what should I expect from a swimming lesson and how to enroll\nhyde: Our swim classes are available for all ages and skill levels. Beginner classes focus on water safety, floating, and basic strokes. Intermediate classes cover freestyle, backstroke, and treading water. Sessions run 30-45 minutes with certified instructors."}
+{"input": "what is the bhagavad gita", "output": "lex: Bhagavad Gita Hindu scripture meaning\nlex: Bhagavad Gita Krishna Arjuna teachings\nvec: what is the Bhagavad Gita and what are its central teachings\nvec: what role does the Bhagavad Gita play in Hindu philosophy and practice\nhyde: The Bhagavad Gita is a 700-verse Hindu scripture that forms part of the Mahabharata epic. It is a dialogue between Prince Arjuna and the god Krishna, addressing duty (dharma), devotion (bhakti), knowledge (jnana), and selfless action (karma yoga)."}
+{"input": "how does plant photosynthesis work", "output": "lex: photosynthesis process plants chlorophyll\nlex: light reactions Calvin cycle carbon dioxide\nvec: how do plants convert sunlight into energy through photosynthesis\nvec: what are the steps of photosynthesis in plant cells\nhyde: Photosynthesis occurs in chloroplasts. In the light reactions, chlorophyll absorbs sunlight to split water molecules, producing ATP and NADPH. In the Calvin cycle, these molecules drive the fixation of CO2 into glucose, releasing oxygen as a byproduct."}
+{"input": "what is a black hole", "output": "lex: black hole definition physics space\nlex: black hole event horizon singularity\nvec: what is a black hole and how does it form in space\nvec: how do black holes work according to general relativity\nhyde: A black hole is a region in space where gravity is so intense that nothing, not even light, can escape. It forms when a massive star collapses at the end of its life. The boundary is called the event horizon, beyond which lies the singularity."}
+{"input": "how ecosystems function", "output": "lex: ecosystem function energy flow nutrient cycling\nlex: ecosystems trophic levels food web\nvec: how do ecosystems function through energy flow and nutrient cycling\nvec: what are the key processes that keep ecosystems balanced and healthy\nhyde: Ecosystems function through interconnected processes: producers capture solar energy via photosynthesis, consumers transfer energy through food webs, and decomposers recycle nutrients back into the soil. Water, carbon, and nitrogen cycle continuously through biotic and abiotic components."}
+{"input": "how to increase home resale value", "output": "lex: increase home resale value renovations\nlex: home improvement ROI property value\nvec: what home improvements increase resale value the most\nvec: how can I boost my home's market price before selling\nhyde: Kitchen and bathroom remodels offer the highest ROI, typically recovering 60-80% of costs. Other high-value improvements include replacing the front door, adding a deck, and upgrading to energy-efficient windows. Fresh paint and curb appeal landscaping are low-cost, high-impact upgrades."}
+{"input": "how to design an effective scientific study", "output": "lex: scientific study design methodology\nlex: research design controls variables sample size\nvec: how do you design a rigorous and effective scientific study\nvec: what steps are involved in planning a well-controlled research experiment\nhyde: An effective study begins with a clear hypothesis and defined variables. Choose an appropriate design (randomized controlled trial, cohort, etc.), calculate the required sample size for statistical power, establish controls, and pre-register your protocol to reduce bias."}
+{"input": "how to set up a campfire", "output": "lex: campfire setup build fire outdoors\nlex: campfire fire pit kindling tinder logs\nvec: how do you properly build and start a campfire outdoors\nvec: what materials and steps are needed to set up a safe campfire\nhyde: To build a campfire, clear a fire ring down to bare soil. Place a tinder bundle of dry leaves or paper in the center. Stack small kindling sticks in a teepee shape around it. Light the tinder and gradually add larger logs as the fire grows. Keep water nearby to extinguish."}
+{"input": "where to learn digital marketing", "output": "lex: digital marketing courses online training\nlex: learn digital marketing SEO social media\nvec: where can I take courses to learn digital marketing skills\nvec: what are the best online platforms for learning SEO, social media, and digital advertising\nhyde: Google Digital Garage offers a free Fundamentals of Digital Marketing course with certification. HubSpot Academy covers inbound marketing and content strategy. Coursera and Udemy feature paid courses on SEO, PPC, email marketing, and social media advertising."}
+{"input": "how to remove car dents?", "output": "lex: car dent removal DIY repair\nlex: paintless dent repair PDR technique\nvec: how can I remove dents from my car at home without repainting\nvec: what are the methods for fixing small dents on a car body\nhyde: For small dents, try the boiling water method on plastic bumpers or use a suction cup dent puller. Paintless dent repair (PDR) uses metal rods to push dents out from behind the panel. For deeper dents, apply body filler, sand smooth, and repaint."}
+{"input": "what is a moral code", "output": "lex: moral code definition ethics principles\nlex: moral code rules behavior right wrong\nvec: what is a moral code and how does it guide human behavior\nvec: how do societies and individuals develop a set of moral principles\nhyde: A moral code is a set of principles or rules that define right and wrong conduct. It may be derived from religious teachings, cultural traditions, philosophical reasoning, or personal reflection. Examples include the Ten Commandments, Kantian ethics, and utilitarianism."}
+{"input": "what is cloud computing", "output": "lex: cloud computing definition services\nlex: cloud computing IaaS PaaS SaaS\nvec: what is cloud computing and how do cloud services work\nvec: what are the different types of cloud computing services like IaaS, PaaS, and SaaS\nhyde: Cloud computing delivers computing resources—servers, storage, databases, networking, and software—over the internet on a pay-as-you-go basis. The three main service models are Infrastructure as a Service (IaaS), Platform as a Service (PaaS), and Software as a Service (SaaS)."}
+{"input": "how to practice meditation", "output": "lex: meditation practice techniques beginners\nlex: mindfulness meditation breathing focus\nvec: how do I start a daily meditation practice as a beginner\nvec: what are simple meditation techniques for reducing stress and improving focus\nhyde: Start with 5-10 minutes daily. Sit comfortably, close your eyes, and focus on your breath. When thoughts arise, notice them without judgment and gently return attention to breathing. Guided meditation apps like Headspace or Insight Timer can help beginners build consistency."}
+{"input": "what is xeriscaping?", "output": "lex: xeriscaping drought-tolerant landscaping water conservation\nlex: xeriscape garden design dry climate plants\nvec: what is xeriscaping and how does it reduce water usage in landscaping\nvec: how do you design a xeriscape garden with drought-resistant plants\nhyde: Xeriscaping is a landscaping approach that minimizes water use by selecting drought-tolerant native plants, improving soil with compost, using efficient drip irrigation, applying mulch to retain moisture, and reducing lawn area. It originated in arid regions of the western United States."}
+{"input": "what are the main beliefs of buddhism", "output": "lex: Buddhism beliefs Four Noble Truths Eightfold Path\nlex: Buddhist teachings karma dharma nirvana\nvec: what are the core beliefs and teachings of Buddhism\nvec: what do Buddhists believe about suffering, enlightenment, and the path to nirvana\nhyde: Buddhism is founded on the Four Noble Truths: life involves suffering (dukkha), suffering arises from craving (tanha), suffering can end (nirodha), and the path to its end is the Noble Eightfold Path. Key concepts include karma, rebirth, impermanence (anicca), and non-self (anatta)."}
+{"input": "how to reduce carbon footprint?", "output": "lex: reduce carbon footprint emissions tips\nlex: lower carbon footprint energy transportation diet\nvec: what are effective ways to reduce my personal carbon footprint\nvec: how can individuals lower their greenhouse gas emissions in daily life\nhyde: The biggest personal reductions come from driving less or switching to an EV, flying less frequently, eating less red meat, improving home insulation, and switching to renewable energy. A plant-rich diet can cut food-related emissions by up to 50%."}
+{"input": "how to save for a child's education?", "output": "lex: save child education fund college\nlex: 529 plan education savings account\nvec: how should I save money for my child's college education\nvec: what are the best investment accounts for saving for a child's education\nhyde: A 529 plan is one of the most tax-advantaged ways to save for education. Contributions grow tax-free, and withdrawals for qualified expenses (tuition, books, room and board) are also tax-free. Many states offer additional tax deductions for contributions."}
+{"input": "what is the best way to learn python programming?", "output": "lex: learn Python programming beginner tutorial\nlex: Python programming course exercises projects\nvec: what is the most effective way to learn Python programming from scratch\nvec: which Python courses and resources are best for beginners learning to code\nhyde: Start with an interactive tutorial like Python.org's official tutorial or Codecademy's Python course. Practice daily on sites like LeetCode or HackerRank. Build small projects—a calculator, web scraper, or to-do app—to solidify concepts. Read \"Automate the Boring Stuff with Python\" for practical applications."}
+{"input": "how to grow roses from cuttings?", "output": "lex: grow roses cuttings propagation\nlex: rose cutting rooting hormone planting\nvec: how do you propagate roses from stem cuttings at home\nvec: what is the step-by-step process for rooting rose cuttings\nhyde: Take a 6-8 inch cutting from a healthy rose stem just below a leaf node. Remove lower leaves, dip the cut end in rooting hormone, and insert into moist potting mix. Cover with a plastic bag to maintain humidity. Roots typically form in 4-8 weeks. Transplant once established."}
+{"input": "sustainable architecture", "output": "lex: sustainable architecture green building design\nlex: sustainable building materials energy efficient\nvec: what is sustainable architecture and what design principles does it follow\nvec: how do architects design energy-efficient and environmentally friendly buildings\nhyde: Sustainable architecture minimizes environmental impact through passive solar design, natural ventilation, high-performance insulation, and renewable energy integration. Materials like cross-laminated timber, recycled steel, and low-VOC finishes reduce embodied carbon."}
+{"input": "what is the concept of moral luck", "output": "lex: moral luck philosophy concept\nlex: moral luck Thomas Nagel Bernard Williams\nvec: what is the philosophical concept of moral luck and why is it controversial\nvec: how does moral luck challenge our ideas about responsibility and blame\nhyde: Moral luck, introduced by Thomas Nagel and Bernard Williams in 1976, refers to situations where moral judgment depends on factors beyond a person's control. A drunk driver who arrives home safely is judged differently from one who kills a pedestrian, despite identical recklessness."}
+{"input": "task wait", "output": "lex: async task wait await\nlex: task wait timeout concurrency\nvec: how to wait for an asynchronous task to complete in programming\nvec: how to use await or task wait for concurrent operations\nhyde: Use `await task` in async/await patterns to wait for completion. In C#, `Task.Wait()` blocks synchronously while `await` yields control. In Python, `await asyncio.gather(*tasks)` waits for multiple coroutines. Use timeouts to prevent indefinite blocking."}
+{"input": "latest findings in climate science", "output": "lex: climate science research findings 2025 2026\nlex: climate change latest studies temperature emissions\nvec: what are the most recent scientific findings about climate change in 2025-2026\nvec: what do the latest climate science studies reveal about global warming trends\nhyde: Recent studies in 2025 confirm that global average temperatures have exceeded 1.5°C above pre-industrial levels. Ocean heat content reached record highs, and Arctic sea ice extent continued its decline. New research links accelerated ice sheet loss in Greenland and Antarctica to rising sea levels."}
+{"input": "how to lose weight fast?", "output": "lex: lose weight fast safe methods\nlex: weight loss diet exercise calorie deficit\nvec: what are safe and effective methods to lose weight quickly\nvec: how can I create a calorie deficit to lose weight without harming my health\nhyde: Safe weight loss is 1-2 pounds per week through a calorie deficit of 500-1000 calories daily. Combine a protein-rich diet with strength training and cardio. Avoid crash diets—they cause muscle loss and metabolic slowdown. Drink water, sleep 7-9 hours, and track food intake for accountability."}
+{"input": "ukraine", "output": "lex: Ukraine country history conflict\nlex: Ukraine war geopolitics Kyiv\nvec: what is the current situation in Ukraine and the ongoing conflict\nvec: what is the history and geopolitical context of Ukraine\nhyde: Ukraine is a country in Eastern Europe with a population of approximately 44 million. Since February 2022, it has been engaged in a full-scale war following Russia's invasion. Kyiv is the capital. Ukraine has deep historical ties to both European and post-Soviet geopolitics."}
+{"input": "http client", "output": "lex: HTTP client library request\nlex: HTTP client fetch API REST\nvec: how to make HTTP requests using an HTTP client library\nvec: which HTTP client libraries are available for making API calls in different languages\nhyde: An HTTP client sends requests to web servers and processes responses. In JavaScript, use `fetch()` or `axios`. In Python, use `requests` or `httpx`. In Go, use `net/http`. Typical methods include GET, POST, PUT, DELETE. Set headers, handle timeouts, and parse JSON responses."}
+{"input": "how to vlog with a smartphone", "output": "lex: vlog smartphone video recording tips\nlex: smartphone vlogging equipment setup\nvec: how do I start vlogging using only my smartphone\nvec: what equipment and techniques make smartphone vlogs look professional\nhyde: To vlog with a smartphone, use the rear camera for higher quality. Invest in a small tripod or gimbal for stability, a clip-on microphone for clear audio, and a ring light for indoor filming. Shoot in 1080p or 4K, frame at eye level, and edit with apps like CapCut or InShot."}
+{"input": "what are the elements of short stories?", "output": "lex: short story elements plot character setting\nlex: short story structure literary elements\nvec: what are the key literary elements that make up a short story\nvec: how are plot, character, setting, and theme used in short story writing\nhyde: The essential elements of a short story are plot (the sequence of events), character (the people involved), setting (time and place), conflict (the central struggle), theme (the underlying message), and point of view (the narrative perspective). Short stories typically focus on a single incident."}
+{"input": "how to fix car key fob?", "output": "lex: car key fob fix repair battery replacement\nlex: key fob not working reprogram\nvec: how do I fix a car key fob that stopped working\nvec: how to replace the battery or reprogram a car key fob\nhyde: If your key fob stops working, replace the battery first—open the case with a flat screwdriver and swap in a new CR2032 or CR2025 coin cell. If it still fails, reprogram it: consult your owner's manual for the key-turn sequence or visit a dealer for re-pairing."}
+{"input": "how to grow orchids indoors?", "output": "lex: grow orchids indoors care guide\nlex: orchid indoor growing light water humidity\nvec: how do you care for orchids when growing them indoors\nvec: what light, water, and humidity conditions do indoor orchids need\nhyde: Phalaenopsis orchids thrive indoors with bright indirect light, such as an east-facing window. Water once a week by soaking the roots, then draining completely. Maintain 50-70% humidity with a pebble tray. Fertilize biweekly with diluted orchid fertilizer. Repot every 1-2 years in bark medium."}
+{"input": "how to prepare a scientific presentation", "output": "lex: scientific presentation preparation slides\nlex: research talk conference presentation tips\nvec: how do you prepare and deliver an effective scientific presentation\nvec: what are tips for creating clear slides for a research conference talk\nhyde: Structure your talk as: introduction with context, methods, key results, and conclusions. Use one main idea per slide. Minimize text—use figures and graphs. Practice timing (typically 12 minutes for a 15-minute slot). Anticipate questions about methodology and limitations."}
+{"input": "ai", "output": "lex: artificial intelligence AI machine learning\nlex: AI deep learning neural networks LLM\nvec: what is artificial intelligence and how does modern AI technology work\nvec: what are the main branches and applications of artificial intelligence\nhyde: Artificial intelligence (AI) refers to computer systems that perform tasks typically requiring human intelligence, such as recognizing speech, making decisions, and translating languages. Modern AI relies on machine learning, particularly deep neural networks and large language models (LLMs)."}
+{"input": "how to write a research proposal", "output": "lex: research proposal writing guide\nlex: research proposal structure sections\nvec: how do you write a strong research proposal for a grant or thesis\nvec: what sections and elements should a research proposal include\nhyde: A research proposal typically includes: title, abstract, introduction with background and significance, literature review, research questions or hypotheses, methodology, timeline, budget, and references. Clearly state the gap your research will fill and justify the chosen methods."}
+{"input": "how to stop negative self-talk?", "output": "lex: stop negative self-talk techniques\nlex: negative self-talk cognitive behavioral therapy\nvec: how can I stop negative self-talk and replace it with positive thinking\nvec: what psychological techniques help overcome critical inner dialogue\nhyde: Cognitive behavioral therapy (CBT) teaches you to identify and challenge negative automatic thoughts. When you catch yourself thinking \"I always fail,\" reframe it: \"I struggled this time, but I've succeeded before.\" Keep a thought journal, practice self-compassion, and label thoughts as thoughts, not facts."}
+{"input": "how scientific collaboration advances research", "output": "lex: scientific collaboration research advancement\nlex: interdisciplinary research teamwork co-authorship\nvec: how does collaboration between scientists accelerate research progress\nvec: why is interdisciplinary teamwork important in advancing scientific discovery\nhyde: Multi-institutional collaboration allows researchers to share equipment, data, and expertise across disciplines. The Human Genome Project involved 20 institutions across six countries. Studies show that co-authored papers receive more citations and have higher reproducibility than single-author work."}
+{"input": "how to measure business performance", "output": "lex: business performance metrics KPIs\nlex: measure business performance revenue profit\nvec: what key performance indicators are used to measure business success\nvec: how do companies track and evaluate their business performance\nhyde: Key business performance metrics include revenue growth rate, net profit margin, customer acquisition cost (CAC), customer lifetime value (CLV), employee productivity, and return on investment (ROI). Use dashboards and quarterly reviews to track KPIs against targets."}
+{"input": "how to volunteer for a political campaign", "output": "lex: volunteer political campaign election\nlex: campaign volunteering canvassing phone banking\nvec: how can I sign up to volunteer for a political campaign\nvec: what kinds of volunteer work are available on political campaigns\nhyde: To volunteer, visit the candidate's website and fill out the volunteer form. Common roles include canvassing door-to-door, phone banking, text banking, organizing events, and driving voters to polls on election day. Most campaigns welcome volunteers of all experience levels."}
+{"input": "how to bake a chocolate cake?", "output": "lex: chocolate cake recipe bake from scratch\nlex: baking chocolate cake ingredients instructions\nvec: how do I bake a moist chocolate cake from scratch at home\nvec: what is a simple recipe for homemade chocolate cake\nhyde: Preheat oven to 350°F. Mix 2 cups flour, 2 cups sugar, 3/4 cup cocoa powder, 2 tsp baking soda, and 1 tsp salt. Add 2 eggs, 1 cup buttermilk, 1 cup hot coffee, and 1/2 cup oil. Pour into greased pans and bake 30-35 minutes. Frost with chocolate ganache."}
+{"input": "how do mystics approach spirituality?", "output": "lex: mystics spirituality mystical experience\nlex: mysticism spiritual practice contemplation\nvec: how do mystics across traditions approach spiritual experience and union with the divine\nvec: what practices and beliefs characterize mystical approaches to spirituality\nhyde: Mystics seek direct, personal experience of the divine through contemplation, prayer, and meditation. Christian mystics like Meister Eckhart pursued union with God; Sufi mystics practice dhikr (remembrance of God); and Hindu mystics use yoga and devotion to experience Brahman."}
+{"input": "how cultural festivals affect community bonding", "output": "lex: cultural festivals community bonding social cohesion\nlex: festivals community identity traditions\nvec: how do cultural festivals strengthen community bonds and social cohesion\nvec: what role do cultural celebrations play in bringing communities together\nhyde: Cultural festivals create shared experiences that reinforce collective identity. Studies show communities with regular festivals report higher levels of social trust and neighborly interaction. Events like Diwali, Carnival, and Lunar New Year bring together diverse groups through food, music, and ritual."}
+{"input": "how to follow election results", "output": "lex: follow election results live tracking\nlex: election night results coverage 2026\nvec: how can I follow live election results on election night\nvec: what websites and apps provide real-time election result tracking\nhyde: Follow live election results on the Associated Press (AP) election page, which aggregates official county-level results. Major outlets like CNN, NYT, and BBC offer interactive maps. Sign up for push notifications from news apps. Official state election websites post certified results."}
+{"input": "how to sell a car to a dealership?", "output": "lex: sell car dealership trade-in value\nlex: selling car dealer offer negotiation\nvec: how do I sell my used car to a dealership and get a fair price\nvec: what steps should I follow when trading in or selling a car to a dealer\nhyde: Get your car's market value from Kelley Blue Book or Edmunds before visiting a dealer. Clean the car, gather maintenance records, and bring the title. Get quotes from multiple dealers. The dealer will inspect the car, run a vehicle history report, and make an offer based on condition and mileage."}
+{"input": "what is a conductor in physics", "output": "lex: conductor physics electrical conductivity\nlex: electrical conductor materials electrons\nvec: what is an electrical conductor and how does it work in physics\nvec: what makes certain materials good conductors of electricity\nhyde: An electrical conductor is a material that allows electric current to flow freely through it. Metals like copper, silver, and aluminum are excellent conductors because they have free electrons in their outer shells that move easily when a voltage is applied. Conductivity depends on temperature and material structure."}
+{"input": "what is the significance of civil disobedience?", "output": "lex: civil disobedience significance history\nlex: civil disobedience Thoreau MLK Gandhi nonviolent protest\nvec: why is civil disobedience significant in political and social movements\nvec: how have acts of civil disobedience changed laws and society throughout history\nhyde: Civil disobedience—the deliberate, nonviolent refusal to obey unjust laws—has driven major social change. Thoreau coined the term in 1849; Gandhi used it to help end British rule in India; and Martin Luther King Jr. employed it during the American civil rights movement to challenge segregation."}
+{"input": "how to understand research articles", "output": "lex: understand research articles reading papers\nlex: read scientific journal article structure\nvec: how do I read and understand scientific research articles effectively\nvec: what strategy helps beginners comprehend academic journal papers\nhyde: Start by reading the abstract for the main findings. Then read the introduction for context and the conclusion for takeaways. Next, examine figures and tables. Finally, read methods and results in detail. Look up unfamiliar terms. Read the paper multiple times—comprehension improves with each pass."}
+{"input": "how to start a 401(k)", "output": "lex: 401k start retirement plan employer\nlex: 401k enrollment contribution match\nvec: how do I set up and start contributing to a 401(k) retirement plan\nvec: what are the steps to enroll in my employer's 401(k) plan\nhyde: Enroll through your employer's HR or benefits portal. Choose a contribution percentage—aim for at least enough to get the full employer match (typically 3-6% of salary). Select investment funds based on your retirement timeline. For 2026, the contribution limit is $23,500 ($31,000 if over 50)."}
+{"input": "how to organize a grassroots campaign", "output": "lex: grassroots campaign organizing strategy\nlex: grassroots organizing community mobilization\nvec: how do you organize a grassroots political or community campaign from scratch\nvec: what are the key steps in building a grassroots movement for a cause\nhyde: Start by defining your goal and identifying your base—who cares about this issue? Build a leadership team, create a volunteer database, and develop talking points. Use door-to-door canvassing, community meetings, social media, and petitions to grow support. Track commitments and follow up consistently."}
+{"input": "what are the fundamental teachings of sikhism?", "output": "lex: Sikhism fundamental teachings beliefs\nlex: Sikh Guru Nanak five articles of faith\nvec: what are the core beliefs and teachings of Sikhism\nvec: what did Guru Nanak and the Sikh Gurus teach about God and living\nhyde: Sikhism, founded by Guru Nanak in the 15th century Punjab, teaches belief in one God (Ik Onkar), equality of all people, honest living (kirat karni), sharing with others (vand chakko), and remembrance of God (naam japna). The Guru Granth Sahib is the eternal Guru and holy scripture."}
+{"input": "what are aboriginal dreamtime stories", "output": "lex: Aboriginal Dreamtime stories Australian Indigenous\nlex: Dreamtime creation mythology Aboriginal culture\nvec: what are Aboriginal Australian Dreamtime stories and what do they represent\nvec: how do Dreamtime stories explain creation and law in Aboriginal culture\nhyde: Dreamtime (or Dreaming) stories are the foundational narratives of Aboriginal Australian peoples. They describe how ancestral beings shaped the land, created animals and plants, and established laws and customs. These stories are passed down through oral tradition, song, dance, and art, and remain central to Indigenous identity."}
+{"input": "how do philosophers approach the meaning of life", "output": "lex: meaning of life philosophy existentialism\nlex: philosophers purpose existence meaning\nvec: how have different philosophers addressed the question of life's meaning\nvec: what do existentialist and other philosophical traditions say about the purpose of life\nhyde: Existentialists like Sartre argued life has no inherent meaning—we must create it through our choices. Aristotle proposed eudaimonia (flourishing) as life's purpose. Camus explored the absurd, suggesting we must find meaning despite an indifferent universe. Eastern philosophy often points to liberation from suffering."}
+{"input": "how to make compost at home?", "output": "lex: compost home DIY composting bin\nlex: composting kitchen scraps yard waste\nvec: how do I start composting food scraps and yard waste at home\nvec: what is the step-by-step process for making compost in a backyard bin\nhyde: Layer brown materials (dried leaves, cardboard) and green materials (kitchen scraps, grass clippings) in a 3:1 ratio. Keep the pile moist like a wrung-out sponge. Turn it every 1-2 weeks with a pitchfork. Avoid meat, dairy, and oils. Finished compost is dark, crumbly, and earthy-smelling in 2-6 months."}
+{"input": "how to reduce food waste?", "output": "lex: reduce food waste tips prevention\nlex: food waste reduction meal planning storage\nvec: how can I reduce food waste at home through planning and storage\nvec: what strategies help households throw away less food\nhyde: Plan meals weekly and shop with a list to avoid overbuying. Store produce properly—leafy greens in airtight containers, herbs in water. Use FIFO (first in, first out) in your fridge. Freeze leftovers and overripe fruit. Compost scraps you can't eat. The average household wastes 30% of purchased food."}
+{"input": "how to learn about native american culture", "output": "lex: Native American culture history learn\nlex: Indigenous peoples traditions tribal nations\nvec: how can I respectfully learn about Native American culture and history\nvec: what are good resources for understanding Indigenous peoples' traditions and heritage\nhyde: Visit the National Museum of the American Indian (Smithsonian) or local tribal cultural centers. Read works by Native authors like Joy Harjo, Tommy Orange, and Robin Wall Kimmerer. Attend powwows and cultural events when open to the public. Learn which tribal nations are indigenous to your area."}
+{"input": "how to participate in a town hall meeting", "output": "lex: town hall meeting participate attend\nlex: town hall public meeting local government\nvec: how do I attend and participate in a local town hall meeting\nvec: what should I know before speaking at a town hall meeting\nhyde: Check your local government website or social media for upcoming town hall schedules. Arrive early and sign up to speak if required. Prepare a concise statement (usually 2-3 minutes). Stay respectful and on-topic. Bring supporting data or personal stories to strengthen your point."}
+{"input": "how to choose a photo backdrop", "output": "lex: photo backdrop choose background photography\nlex: photography backdrop portrait studio\nvec: how do I choose the right backdrop for portrait or studio photography\nvec: what factors should I consider when selecting a photo backdrop\nhyde: Choose a backdrop that complements your subject without competing for attention. Solid colors (white, gray, black) are versatile for portraits. Muslin provides a painterly texture. For outdoor shoots, look for uncluttered backgrounds with good depth. Consider the color of your subject's clothing to avoid clashing."}
+{"input": "what is the nature of god in christianity", "output": "lex: nature of God Christianity Trinity\nlex: Christian God attributes Father Son Holy Spirit\nvec: how does Christianity describe the nature and attributes of God\nvec: what is the doctrine of the Trinity in Christian theology\nhyde: Christianity teaches that God is one being existing as three persons: the Father, the Son (Jesus Christ), and the Holy Spirit. This is the doctrine of the Trinity. God is described as omniscient, omnipotent, omnipresent, eternal, and perfectly good. God is both transcendent and personally involved in creation."}
+{"input": "how to scale a business", "output": "lex: scale business growth strategies\nlex: business scaling operations revenue expansion\nvec: how do you scale a business effectively while managing growth challenges\nvec: what strategies help companies expand operations and increase revenue\nhyde: Scaling requires repeatable processes, automation, and a strong team. Standardize operations with SOPs, invest in technology to reduce manual work, and hire ahead of demand. Monitor unit economics—ensure customer acquisition cost stays below lifetime value. Secure funding for growth through revenue, debt, or equity."}
+{"input": "what is yoga and its benefits", "output": "lex: yoga benefits health practice\nlex: yoga physical mental health flexibility stress\nvec: what is yoga and what physical and mental health benefits does it provide\nvec: how does regular yoga practice improve flexibility, strength, and well-being\nhyde: Yoga is an ancient practice combining physical postures (asanas), breathing techniques (pranayama), and meditation. Regular practice improves flexibility, builds strength, reduces stress and anxiety, lowers blood pressure, and enhances sleep quality. Styles range from gentle Hatha to vigorous Vinyasa and Ashtanga."}
+{"input": "how to get rid of self-limiting beliefs?", "output": "lex: self-limiting beliefs overcome remove\nlex: limiting beliefs mindset change techniques\nvec: how can I identify and overcome self-limiting beliefs that hold me back\nvec: what techniques help replace self-limiting beliefs with empowering ones\nhyde: Identify limiting beliefs by noticing recurring thoughts like \"I'm not smart enough\" or \"I don't deserve success.\" Challenge each belief: what evidence supports it? What evidence contradicts it? Replace it with a realistic affirmation. Take small actions that disprove the belief to build new neural pathways."}
+{"input": "how are seasons determined by geography", "output": "lex: seasons geography Earth axial tilt\nlex: seasons latitude hemisphere climate\nvec: how does geography and Earth's axial tilt determine the seasons\nvec: why do different parts of the world experience different seasons at the same time\nhyde: Seasons result from Earth's 23.5° axial tilt. As Earth orbits the Sun, the Northern and Southern Hemispheres alternately tilt toward or away from the Sun, varying the angle and duration of sunlight. Near the equator, seasons are minimal; at higher latitudes, seasonal variation is extreme."}
+{"input": "how to create a scalable business model", "output": "lex: scalable business model design\nlex: business model scalability revenue growth\nvec: how do you design a business model that scales efficiently with growth\nvec: what makes a business model scalable and what are common scalable model types\nhyde: A scalable business model increases revenue without proportional increases in costs. SaaS, marketplace, and platform models are inherently scalable. Key elements: low marginal cost per customer, automation of delivery, network effects, and recurring revenue. Test with a minimum viable product before scaling."}
+{"input": "can pets help reduce kids' anxiety?", "output": "lex: pets children anxiety reduction\nlex: pet therapy kids stress mental health\nvec: can having pets help reduce anxiety and stress in children\nvec: what research shows about the effect of pets on children's mental health\nhyde: Studies show that children with pets exhibit lower cortisol levels and reduced anxiety. A 2015 study in Preventing Chronic Disease found that children living with dogs had significantly lower rates of childhood anxiety. Petting an animal for 10 minutes reduces cortisol and increases oxytocin levels."}
+{"input": "date parse", "output": "lex: date parse string format\nlex: date parsing datetime library\nvec: how to parse date strings into date objects in programming\nvec: which libraries handle date parsing and formatting in JavaScript or Python\nhyde: In JavaScript, use `new Date('2025-01-15')` or `Date.parse()` for ISO strings. For complex formats, use `date-fns` parse function or `dayjs('12/25/2025', 'MM/DD/YYYY')`. In Python, use `datetime.strptime('2025-01-15', '%Y-%m-%d')` or the `dateutil.parser.parse()` function for flexible parsing."}
+{"input": "how do christians observe lent?", "output": "lex: Christians observe Lent fasting prayer\nlex: Lent Christian observance Ash Wednesday Easter\nvec: how do Christians observe the season of Lent before Easter\nvec: what are the traditional Lenten practices of fasting, prayer, and almsgiving\nhyde: Lent is a 40-day period before Easter beginning on Ash Wednesday. Christians observe it through fasting (abstaining from certain foods or luxuries), increased prayer, and almsgiving (charitable giving). Many give up a habit or take on a spiritual discipline. Catholic tradition requires abstaining from meat on Fridays."}
+{"input": "what are literary short stories?", "output": "lex: literary short stories fiction genre\nlex: short story literary fiction writers\nvec: what defines literary short stories as distinct from other fiction genres\nvec: what are the characteristics of literary short fiction and who are notable writers in the genre\nhyde: Literary short stories prioritize character development, thematic depth, and prose style over plot-driven entertainment. They often explore the human condition through interior conflict and ambiguity. Notable practitioners include Anton Chekhov, Alice Munro, Raymond Carver, and Jorge Luis Borges."}
+{"input": "thailand", "output": "lex: Thailand country travel Southeast Asia\nlex: Thailand Bangkok culture tourism\nvec: what should I know about Thailand as a travel destination or country\nvec: what are the key facts about Thailand's culture, geography, and tourist attractions\nhyde: Thailand is a Southeast Asian country known for tropical beaches, ornate temples, and rich cuisine. Bangkok is the capital. Popular destinations include Chiang Mai, Phuket, and the islands of Koh Samui and Phi Phi. Thai food staples include pad thai, green curry, and tom yum soup."}
+{"input": "how to do a flip on a trampoline", "output": "lex: trampoline flip backflip technique\nlex: trampoline flip tutorial safety\nvec: how do I safely learn to do a backflip on a trampoline\nvec: what is the proper technique for doing flips on a trampoline\nhyde: Start by mastering high, controlled bounces. Practice tucking your knees to your chest mid-air. For a backflip, bounce high, throw your arms back, tuck tightly, and spot your landing. Always practice on a trampoline with safety nets and a spotter. Progress from seat drops to back drops before attempting flips."}
+{"input": "how to efficiently use time at work?", "output": "lex: time management work productivity\nlex: efficient time work techniques scheduling\nvec: how can I manage my time more efficiently at work to increase productivity\nvec: what time management techniques help get more done during the workday\nhyde: Use time-blocking to schedule focused work in 90-minute intervals. Prioritize with the Eisenhower Matrix: do urgent-important tasks first, schedule important-not-urgent ones, delegate urgent-not-important tasks, and eliminate the rest. Batch similar tasks, limit meetings, and turn off notifications during deep work."}
+{"input": "what is venture capital funding", "output": "lex: venture capital funding investment startups\nlex: VC funding rounds Series A seed\nvec: what is venture capital and how does VC funding work for startups\nvec: what are the different stages of venture capital funding from seed to Series C\nhyde: Venture capital is equity financing provided to high-growth startups in exchange for ownership stakes. Funding stages include pre-seed, seed ($500K-$2M), Series A ($2-15M), Series B ($15-50M), and later rounds. VCs evaluate the team, market size, traction, and scalability before investing."}
+{"input": "app build", "output": "lex: app build compile deploy\nlex: mobile app build process configuration\nvec: how to build and compile a mobile or web application for deployment\nvec: what are the steps in the app build process and common build tools\nhyde: For mobile apps, use `xcodebuild` (iOS) or `./gradlew assembleRelease` (Android). For web apps, run `npm run build` or `vite build` to bundle and optimize assets. Configure environment variables, set the build target, and use CI/CD pipelines (GitHub Actions, CircleCI) for automated builds."}
+{"input": "how to build strong relationships?", "output": "lex: build strong relationships communication trust\nlex: healthy relationships skills connection\nvec: how do you build and maintain strong personal relationships\nvec: what habits and communication skills help strengthen relationships\nhyde: Strong relationships are built on trust, open communication, and mutual respect. Practice active listening—give full attention without planning your response. Express appreciation regularly. Handle conflicts by addressing issues directly without blame. Invest quality time and show up consistently during both good and hard times."}
+{"input": "when to start prenatal classes?", "output": "lex: prenatal classes start when pregnancy\nlex: childbirth education classes timing\nvec: when during pregnancy should I start taking prenatal classes\nvec: what is the recommended timing for beginning childbirth education classes\nhyde: Most experts recommend starting prenatal classes during the second trimester, around weeks 20-24, and completing them by week 36. Early classes cover nutrition, exercise, and fetal development. Later classes focus on labor stages, breathing techniques, pain management options, breastfeeding, and newborn care."}
+{"input": "how to choose kitchen cabinet hardware", "output": "lex: kitchen cabinet hardware handles knobs\nlex: cabinet hardware style finish selection\nvec: how do I choose the right handles and knobs for kitchen cabinets\nvec: what styles and finishes of kitchen cabinet hardware work with different designs\nhyde: Match hardware to your kitchen style: brushed nickel or stainless for modern kitchens, oil-rubbed bronze for traditional, brass for transitional. Use pulls (3-4 inches) on drawers and knobs on doors. Test ergonomics before buying in bulk. Standard mounting holes are 3 or 3.75 inches apart."}
+{"input": "what is the significance of the torah?", "output": "lex: Torah significance Judaism sacred text\nlex: Torah five books Moses Jewish law\nvec: what is the Torah and why is it significant in Judaism\nvec: what role does the Torah play in Jewish religious life and law\nhyde: The Torah comprises the five books of Moses (Genesis, Exodus, Leviticus, Numbers, Deuteronomy) and is the most sacred text in Judaism. It contains the 613 commandments (mitzvot), the creation narrative, and the covenant between God and the Israelites. It is read publicly in synagogue every week."}
+{"input": "test mock", "output": "lex: test mock unit testing\nlex: mock object stub spy testing\nvec: how to use mocks and stubs in unit testing\nvec: what are mock objects and how do they help isolate components in tests\nhyde: Mocks replace real dependencies with controlled objects during testing. In Python, use `unittest.mock.patch()` to replace a function. In JavaScript, use `jest.fn()` or `jest.spyOn()`. Mocks verify that methods were called with expected arguments. Stubs return fixed values; spies track calls without replacing behavior."}
+{"input": "how does culture influence identity?", "output": "lex: culture influence identity formation\nlex: cultural identity socialization values\nvec: how does culture shape a person's sense of identity\nvec: in what ways do cultural values and traditions influence who we become\nhyde: Culture shapes identity through language, traditions, values, and social norms internalized from childhood. Family, community, religion, and media all transmit cultural frameworks. Identity is constructed through negotiation between personal experiences and cultural expectations, creating a sense of belonging and self-understanding."}
+{"input": "how to be a good listener", "output": "lex: good listener active listening skills\nlex: listening skills empathy communication\nvec: how can I become a better and more active listener in conversations\nvec: what techniques improve listening skills and show empathy\nhyde: Active listening means giving full attention: maintain eye contact, put away distractions, and don't interrupt. Reflect back what you heard (\"It sounds like you're saying...\"). Ask open-ended questions to show interest. Avoid jumping to advice—sometimes people just need to feel heard. Validate their emotions."}
+{"input": "how to improve public speaking skills", "output": "lex: public speaking skills improve presentation\nlex: public speaking confidence practice tips\nvec: how can I improve my public speaking and overcome stage fright\nvec: what techniques help deliver confident and engaging presentations\nhyde: Join Toastmasters for regular practice in a supportive environment. Record yourself speaking and review for filler words and pacing. Structure talks with a clear opening hook, three key points, and a memorable close. Practice in front of friends. Manage nerves through deep breathing and visualization beforehand."}
+{"input": "log debug", "output": "lex: log debug logging level\nlex: debug logging output configuration\nvec: how to configure debug-level logging in an application\nvec: how to use log debug statements for troubleshooting code\nhyde: Set the log level to DEBUG to capture detailed diagnostic output. In Python: `logging.basicConfig(level=logging.DEBUG)`. In Node.js with winston: `logger.level = 'debug'`. In Java with SLF4J: configure logback.xml with `<root level=\"DEBUG\">`. Use debug logs for variable values, flow tracing, and conditional paths."}
+{"input": "what is the large hadron collider", "output": "lex: Large Hadron Collider LHC CERN\nlex: LHC particle accelerator Higgs boson\nvec: what is the Large Hadron Collider and what has it discovered\nvec: how does the LHC at CERN work to study particle physics\nhyde: The Large Hadron Collider (LHC) at CERN near Geneva is the world's largest and most powerful particle accelerator. It accelerates protons to near light speed in a 27-kilometer ring and collides them to study fundamental particles. In 2012, it confirmed the existence of the Higgs boson."}
+{"input": "what is the significance of worship practices?", "output": "lex: worship practices significance religion\nlex: worship rituals prayer spiritual meaning\nvec: what is the significance of worship practices across different religions\nvec: why do religious communities engage in rituals, prayer, and worship\nhyde: Worship practices—prayer, ritual, song, and meditation—serve to connect individuals with the divine, reinforce communal identity, and express gratitude and devotion. In Christianity, worship centers on liturgy and sacraments; in Islam, the five daily prayers (salat); in Hinduism, puja and temple ceremonies."}
+{"input": "what are fair trade products?", "output": "lex: fair trade products certification\nlex: fair trade coffee chocolate ethical\nvec: what are fair trade products and how does fair trade certification work\nvec: what does the fair trade label mean for farmers and consumers\nhyde: Fair trade products are goods certified to meet standards ensuring producers in developing countries receive fair prices, safe working conditions, and sustainable practices. Common fair trade products include coffee, chocolate, tea, bananas, and cotton. Look for the Fairtrade International or Fair Trade USA label."}
+{"input": "what is the significance of community in ethics", "output": "lex: community ethics significance moral philosophy\nlex: communitarian ethics social responsibility\nvec: what role does community play in ethical theory and moral life\nvec: how does communitarian philosophy view the relationship between community and ethics\nhyde: Communitarian ethics argues that moral reasoning is rooted in community values and shared traditions, not just individual rights. Philosophers like Alasdair MacIntyre and Charles Taylor emphasize that virtues and moral identity are shaped by the communities in which we participate."}
+{"input": "what are index funds", "output": "lex: index funds investing passive\nlex: index fund S&P 500 ETF low cost\nvec: what are index funds and why are they popular for investing\nvec: how do index funds work and what are their advantages over actively managed funds\nhyde: An index fund is a type of mutual fund or ETF that tracks a market index like the S&P 500. It holds all (or a representative sample of) the stocks in that index. Index funds offer broad diversification, low expense ratios (typically 0.03-0.20%), and historically outperform most actively managed funds."}
+{"input": "what is hinduism", "output": "lex: Hinduism religion beliefs practices\nlex: Hindu dharma gods Vedas karma reincarnation\nvec: what is Hinduism and what are its main beliefs and practices\nvec: what do Hindus believe about God, karma, and the cycle of rebirth\nhyde: Hinduism is one of the world's oldest religions, originating in the Indian subcontinent. It encompasses diverse beliefs but key concepts include dharma (duty), karma (action and consequence), samsara (cycle of rebirth), and moksha (liberation). Sacred texts include the Vedas, Upanishads, and Bhagavad Gita."}
+{"input": "what is sufism?", "output": "lex: Sufism Islamic mysticism spiritual\nlex: Sufi practices dhikr whirling dervishes\nvec: what is Sufism and how does it relate to Islam\nvec: what are the spiritual practices and beliefs of Sufi mystics\nhyde: Sufism is the mystical dimension of Islam, emphasizing the inward search for God and the purification of the soul. Sufis practice dhikr (repetitive remembrance of God), meditation, and poetry to achieve closeness to the divine. Rumi and Al-Ghazali are among the most famous Sufi masters."}
+{"input": "how to outline a novel", "output": "lex: outline novel plot structure\nlex: novel outline writing planning chapters\nvec: how do I create an outline for writing a novel\nvec: what methods do authors use to plan and structure a novel before writing\nhyde: Start with a one-sentence premise, then expand to a paragraph summary. Use the three-act structure: setup, confrontation, resolution. Create character profiles with goals and arcs. Write a chapter-by-chapter outline with scene goals. Methods include the Snowflake Method, Save the Cat beat sheet, or index cards on a corkboard."}
+{"input": "what is the role of the who in pandemics", "output": "lex: WHO World Health Organization pandemic role\nlex: WHO pandemic response disease outbreak\nvec: what role does the World Health Organization play during pandemics\nvec: how does the WHO coordinate international responses to disease outbreaks\nhyde: The World Health Organization (WHO) coordinates international pandemic response by issuing health guidelines, declaring Public Health Emergencies of International Concern (PHEIC), distributing vaccines through COVAX, providing technical assistance to countries, and monitoring disease surveillance data from member states."}
+{"input": "how are glaciers formed", "output": "lex: glacier formation process ice\nlex: glaciers formed snow compaction accumulation\nvec: how do glaciers form from accumulated snow and ice over time\nvec: what is the process of glacier formation and movement\nhyde: Glaciers form when annual snowfall exceeds snowmelt over many years. The accumulated snow compresses into firn (granular ice) and eventually into dense glacial ice. When the ice mass becomes thick enough, gravity causes it to flow slowly downhill. This process takes decades to centuries."}
+{"input": "how to ensure research reproducibility", "output": "lex: research reproducibility replication methods\nlex: reproducible research data sharing protocols\nvec: how do researchers ensure their studies are reproducible by others\nvec: what practices improve the reproducibility and replication of scientific research\nhyde: Ensure reproducibility by pre-registering your study, sharing raw data and analysis code in public repositories (e.g., GitHub, Zenodo), documenting every methodological step, using version control, and providing computational environments (Docker containers). Report all results, including null findings."}
+{"input": "how do different religions view angels?", "output": "lex: angels religions Christianity Islam Judaism\nlex: angels religious beliefs spiritual beings\nvec: how do different religions like Christianity, Islam, and Judaism view angels\nvec: what roles do angels play across major world religions\nhyde: In Christianity, angels are messengers of God (e.g., Gabriel, Michael) who serve as protectors and intermediaries. Islam teaches that angels (mala'ika) are created from light and include Jibril (Gabriel) who delivered the Quran. Judaism describes angels as divine agents carrying out God's will in the Hebrew Bible."}
+{"input": "how does the social contract theory explain governance", "output": "lex: social contract theory governance political philosophy\nlex: social contract Hobbes Locke Rousseau\nvec: how does social contract theory explain the legitimacy of government\nvec: what did Hobbes, Locke, and Rousseau argue about the social contract and governance\nhyde: Social contract theory holds that governments derive legitimacy from the consent of the governed. Hobbes argued people surrender freedoms to a sovereign for security. Locke emphasized natural rights to life, liberty, and property, with government protecting them. Rousseau proposed the general will as the basis for collective governance."}
+{"input": "how to use trekking poles", "output": "lex: trekking poles hiking technique\nlex: trekking poles adjustment grip walking\nvec: how do you properly use trekking poles while hiking\nvec: what is the correct technique for adjusting and using trekking poles on trails\nhyde: Adjust pole length so your elbow is at 90° on flat ground. Shorten poles for uphill, lengthen for downhill. Plant the pole opposite your stepping foot. Use wrist straps for support—push down through the strap, not the grip. On steep descents, poles reduce knee impact by up to 25%."}
+{"input": "how does blockchain technology work", "output": "lex: blockchain technology distributed ledger\nlex: blockchain cryptography decentralized consensus\nvec: how does blockchain technology work at a technical level\nvec: what are the key components of blockchain like blocks, hashing, and consensus mechanisms\nhyde: A blockchain is a distributed ledger where transactions are grouped into blocks. Each block contains a cryptographic hash of the previous block, creating an immutable chain. Nodes validate transactions through consensus mechanisms like Proof of Work or Proof of Stake. No central authority controls the network."}
+{"input": "how to plant a wildflower meadow?", "output": "lex: wildflower meadow planting seeds\nlex: plant wildflower meadow soil preparation native\nvec: how do I plant and establish a wildflower meadow in my yard\nvec: what steps are needed to create a wildflower meadow from seed\nhyde: Clear existing vegetation by mowing low and raking away debris. Loosen the top inch of soil. Mix wildflower seeds with sand for even distribution and scatter in fall or early spring. Press seeds into soil but don't cover them—most need light to germinate. Water gently until established. Avoid fertilizer, which favors grasses."}
+{"input": "how to engage in civil political discussions", "output": "lex: civil political discussion respectful debate\nlex: political conversation etiquette disagreement\nvec: how can I have respectful and productive political discussions with people who disagree\nvec: what strategies help keep political conversations civil and constructive\nhyde: Start by listening to understand, not to rebut. Ask questions like \"What experiences led you to that view?\" Avoid personal attacks and generalizations. Find common ground before addressing differences. Use \"I\" statements instead of \"you always\" accusations. Accept that changing minds takes time and repeated respectful engagement."}
+{"input": "where to watch super bowl 2024", "output": "lex: super bowl 2024 streaming channel\nlex: super bowl LVIII broadcast network\nlex: watch super bowl 2024 live\nvec: what channel or streaming service is broadcasting Super Bowl 2024\nvec: where can I watch the 2024 Super Bowl LVIII game live online\nhyde: Super Bowl LVIII airs on CBS on February 11, 2024. You can stream it live on Paramount+ or through the CBS Sports app. Kickoff is at 6:30 PM ET from Allegiant Stadium in Las Vegas."}
+{"input": "what is the mind-body problem", "output": "lex: mind-body problem philosophy\nlex: dualism consciousness physicalism\nlex: mental states physical brain\nvec: what is the philosophical mind-body problem and why is it difficult to solve\nvec: how do philosophers explain the relationship between consciousness and the physical brain\nhyde: The mind-body problem asks how mental states like thoughts, feelings, and consciousness relate to physical states of the brain. Descartes proposed substance dualism, arguing mind and body are fundamentally different substances."}
+{"input": "how to report scientific findings", "output": "lex: scientific findings report writing\nlex: research results publication format\nlex: academic paper methodology results\nvec: how should scientists structure and report their research findings in a paper\nvec: what is the standard format for reporting results in a scientific publication\nhyde: When reporting scientific findings, organize your paper into Introduction, Methods, Results, and Discussion (IMRaD). Present results with tables and figures, include statistical analyses, and state findings objectively before interpreting them."}
+{"input": "code test", "output": "lex: software unit testing framework\nlex: code testing automated tests\nlex: test-driven development TDD\nvec: how to write and run automated tests for software code\nvec: what are the common approaches to testing code including unit tests and integration tests\nhyde: Unit tests verify individual functions in isolation. Use a testing framework like Jest, pytest, or JUnit to write assertions that check expected outputs against actual results. Run tests with `npm test` or `pytest`."}
+{"input": "what is human rights", "output": "lex: human rights definition universal declaration\nlex: fundamental human rights UDHR\nlex: civil political economic social rights\nvec: what are human rights and what does the Universal Declaration of Human Rights guarantee\nvec: what fundamental freedoms and protections are considered universal human rights\nhyde: Human rights are inherent rights belonging to every person regardless of nationality, sex, ethnicity, or religion. The Universal Declaration of Human Rights (1948) established 30 articles covering civil, political, economic, social, and cultural rights."}
+{"input": "what is the function of dna", "output": "lex: DNA function genetic information\nlex: deoxyribonucleic acid protein synthesis\nlex: DNA replication transcription translation\nvec: what role does DNA play in storing and transmitting genetic information in cells\nvec: how does DNA encode instructions for building proteins in living organisms\nhyde: DNA stores the genetic instructions needed for the development and functioning of all living organisms. It encodes genes as sequences of nucleotide bases (A, T, G, C) that are transcribed into RNA and translated into proteins."}
+{"input": "how to advocate for a cause", "output": "lex: cause advocacy strategies campaigning\nlex: grassroots advocacy organizing\nlex: political advocacy lobbying petition\nvec: what are effective ways to advocate and campaign for a social or political cause\nvec: how can individuals organize and mobilize support for a cause they care about\nhyde: Start by clearly defining your cause and goals. Build a coalition of supporters, create a compelling message, and use multiple channels: social media, petitions, letters to legislators, public events, and media outreach to amplify your message."}
+{"input": "how to grow blueberries at home?", "output": "lex: grow blueberries home garden\nlex: blueberry bush planting acidic soil\nlex: container blueberry growing care\nvec: how do I plant and care for blueberry bushes in my home garden\nvec: what soil pH and conditions do blueberries need to grow well at home\nhyde: Blueberries thrive in acidic soil with a pH of 4.5-5.5. Plant in full sun with well-drained soil amended with peat moss. Space bushes 4-6 feet apart and mulch with pine needles. Water regularly and prune dead wood in late winter."}
+{"input": "what causes market volatility", "output": "lex: stock market volatility causes\nlex: financial market fluctuations economic factors\nlex: market volatility interest rates inflation\nvec: what economic and geopolitical factors cause stock market volatility\nvec: why do financial markets experience sudden price swings and instability\nhyde: Market volatility is driven by economic data releases, interest rate changes, geopolitical events, earnings surprises, and investor sentiment. High uncertainty about inflation, central bank policy, or political instability increases price fluctuations across asset classes."}
+{"input": "what is the importance of spiritual leadership?", "output": "lex: spiritual leadership organizations values\nlex: spiritual leadership workplace meaning purpose\nvec: how does spiritual leadership influence organizations and their members\nvec: what role does spiritual leadership play in providing meaning and purpose at work\nhyde: Spiritual leadership theory proposes that leaders who foster a sense of calling, meaning, and membership create more engaged and productive organizations. It emphasizes vision, altruistic love, and hope as core values that transcend traditional management."}
+{"input": "what is the paris agreement", "output": "lex: Paris Agreement climate change 2015\nlex: Paris climate accord greenhouse gas emissions\nlex: Paris Agreement temperature goals\nvec: what is the Paris Agreement and what are its goals for addressing climate change\nvec: what commitments did countries make under the 2015 Paris climate accord\nhyde: The Paris Agreement is a legally binding international treaty on climate change adopted in 2015. Its goal is to limit global warming to well below 2°C, preferably 1.5°C, above pre-industrial levels. Countries submit nationally determined contributions (NDCs) outlining emission reduction targets."}
+{"input": "how to enhance customer engagement", "output": "lex: customer engagement strategies retention\nlex: increase customer interaction loyalty\nlex: customer engagement marketing personalization\nvec: what strategies can businesses use to improve customer engagement and loyalty\nvec: how can companies create more meaningful interactions with their customers\nhyde: Personalize communications using customer data and segmentation. Implement loyalty programs, respond promptly on social media, send targeted email campaigns, and gather feedback through surveys. Omnichannel engagement ensures consistent experience across touchpoints."}
+{"input": "how to encourage children to read?", "output": "lex: encourage children reading habits\nlex: kids reading motivation tips\nlex: children literacy books engagement\nvec: what strategies help encourage children to develop a love of reading\nvec: how can parents motivate reluctant children to read more books\nhyde: Read aloud to children daily from an early age. Let them choose their own books based on interests. Create a cozy reading nook, visit the library regularly, and set a family reading time. Avoid using reading as punishment; make it enjoyable."}
+{"input": "what is base jumping?", "output": "lex: base jumping extreme sport parachute\nlex: BASE jump fixed object skydiving\nlex: base jumping wingsuit cliff\nvec: what is BASE jumping and how does it differ from skydiving\nvec: what does BASE stand for and what are the risks of base jumping\nhyde: BASE jumping involves parachuting from fixed objects: Buildings, Antennas, Spans (bridges), and Earth (cliffs). Unlike skydiving from aircraft, BASE jumps occur at much lower altitudes, giving jumpers only seconds to deploy their parachute."}
+{"input": "how to clean car engine bay?", "output": "lex: clean car engine bay degreaser\nlex: engine bay detailing wash\nlex: engine compartment cleaning steps\nvec: what is the safest way to clean and degrease a car engine bay\nvec: step by step process to clean under the hood of a car\nhyde: Cover sensitive electrical components with plastic bags. Apply engine degreaser to the entire bay, let it sit 5-10 minutes, then agitate with a brush. Rinse with low-pressure water, avoiding direct spray on the alternator, fuse box, and air intake."}
+{"input": "how to manage sibling rivalry?", "output": "lex: sibling rivalry management parenting\nlex: brothers sisters fighting conflict\nlex: sibling jealousy fairness strategies\nvec: how can parents effectively manage fighting and rivalry between siblings\nvec: what are proven strategies to reduce sibling conflict and jealousy\nhyde: Avoid comparing siblings to each other. Give each child individual attention and acknowledge their unique strengths. Teach conflict resolution skills rather than always intervening. Set clear family rules about respectful behavior and let children solve minor disputes themselves."}
+{"input": "how to build a raised garden bed?", "output": "lex: build raised garden bed DIY\nlex: raised bed construction lumber soil\nlex: raised garden bed plans dimensions\nvec: how do I build a raised garden bed from wood step by step\nvec: what materials and dimensions work best for a DIY raised garden bed\nhyde: Cut four boards of untreated cedar or redwood to size: two at 4 feet and two at 8 feet for a standard 4x8 bed. Screw corners together with deck screws. Place on level ground, line the bottom with cardboard, and fill with a mix of topsoil, compost, and peat moss."}
+{"input": "what is the g7", "output": "lex: G7 group of seven nations\nlex: G7 summit member countries\nlex: G7 economic political alliance\nvec: what is the G7 and which countries are members of this international group\nvec: what role does the Group of Seven play in global economic and political governance\nhyde: The G7 (Group of Seven) is an intergovernmental forum of seven major advanced economies: Canada, France, Germany, Italy, Japan, the United Kingdom, and the United States. The EU also participates. Members meet annually to discuss global economic policy, security, and trade."}
+{"input": "what is the role of choice in ethics?", "output": "lex: choice ethics moral philosophy\nlex: free will moral responsibility\nlex: ethical decision-making autonomy\nvec: what role does personal choice play in moral philosophy and ethical responsibility\nvec: how do ethicists view free will and autonomous choice in determining moral accountability\nhyde: Choice is central to ethics because moral responsibility presupposes the ability to choose freely. Aristotle argued that virtuous action requires deliberate choice (prohairesis). Without genuine alternatives, praise and blame lose their foundation."}
+{"input": "home fix", "output": "lex: home repair DIY fix\nlex: house maintenance common repairs\nlex: home improvement handyman tasks\nvec: how to do common home repairs and fixes yourself\nvec: what are typical household problems and how to fix them without a professional\nhyde: Common DIY home repairs include fixing leaky faucets, patching drywall holes, unclogging drains, replacing light switches, re-caulking bathrooms, and fixing squeaky doors. Most require only basic tools: screwdriver, pliers, wrench, and putty knife."}
+{"input": "what should i wear hiking?", "output": "lex: hiking clothing layers gear\nlex: hiking outfit shoes weather\nlex: what to wear hiking trail\nvec: what is the best clothing to wear for a day hike in different weather conditions\nvec: how should I layer my clothes for hiking to stay comfortable\nhyde: Dress in moisture-wicking layers: a synthetic or merino wool base layer, an insulating mid layer like fleece, and a waterproof shell. Wear sturdy hiking boots or trail shoes with wool socks. Avoid cotton, which retains moisture and causes chafing."}
+{"input": "what are the main tenets of jainism?", "output": "lex: Jainism main tenets principles\nlex: Jain beliefs ahimsa non-violence\nlex: Jainism five vows anekantavada\nvec: what are the core beliefs and principles of the Jain religion\nvec: what are the five main vows and philosophical tenets of Jainism\nhyde: Jainism centers on three jewels: right faith, right knowledge, and right conduct. Its five vows are ahimsa (non-violence), satya (truth), asteya (non-stealing), brahmacharya (chastity), and aparigraha (non-attachment). Jains believe in karma and the soul's liberation through self-discipline."}
+{"input": "what is universal healthcare", "output": "lex: universal healthcare single payer system\nlex: universal health coverage public insurance\nlex: universal healthcare countries policy\nvec: what is universal healthcare and how do different countries implement it\nvec: how does a universal healthcare system provide coverage to all citizens\nhyde: Universal healthcare ensures all residents have access to medical services without financial hardship. Models vary: single-payer systems (Canada), national health services (UK's NHS), and mandatory insurance systems (Germany). Funding comes through taxes or mandatory premiums."}
+{"input": "where to buy rare plant seeds?", "output": "lex: buy rare plant seeds online\nlex: rare exotic seed suppliers shop\nlex: unusual heirloom seeds catalog\nvec: where can I purchase rare and exotic plant seeds online\nvec: what are reputable suppliers for hard-to-find and unusual plant seeds\nhyde: Specialty seed suppliers for rare plants include Baker Creek Heirloom Seeds, Chiltern Seeds, Plant World Seeds, and Rare Seeds. Online marketplaces like Etsy also have independent growers selling unusual varieties. Check import regulations for international orders."}
+{"input": "how to kayak for the first time", "output": "lex: beginner kayaking first time tips\nlex: kayak basics paddling technique\nlex: learn kayaking beginner guide\nvec: what should a beginner know before going kayaking for the first time\nvec: how do I paddle and balance a kayak as a first-time kayaker\nhyde: For your first kayak outing, choose calm, flat water like a lake or slow river. Adjust the foot pegs so your knees are slightly bent. Hold the paddle with hands shoulder-width apart, knuckles aligned with the blade edge. Use torso rotation, not just arms, for each stroke."}
+{"input": "what are the major teachings in rumi's poetry?", "output": "lex: Rumi poetry teachings themes\nlex: Rumi Sufi mysticism divine love\nlex: Rumi Masnavi spiritual wisdom\nvec: what are the central spiritual and philosophical themes in Rumi's poems\nvec: what does Rumi teach about love, the soul, and union with the divine\nhyde: Rumi's poetry centers on divine love as the path to spiritual union with God. His Masnavi explores themes of longing, surrender, and the dissolution of the ego. He uses metaphors of wine, the beloved, and the reed flute to express the soul's yearning for its source."}
+{"input": "what is the purpose of a pilgrimage", "output": "lex: pilgrimage purpose religious spiritual\nlex: pilgrimage meaning journey sacred site\nvec: what is the spiritual purpose of making a pilgrimage to a sacred site\nvec: why do people of different religions undertake pilgrimages\nhyde: A pilgrimage is a sacred journey to a holy site undertaken for spiritual renewal, penance, or devotion. In Islam, Hajj to Mecca is obligatory. Christians walk the Camino de Santiago. Hindus visit Varanasi. The journey itself is seen as transformative, not just the destination."}
+{"input": "craigslist ads", "output": "lex: Craigslist ads posting classified\nlex: Craigslist listings buy sell\nlex: Craigslist marketplace local ads\nvec: how to post and browse classified ads on Craigslist\nvec: how does Craigslist work for buying, selling, and listing items locally\nhyde: To post a Craigslist ad, go to craigslist.org, select your city, and click \"create a posting.\" Choose a category (for sale, housing, jobs, services), write a clear title and description, add photos, and set your price. Most postings are free for individuals."}
+{"input": "what is a primary election", "output": "lex: primary election definition process\nlex: primary election presidential nomination\nlex: open closed primary voting\nvec: what is a primary election and how does it determine party nominees\nvec: how do primary elections work in the United States political system\nhyde: A primary election is a vote held by a political party to choose its candidates for the general election. In a closed primary, only registered party members can vote. In an open primary, any registered voter may participate regardless of party affiliation."}
+{"input": "what was the role of the catholic church in the middle ages?", "output": "lex: Catholic Church Middle Ages role\nlex: medieval church political power papacy\nlex: Catholic Church feudalism education medieval\nvec: what political, social, and cultural role did the Catholic Church play during the Middle Ages\nvec: how did the Catholic Church influence governance, education, and daily life in medieval Europe\nhyde: The Catholic Church was the dominant institution in medieval Europe. It controlled vast lands, collected tithes, and wielded political power through the papacy. The Church ran schools and universities, preserved classical texts in monasteries, and regulated moral life through canon law and sacraments."}
+{"input": "what to pack in a hospital bag for labor?", "output": "lex: hospital bag labor delivery packing list\nlex: what to bring hospital birth bag\nlex: labor bag essentials mother baby\nvec: what items should I pack in my hospital bag before going into labor\nvec: what is a complete packing checklist for the hospital for giving birth\nhyde: Hospital bag essentials for labor: ID and insurance card, birth plan, comfortable robe or gown, slippers, toiletries, phone charger, going-home outfit for you and baby, car seat, nursing bra, newborn diapers, snacks, and a pillow from home."}
+{"input": "how international trade agreements affect local economies", "output": "lex: international trade agreements local economy impact\nlex: trade deal tariff local jobs wages\nlex: free trade agreement economic effects\nvec: how do international trade agreements impact jobs and economies at the local level\nvec: what are the positive and negative effects of free trade agreements on local industries\nhyde: Trade agreements lower tariffs and open markets, which can reduce consumer prices and expand exports. However, local industries that cannot compete with cheaper imports may shrink, leading to job losses in manufacturing regions. The net effect depends on the economy's structure and adjustment policies."}
+{"input": "what is the ring of fire", "output": "lex: Ring of Fire Pacific Ocean volcanoes\nlex: Pacific Ring of Fire earthquakes tectonic\nlex: ring of fire map plate boundaries\nvec: what is the Pacific Ring of Fire and why does it have so many earthquakes and volcanoes\nvec: which tectonic plates form the Ring of Fire around the Pacific Ocean\nhyde: The Ring of Fire is a 40,000 km horseshoe-shaped zone around the Pacific Ocean where about 75% of the world's volcanoes and 90% of earthquakes occur. It follows boundaries of tectonic plates including the Pacific, Nazca, and Philippine Sea plates."}
+{"input": "how does relativism differ from absolutism", "output": "lex: moral relativism absolutism difference\nlex: ethical relativism vs moral absolutism\nlex: relativism absolutism philosophy comparison\nvec: what is the philosophical difference between moral relativism and moral absolutism\nvec: how do relativists and absolutists disagree about the nature of moral truth\nhyde: Moral absolutism holds that certain actions are universally right or wrong regardless of context or culture. Moral relativism argues that moral judgments are not universal but depend on cultural, social, or personal frameworks. Absolutists point to human rights; relativists emphasize cultural diversity."}
+{"input": "how to harvest rainwater for gardening?", "output": "lex: rainwater harvesting garden setup\nlex: rain barrel collection irrigation\nlex: harvest rainwater system DIY\nvec: how can I set up a rainwater collection system to water my garden\nvec: what equipment do I need to harvest rainwater for garden irrigation\nhyde: Install a rain barrel or cistern under a downspout to collect roof runoff. Use a first-flush diverter to discard initial dirty water. A screen keeps debris and mosquitoes out. Connect a spigot or hose at the bottom for gravity-fed garden irrigation. A 1,000 sq ft roof yields ~600 gallons per inch of rain."}
+{"input": "what is the significance of the sacred tree in various faiths?", "output": "lex: sacred tree symbolism religion\nlex: tree of life world tree spiritual traditions\nlex: sacred trees Buddhism Hinduism Christianity Norse\nvec: what role do sacred trees play in the religious symbolism of different faiths\nvec: how are trees like the Bodhi tree and Yggdrasil significant in world religions\nhyde: Sacred trees appear across religions: the Bodhi tree where Buddha attained enlightenment, the Tree of Life in Genesis, Yggdrasil in Norse mythology connecting the nine worlds, and the banyan in Hinduism symbolizing eternal life. Trees represent growth, connection between earth and heaven, and renewal."}
+{"input": "code dep", "output": "lex: code dependency management\nlex: software dependency package manager\nlex: dependency resolution version conflicts\nvec: how to manage code dependencies and packages in a software project\nvec: what tools help resolve and manage dependencies in programming\nhyde: Dependency management tools track and install external libraries your code relies on. Package managers like npm (JavaScript), pip (Python), and cargo (Rust) resolve version conflicts, maintain lock files, and ensure reproducible builds across environments."}
+{"input": "what is the concept of rebirth in buddhism?", "output": "lex: rebirth Buddhism reincarnation concept\nlex: Buddhist rebirth samsara karma cycle\nlex: rebirth reincarnation Buddhism difference\nvec: how does Buddhism explain the concept of rebirth and the cycle of samsara\nvec: what is the difference between rebirth in Buddhism and reincarnation in Hinduism\nhyde: In Buddhism, rebirth is not the transmigration of a fixed soul but the continuation of a stream of consciousness shaped by karma. Beings cycle through samsara—the realms of existence—until achieving nirvana. Unlike Hindu reincarnation, Buddhism denies a permanent self (anatta) that transfers between lives."}
+{"input": "cultural iconography", "output": "lex: cultural iconography symbols art\nlex: iconographic symbols meaning culture\nlex: visual symbolism iconography history\nvec: what is cultural iconography and how are visual symbols used to convey meaning across cultures\nvec: how do art historians study and interpret iconographic symbols in different cultural traditions\nhyde: Cultural iconography studies the identification and interpretation of visual symbols in art and media. Icons like the Christian cross, Buddhist lotus, or American bald eagle carry layered meanings shaped by history, religion, and politics. Erwin Panofsky formalized iconographic analysis in three levels."}
+{"input": "current trends in ai research", "output": "lex: AI research trends 2025 2026\nlex: artificial intelligence latest developments\nlex: machine learning LLM multimodal research\nvec: what are the most important current trends and breakthroughs in AI research in 2025-2026\nvec: what directions is artificial intelligence research heading in areas like large language models and multimodal AI\nhyde: Key AI research trends in 2025-2026 include scaling reasoning models, multimodal foundation models combining text, image, and video, AI agents that use tools autonomously, efficient fine-tuning methods like LoRA, and alignment research on safety and interpretability."}
+{"input": "how artificial intelligence is used in healthcare", "output": "lex: AI healthcare applications medical\nlex: artificial intelligence diagnosis treatment\nlex: machine learning medical imaging drug discovery\nvec: how is artificial intelligence being applied in healthcare for diagnosis and treatment\nvec: what are the main uses of AI and machine learning in the medical field\nhyde: AI in healthcare is used for medical image analysis (detecting tumors in radiology scans), drug discovery (predicting molecular interactions), clinical decision support, electronic health record analysis, robotic surgery assistance, and predicting patient outcomes in intensive care."}
+{"input": "what is gothic literature?", "output": "lex: gothic literature definition genre\nlex: gothic fiction horror romance 18th century\nlex: gothic novel characteristics examples\nvec: what defines gothic literature as a genre and what are its key characteristics\nvec: what are the origins and major works of gothic fiction\nhyde: Gothic literature is a genre that combines horror, romance, and mystery, originating with Horace Walpole's The Castle of Otranto (1764). Characteristics include gloomy settings (castles, ruins), supernatural elements, heightened emotion, and themes of decay, madness, and the sublime."}
+{"input": "how to foster inclusivity in interactions?", "output": "lex: foster inclusivity interactions communication\nlex: inclusive language behavior workplace\nlex: diversity inclusion interpersonal skills\nvec: how can I be more inclusive in my daily interactions with diverse people\nvec: what communication strategies foster inclusivity and make everyone feel welcome\nhyde: Use people's correct names and pronouns. Practice active listening without interrupting. Avoid assumptions based on appearance. Invite quieter voices into conversations. Be aware of cultural differences in communication styles. Acknowledge and address microaggressions when they occur."}
+{"input": "how to prune hydrangeas?", "output": "lex: prune hydrangeas when how\nlex: hydrangea pruning guide timing\nlex: cut back hydrangea old new wood\nvec: when and how should I prune different types of hydrangeas\nvec: what is the correct pruning technique for hydrangeas that bloom on old versus new wood\nhyde: Pruning depends on the hydrangea type. Bigleaf (H. macrophylla) and oakleaf hydrangeas bloom on old wood—prune just after flowering in summer. Panicle (H. paniculata) and smooth (H. arborescens) bloom on new wood—prune in late winter. Remove dead stems to the base and cut back to a pair of healthy buds."}
+{"input": "how do philosophers address moral ambiguity", "output": "lex: moral ambiguity philosophy ethics\nlex: ethical dilemma moral uncertainty philosophers\nlex: moral gray area philosophical perspectives\nvec: how do different philosophical traditions deal with situations of moral ambiguity\nvec: what do philosophers say about making ethical decisions when right and wrong are unclear\nhyde: Philosophers address moral ambiguity through competing frameworks. Utilitarians weigh outcomes, deontologists look to duties and rules, and virtue ethicists ask what a person of good character would do. Moral particularists argue each situation is unique and cannot be reduced to universal principles."}
+{"input": "what is a bildungsroman", "output": "lex: bildungsroman definition coming-of-age novel\nlex: bildungsroman literary genre examples\nlex: bildungsroman character development growth\nvec: what is a bildungsroman and what are the defining features of this literary genre\nvec: what are famous examples of bildungsroman or coming-of-age novels in literature\nhyde: A bildungsroman is a novel that follows the psychological and moral growth of a protagonist from youth to adulthood. The genre originated in German literature with Goethe's Wilhelm Meister's Apprenticeship. Classic examples include Jane Eyre, David Copperfield, and The Catcher in the Rye."}
+{"input": "thai cooking classes online", "output": "lex: Thai cooking class online course\nlex: learn Thai cuisine virtual cooking\nlex: Thai food cooking lesson video\nvec: where can I take online Thai cooking classes to learn authentic Thai cuisine\nvec: what are the best virtual courses for learning to cook Thai food at home\nhyde: Online Thai cooking classes teach dishes like pad thai, green curry, tom yum soup, and mango sticky rice. Platforms include Udemy, Skillshare, and dedicated sites like Hot Thai Kitchen. Live Zoom classes with Thai chefs offer real-time guidance on techniques and ingredient sourcing."}
+{"input": "how automation affects employment", "output": "lex: automation employment impact jobs\nlex: automation job displacement workforce\nlex: robots AI replacing workers labor market\nvec: how does increasing automation and robotics affect employment and job availability\nvec: what impact does workplace automation have on different types of jobs and wages\nhyde: Automation displaces routine manual and cognitive tasks but creates new roles in technology maintenance, programming, and oversight. Studies estimate 14% of jobs are highly automatable. Workers in manufacturing, data entry, and transportation face the highest displacement risk, while creative and interpersonal roles are less affected."}
+{"input": "what is a moral compass", "output": "lex: moral compass definition ethics\nlex: moral compass inner sense right wrong\nlex: personal values moral guidance\nvec: what does it mean to have a moral compass and how does it guide ethical behavior\nvec: how do people develop an internal sense of right and wrong known as a moral compass\nhyde: A moral compass is a person's internal sense of right and wrong that guides their decisions and behavior. It is shaped by upbringing, culture, religious beliefs, education, and personal experience. It acts as an ethical guide when facing difficult choices without clear external rules."}
+{"input": "how to set financial goals", "output": "lex: set financial goals planning budget\nlex: financial goal setting SMART savings\nlex: personal finance goals short long term\nvec: how do I set effective short-term and long-term financial goals\nvec: what is a step-by-step process for creating and achieving personal financial goals\nhyde: Set SMART financial goals: Specific (save $10,000), Measurable (track monthly), Achievable (based on income), Relevant (emergency fund), Time-bound (within 12 months). Categorize into short-term (under 1 year), medium-term (1-5 years), and long-term (5+ years) goals. Automate savings to stay on track."}
+{"input": "how to improve car gas mileage?", "output": "lex: improve car gas mileage fuel economy\nlex: better fuel efficiency driving tips\nlex: increase MPG car maintenance\nvec: what are the best ways to improve a car's gas mileage and fuel efficiency\nvec: what driving habits and car maintenance steps help reduce fuel consumption\nhyde: Keep tires inflated to the recommended PSI—underinflation increases rolling resistance. Drive at steady speeds using cruise control, avoid rapid acceleration, and reduce idling. Remove excess weight and roof racks. Replace air filters and spark plugs on schedule. Properly inflated tires alone can improve MPG by 3%."}
+{"input": "how to embrace change positively?", "output": "lex: embrace change positive mindset\nlex: adapting change personal growth resilience\nlex: coping with change acceptance\nvec: how can I learn to embrace change in life with a positive attitude\nvec: what psychological strategies help people adapt to change instead of resisting it\nhyde: Reframe change as an opportunity for growth rather than a threat. Practice mindfulness to stay present instead of worrying about the unknown. Set small, manageable goals during transitions. Build a support network and reflect on past changes you navigated successfully to build confidence."}
+{"input": "how to develop patience?", "output": "lex: develop patience self-control techniques\nlex: building patience mindfulness practice\nlex: patience skills emotional regulation\nvec: what techniques can help a person develop more patience in daily life\nvec: how do you train yourself to be more patient and less reactive\nhyde: Practice the pause: when you feel impatient, take three deep breaths before responding. Mindfulness meditation trains present-moment awareness and reduces reactivity. Reframe waiting as an opportunity. Set realistic expectations and practice delaying gratification with small exercises."}
+{"input": "how to design surveys for scientific research", "output": "lex: design survey scientific research methodology\nlex: research questionnaire design validity\nlex: survey instrument Likert scale sampling\nvec: how should researchers design valid and reliable surveys for scientific studies\nvec: what are the principles of good questionnaire design in scientific research\nhyde: Design surveys by first defining clear research questions. Use validated scales where available. Write neutral, unambiguous items avoiding leading questions. Include a mix of Likert-scale and open-ended questions. Pilot test with a small sample, assess reliability (Cronbach's alpha), and use random sampling for generalizability."}
+{"input": "how to get rid of garden pests naturally?", "output": "lex: natural garden pest control organic\nlex: garden pests organic remedies\nlex: beneficial insects companion planting pest\nvec: what are natural and organic methods to get rid of garden pests without chemicals\nvec: how can I control insects and pests in my garden using companion planting and beneficial insects\nhyde: Introduce beneficial insects like ladybugs and lacewings to eat aphids. Plant marigolds and basil as companion plants to repel pests. Spray diluted neem oil or insecticidal soap on affected leaves. Use diatomaceous earth around plant bases. Hand-pick slugs and caterpillars in the evening."}
+{"input": "how to build a green roof", "output": "lex: green roof construction installation\nlex: build living roof layers materials\nlex: green roof waterproof membrane substrate plants\nvec: how do you build a green roof on a residential or commercial building\nvec: what are the structural layers and materials needed for a green roof installation\nhyde: A green roof consists of layers: waterproof membrane, root barrier, drainage layer (gravel or drainage mat), filter fabric, lightweight growing substrate (4-6 inches for extensive, 6-24 for intensive), and drought-tolerant plants like sedums. The roof must support 15-30 lbs/sqft when saturated."}
+{"input": "what are the sacred texts of judaism", "output": "lex: sacred texts Judaism Torah Talmud\nlex: Jewish scripture Hebrew Bible Tanakh\nlex: Judaism holy books Mishnah\nvec: what are the main sacred texts and scriptures in the Jewish religious tradition\nvec: what is the Torah and what other texts are considered holy in Judaism\nhyde: The primary sacred text of Judaism is the Torah (Five Books of Moses), part of the Tanakh (Hebrew Bible), which also includes Nevi'im (Prophets) and Ketuvim (Writings). The Talmud, comprising the Mishnah and Gemara, contains rabbinic commentary and Jewish law (halakha)."}
+{"input": "how technology has impacted communication", "output": "lex: technology impact communication changes\nlex: digital communication evolution internet social media\nlex: technology transformed how people communicate\nvec: how has technology changed the way people communicate over the last few decades\nvec: what are the major effects of digital technology and the internet on human communication\nhyde: Technology has transformed communication from letters and landlines to instant messaging, video calls, and social media. Email replaced postal mail for business. Smartphones made communication continuous. Social media platforms enabled global, public conversations but also raised concerns about misinformation and reduced face-to-face interaction."}
+{"input": "what are the voting rights", "output": "lex: voting rights law history\nlex: Voting Rights Act suffrage amendments\nlex: voter rights eligibility protection\nvec: what are voting rights in the United States and how have they evolved over time\nvec: what laws protect citizens' right to vote and prevent voter discrimination\nhyde: Voting rights in the US expanded through constitutional amendments: the 15th (race, 1870), 19th (women, 1920), and 26th (age 18, 1971). The Voting Rights Act of 1965 prohibited racial discrimination in voting, including literacy tests and poll taxes, and required federal oversight of elections in certain jurisdictions."}
+{"input": "wedding photography package", "output": "lex: wedding photography package pricing\nlex: wedding photographer booking services\nlex: wedding photo package hours albums\nvec: what is typically included in a wedding photography package and how much does it cost\nvec: how to choose the right wedding photographer and package for your budget\nhyde: Our wedding photography packages start at $2,500 for 6 hours of coverage with one photographer, 300+ edited digital images, and an online gallery. Premium packages include a second shooter, engagement session, 10x10 album, and 8-10 hours of coverage for $4,500."}
+{"input": "how to address political division in communities", "output": "lex: political division community healing\nlex: political polarization bridging divides dialogue\nlex: community political disagreement civil discourse\nvec: how can communities address political divisions and find common ground\nvec: what strategies help reduce political polarization and promote civil dialogue at the local level\nhyde: Host structured community dialogues where participants follow ground rules: listen without interrupting, speak from personal experience, and seek understanding over agreement. Focus on shared local issues—schools, infrastructure, safety—rather than national partisan topics. Train facilitators in conflict mediation techniques."}
+{"input": "how to clean car headlights?", "output": "lex: clean car headlights restore foggy\nlex: headlight restoration oxidation yellowing\nlex: headlight lens cleaning toothpaste sanding\nvec: how do I clean and restore foggy or yellowed car headlights\nvec: what is the best method for removing oxidation from plastic headlight lenses\nhyde: Sand the headlight lens with wet sandpaper, starting at 800 grit and progressing to 2000 and 3000 grit. Polish with a rubbing compound or plastic polish. Apply a UV-resistant clear coat to prevent future yellowing. Toothpaste works as a mild abrasive for light haze."}
+{"input": "what defines gothic literature", "output": "lex: gothic literature characteristics define\nlex: gothic fiction genre elements tropes\nlex: gothic novel dark romantic supernatural\nvec: what are the defining features and conventions of gothic literature as a literary genre\nvec: what themes, settings, and narrative techniques characterize gothic fiction\nhyde: Gothic literature is defined by dark, atmospheric settings (ruined castles, monasteries), supernatural or uncanny events, psychological terror, and themes of isolation, decay, and transgression. Protagonists often face hidden secrets and tyrannical figures. Key works include Frankenstein, Dracula, and The Turn of the Screw."}
+{"input": "what is the importance of cultural heritage in photography?", "output": "lex: cultural heritage photography documentation\nlex: photography preserving culture traditions\nlex: cultural heritage visual documentation ethnographic\nvec: why is photography important for preserving and documenting cultural heritage\nvec: how has photography been used to record and protect cultural traditions and historical sites\nhyde: Photography plays a vital role in documenting cultural heritage—recording endangered architectural sites, traditional crafts, ceremonies, and oral traditions before they disappear. Organizations like UNESCO use photographic archives to catalog World Heritage Sites and support restoration efforts."}
+{"input": "what is logical positivism", "output": "lex: logical positivism Vienna Circle philosophy\nlex: logical positivism verification principle\nlex: logical empiricism analytic philosophy\nvec: what is logical positivism and what did the Vienna Circle philosophers argue\nvec: how does the verification principle define meaningful statements in logical positivism\nhyde: Logical positivism, developed by the Vienna Circle in the 1920s-30s, holds that only statements verifiable through empirical observation or logical proof are meaningful. Metaphysical, ethical, and aesthetic claims are considered cognitively meaningless. Key figures include Carnap, Schlick, and Ayer."}
+{"input": "how to create a self-improvement plan?", "output": "lex: self-improvement plan personal development\nlex: personal growth plan goals habits\nlex: self-improvement roadmap steps\nvec: how do I create an effective self-improvement plan with clear goals and actionable steps\nvec: what steps should I follow to build a personal development plan that I can stick to\nhyde: Start by assessing your current strengths and weaknesses across life areas: health, career, relationships, finances, and personal growth. Set 2-3 SMART goals per area. Break each goal into weekly habits and milestones. Track progress in a journal and review monthly. Adjust the plan based on what's working."}
+{"input": "how robotics is transforming industries", "output": "lex: robotics industry transformation manufacturing\nlex: industrial robots automation sectors\nlex: robotics applications logistics healthcare agriculture\nvec: how is robotics transforming industries like manufacturing, healthcare, and logistics\nvec: what impact are advanced robots and automation having on different industrial sectors\nhyde: Robotics is transforming manufacturing with collaborative robots (cobots) that work alongside humans on assembly lines. In logistics, warehouse robots from companies like Amazon Robotics sort and move packages. Surgical robots like da Vinci enable minimally invasive procedures. Agricultural robots handle harvesting and weeding autonomously."}
+{"input": "famous photographers", "output": "lex: famous photographers history notable\nlex: iconic photographers Ansel Adams Cartier-Bresson\nlex: renowned photographers influential works\nvec: who are the most famous and influential photographers in history\nvec: which photographers are known for iconic images that shaped the art of photography\nhyde: Ansel Adams is known for dramatic black-and-white landscapes of the American West. Henri Cartier-Bresson pioneered street photography and the decisive moment. Dorothea Lange documented the Great Depression. Annie Leibovitz is renowned for celebrity portraiture. Sebastião Salgado captures powerful social documentary images."}
+{"input": "how does climate change affect global politics", "output": "lex: climate change global politics geopolitics\nlex: climate change international relations policy\nlex: climate politics diplomacy conflict resources\nvec: how does climate change influence international relations and global political dynamics\nvec: what are the geopolitical consequences of climate change including resource conflicts and migration\nhyde: Climate change reshapes global politics through resource competition (water, arable land), climate-driven migration, and diplomatic tensions over emissions targets. Arctic ice melt opens new shipping routes and territorial disputes. Island nations face existential threats, driving climate justice advocacy at the UN."}
+{"input": "how to organize a scientific conference", "output": "lex: organize scientific conference planning\nlex: academic conference logistics program committee\nlex: scientific meeting venue call for papers\nvec: what are the steps to organizing a successful scientific conference\nvec: how do you plan an academic conference including call for papers, venue, and scheduling\nhyde: Start 12-18 months ahead. Form a program committee, select a venue, set dates, and issue a call for papers. Use a submission system like EasyChair. Arrange keynote speakers, peer review, and session scheduling. Handle registration, catering, AV equipment, and proceedings publication."}
+{"input": "how to fix a leaking faucet", "output": "lex: fix leaking faucet repair dripping\nlex: faucet leak washer cartridge replacement\nlex: kitchen bathroom faucet drip fix\nvec: how do I fix a dripping faucet in my kitchen or bathroom\nvec: what are the steps to repair a leaking faucet by replacing the washer or cartridge\nhyde: Turn off the water supply valves under the sink. Remove the faucet handle by unscrewing the decorative cap and handle screw. Pull out the cartridge or stem and inspect the rubber washer or O-ring. Replace worn parts, reassemble, and turn the water back on. Most leaks are caused by a degraded washer."}
+{"input": "how social media influences behavior", "output": "lex: social media influence behavior psychology\nlex: social media impact mental health habits\nlex: social media behavioral effects users\nvec: how does social media use influence people's behavior, opinions, and mental health\nvec: what psychological effects does regular social media use have on user behavior\nhyde: Social media influences behavior through social comparison, echo chambers, and dopamine-driven feedback loops. Users curate idealized self-presentations, leading to anxiety and low self-esteem in viewers. Algorithmic content feeds reinforce existing beliefs and can radicalize opinions through filter bubbles."}
+{"input": "how does intertextuality work?", "output": "lex: intertextuality literary theory texts\nlex: intertextuality allusion reference literature\nlex: Kristeva Barthes intertextuality meaning\nvec: how does intertextuality work as a concept in literary theory and criticism\nvec: what does intertextuality mean and how do texts reference and build on other texts\nhyde: Intertextuality, coined by Julia Kristeva, describes how every text is shaped by and references other texts. Meaning is not contained in a single work but emerges from its relationships with prior texts through allusion, quotation, parody, and genre conventions. Roland Barthes argued the reader constructs meaning from these textual connections."}
+{"input": "how does stoicism inspire inner peace", "output": "lex: Stoicism inner peace philosophy\nlex: Stoic philosophy tranquility Marcus Aurelius Epictetus\nlex: Stoic practices equanimity calm\nvec: how do Stoic philosophical principles help achieve inner peace and tranquility\nvec: what Stoic practices and teachings from Marcus Aurelius and Epictetus promote emotional calm\nhyde: Stoicism teaches inner peace through the dichotomy of control: focus only on what you can influence (your thoughts and actions) and accept what you cannot (external events). Marcus Aurelius wrote in Meditations that disturbance comes not from things themselves but from our judgments about them."}
+{"input": "how to install a car stereo?", "output": "lex: install car stereo aftermarket head unit\nlex: car stereo replacement wiring harness\nlex: car radio installation dash kit\nvec: how do I install an aftermarket car stereo and connect the wiring\nvec: what tools and adapters do I need to replace a factory car radio with a new head unit\nhyde: Disconnect the battery. Remove the factory stereo using DIN removal tools or dash panel screws. Connect the aftermarket wiring harness adapter to the car's plug—match wire colors (red=accessory, yellow=battery, black=ground). Mount the new head unit in a dash kit, slide it in, and reconnect the battery."}
+{"input": "art class", "output": "lex: art class painting drawing course\nlex: art classes beginners local online\nlex: learn art lessons studio workshop\nvec: where can I find art classes for beginners to learn painting or drawing\nvec: what types of art classes are available online and in person for adults\nhyde: Beginner art classes cover fundamentals like drawing, color theory, and composition. Options include community college courses, local studio workshops, and online platforms like Skillshare and Domestika. Classes range from watercolor and acrylic painting to charcoal drawing and digital illustration."}
+{"input": "what is the concept of ahimsa", "output": "lex: ahimsa non-violence concept Hinduism Jainism Buddhism\nlex: ahimsa meaning Indian philosophy\nlex: ahimsa Gandhi non-harm\nvec: what is the concept of ahimsa and how is non-violence practiced in Indian religions\nvec: how did Gandhi apply the principle of ahimsa in his philosophy and political movement\nhyde: Ahimsa means non-violence or non-harm and is a central principle in Hinduism, Jainism, and Buddhism. In Jainism, ahimsa extends to all living beings, including insects. Gandhi adopted ahimsa as the foundation of his political resistance, using nonviolent civil disobedience against British colonial rule."}
+{"input": "what was the byzantine empire", "output": "lex: Byzantine Empire history Eastern Roman\nlex: Byzantine Empire Constantinople medieval\nlex: Byzantine Empire culture government fall 1453\nvec: what was the Byzantine Empire and how did it continue from the Roman Empire\nvec: what were the major achievements and eventual fall of the Byzantine Empire\nhyde: The Byzantine Empire was the continuation of the Eastern Roman Empire, centered on Constantinople (modern Istanbul). It lasted from 330 CE to 1453 CE when it fell to the Ottoman Turks. It preserved Greek and Roman culture, developed Eastern Orthodox Christianity, and Justinian's legal code influenced European law."}
+{"input": "how to run for public office", "output": "lex: run for public office campaign steps\nlex: running for election candidate requirements\nlex: political campaign filing candidacy\nvec: what are the steps to running for public office in the United States\nvec: how do I start a political campaign and file as a candidate for local or state office\nhyde: To run for public office, first research eligibility requirements (age, residency, citizenship) for your target seat. File candidacy paperwork with the local election office by the deadline. Build a campaign team, set a budget, raise funds, and collect any required petition signatures. Develop a platform and begin voter outreach."}
+{"input": "how to contact local government officials", "output": "lex: contact local government officials representatives\nlex: reach city council county officials email phone\nlex: local elected officials contact information\nvec: how can I find contact information for and reach out to my local government representatives\nvec: what is the best way to contact city council members or county officials about local issues\nhyde: Find your local officials through your city or county website's \"elected officials\" page or use usa.gov's elected officials lookup tool. Contact methods include email, phone calls to their office, attending public town hall meetings, and submitting comments during city council sessions."}
+{"input": "what is the metaphysics of morality", "output": "lex: metaphysics of morality moral philosophy\nlex: metaethics moral realism anti-realism\nlex: metaphysical foundations ethics moral facts\nvec: what is the metaphysics of morality and how does it address the nature of moral facts\nvec: how do metaethicists debate whether moral truths exist objectively or are constructed\nhyde: The metaphysics of morality examines whether moral facts exist independently of human minds (moral realism) or are constructed by societies and individuals (anti-realism). Moral realists argue that \"murder is wrong\" is objectively true. Constructivists and expressivists argue moral claims express attitudes or social agreements, not metaphysical truths."}
+{"input": "latest research on climate change", "output": "lex: latest climate change research 2025 2026\nlex: recent climate science findings studies\nlex: climate change new research global warming\nvec: what are the latest scientific findings and research on climate change in 2025-2026\nvec: what do recent climate studies say about global warming trends and projections\nhyde: Recent research in 2025 shows global temperatures exceeded 1.5°C above pre-industrial levels for a full calendar year. Studies in Nature Climate Change report accelerating ice sheet loss in Greenland and West Antarctica. New modeling suggests tipping points for the Amazon rainforest may be closer than previously estimated."}
+{"input": "where to find eco-friendly furniture", "output": "lex: eco-friendly furniture sustainable shop\nlex: sustainable furniture store green materials\nlex: eco furniture reclaimed wood organic\nvec: where can I buy eco-friendly and sustainably made furniture\nvec: what brands and stores sell furniture made from sustainable or recycled materials\nhyde: Eco-friendly furniture brands include West Elm (FSC-certified wood), Medley (organic fabrics, solid wood), and Sabai (recycled and recyclable materials). Thrift stores and Habitat for Humanity ReStores sell secondhand furniture. Look for FSC certification, non-toxic finishes, and reclaimed or recycled materials."}
+{"input": "how to stay informed about politics", "output": "lex: stay informed politics news sources\nlex: follow political news reliable media\nlex: political awareness current events tracking\nvec: how can I stay well-informed about politics and current political events\nvec: what are reliable sources and strategies for keeping up with political news\nhyde: Read multiple news sources across the political spectrum: AP News and Reuters for wire reporting, then compare coverage from different outlets. Subscribe to newsletters like The Morning (NYT) or Axios AM. Follow legislative trackers like Congress.gov. Attend local government meetings and candidate forums."}
+{"input": "what is the tao te ching", "output": "lex: Tao Te Ching Laozi Taoism text\nlex: Tao Te Ching Daodejing philosophy\nlex: Tao Te Ching teachings Dao virtue\nvec: what is the Tao Te Ching and what does it teach about the Dao and living wisely\nvec: who wrote the Tao Te Ching and what are its main philosophical ideas\nhyde: The Tao Te Ching, attributed to Laozi (6th century BCE), is the foundational text of Taoism. Its 81 short chapters describe the Dao (the Way)—an ineffable cosmic principle—and De (virtue/power). It advocates wu wei (effortless action), simplicity, humility, and living in harmony with nature."}
+{"input": "what is the ethics of ai", "output": "lex: AI ethics artificial intelligence ethical issues\nlex: ethics of AI bias fairness accountability\nlex: AI ethics alignment safety\nvec: what are the major ethical issues and concerns surrounding artificial intelligence\nvec: how do ethicists address bias, fairness, transparency, and safety in AI systems\nhyde: AI ethics addresses bias in training data that leads to discriminatory outputs, lack of transparency in black-box models, accountability when AI causes harm, privacy concerns from mass data collection, and the alignment problem of ensuring AI systems act according to human values. Frameworks include fairness, accountability, and transparency (FAccT)."}
+{"input": "what is the difference between realism and idealism", "output": "lex: realism idealism philosophy difference\nlex: realism vs idealism metaphysics epistemology\nlex: philosophical realism idealism comparison\nvec: what is the philosophical difference between realism and idealism in metaphysics\nvec: how do realists and idealists disagree about the nature of reality and perception\nhyde: Realism holds that an external world exists independently of our minds and perceptions. Idealism argues that reality is fundamentally mental or mind-dependent. Plato's Forms represent a kind of realism about abstract objects, while Berkeley argued that to exist is to be perceived (esse est percipi)."}
+{"input": "how to prevent garden soil erosion?", "output": "lex: prevent garden soil erosion methods\nlex: soil erosion control garden mulch ground cover\nlex: garden erosion prevention retaining wall\nvec: how can I prevent soil erosion in my garden or yard\nvec: what methods and ground covers help stop soil from washing away in a garden\nhyde: Prevent soil erosion by mulching garden beds with 2-3 inches of wood chips or straw. Plant ground covers like creeping thyme or clover on slopes. Install retaining walls or terraces on steep grades. Use rain gardens to absorb runoff. Avoid leaving soil bare between seasons—plant cover crops like rye or clover."}
+{"input": "how to write a scientific research paper", "output": "lex: write scientific research paper structure\nlex: scientific paper writing IMRaD format\nlex: academic research paper methodology results discussion\nvec: how do you write a scientific research paper following the standard academic format\nvec: what is the structure and process for writing a research paper for journal publication\nhyde: A scientific research paper follows the IMRaD structure: Introduction (background, hypothesis, objectives), Methods (detailed procedures for reproducibility), Results (data presented with figures and tables), and Discussion (interpretation, limitations, implications). Include an abstract, references in the journal's required citation style, and acknowledgments."}
+{"input": "how to diversify investment portfolio", "output": "lex: diversify investment portfolio strategy\nlex: portfolio diversification asset allocation\nlex: investment diversification stocks bonds ETFs\nvec: how should I diversify my investment portfolio across different asset classes\nvec: what is a good strategy for spreading risk through portfolio diversification\nhyde: Diversify across asset classes: stocks, bonds, real estate, and commodities. Within stocks, spread across sectors (tech, healthcare, energy) and geographies (US, international, emerging markets). Use index funds or ETFs for broad exposure. A common allocation is 60% stocks, 30% bonds, 10% alternatives, adjusted by age and risk tolerance."}
+{"input": "how to use social media for business", "output": "lex: social media business marketing strategy\nlex: social media marketing business growth\nlex: business social media content engagement\nvec: how can small businesses effectively use social media platforms for marketing and growth\nvec: what strategies work best for using social media to promote a business and attract customers\nhyde: Choose platforms where your target audience is active: Instagram for visual products, LinkedIn for B2B, TikTok for younger demographics. Post consistently, mix promotional content with value-added posts (tips, behind-the-scenes). Use analytics to track engagement. Run targeted ads with clear CTAs and A/B test creative assets."}
+{"input": "what is zero waste?", "output": "lex: zero waste lifestyle definition\nlex: zero waste reduce reuse recycle\nlex: zero waste living tips practices\nvec: what is the zero waste movement and how do people reduce waste in daily life\nvec: what does zero waste mean and what are practical ways to minimize household waste\nhyde: Zero waste is a philosophy and lifestyle aiming to send nothing to landfills by reducing consumption, reusing items, recycling, and composting. Practical steps include using reusable bags, bottles, and containers, buying in bulk, composting food scraps, and choosing products with minimal or recyclable packaging."}
+{"input": "what is the role of civil society in governance", "output": "lex: civil society governance role function\nlex: civil society organizations NGOs democratic governance\nlex: civil society accountability transparency\nvec: what role does civil society play in democratic governance and government accountability\nvec: how do non-governmental organizations and civic groups contribute to governance\nhyde: Civil society organizations—NGOs, advocacy groups, media, and community organizations—serve as intermediaries between citizens and government. They monitor government transparency, advocate for policy changes, provide public services, and mobilize civic participation. A strong civil society holds government accountable and strengthens democracy."}
+{"input": "what is the meaning of diwali", "output": "lex: Diwali meaning festival of lights\nlex: Diwali Hindu celebration significance\nlex: Diwali traditions Lakshmi Rama\nvec: what is Diwali and what does the festival of lights celebrate in Hindu tradition\nvec: what is the religious and cultural significance of the Diwali festival\nhyde: Diwali, the festival of lights, is celebrated by Hindus, Jains, and Sikhs over five days in autumn. It symbolizes the victory of light over darkness and good over evil. Hindus celebrate Lord Rama's return to Ayodhya and honor Lakshmi, goddess of prosperity. Traditions include lighting diyas, fireworks, rangoli art, and sharing sweets."}
+{"input": "what is a political debate", "output": "lex: political debate definition election\nlex: political debate format candidates issues\nlex: political debate presidential election\nvec: what is a political debate and how do candidates discuss issues in structured debates\nvec: how are political debates organized and what role do they play in elections\nhyde: A political debate is a structured event where candidates for elected office discuss policy positions and respond to questions from moderators and sometimes the audience. Debates follow agreed-upon formats with time limits for responses and rebuttals. They allow voters to compare candidates' positions on key issues directly."}
+{"input": "macro photography", "output": "lex: macro photography techniques close-up\nlex: macro photography lens equipment\nlex: macro photography insects flowers detail\nvec: what is macro photography and what equipment and techniques does it require\nvec: how do I take high-quality macro photographs of small subjects like insects and flowers\nhyde: Macro photography captures subjects at 1:1 magnification or greater, revealing details invisible to the naked eye. Use a dedicated macro lens (100mm is popular) or extension tubes. Shoot at f/8-f/16 for sufficient depth of field. Use a tripod and focus stacking to get the entire subject sharp."}
+{"input": "what was the enlightenment", "output": "lex: Enlightenment 18th century intellectual movement\nlex: Age of Enlightenment reason philosophy\nlex: Enlightenment thinkers Voltaire Locke Kant\nvec: what was the Enlightenment and how did it change Western philosophy and politics\nvec: who were the key Enlightenment thinkers and what ideas did they promote\nhyde: The Enlightenment was an 18th-century intellectual movement emphasizing reason, science, individual liberty, and skepticism of authority. Key thinkers include John Locke (natural rights), Voltaire (free speech), Montesquieu (separation of powers), and Kant (\"dare to know\"). It directly influenced the American and French Revolutions."}
+{"input": "how do philosophers interpret free will", "output": "lex: free will philosophy determinism\nlex: philosophers free will debate libertarian compatibilist\nlex: free will hard determinism compatibilism\nvec: how do different philosophers interpret the problem of free will and determinism\nvec: what are the main philosophical positions on whether humans have free will\nhyde: Three main positions dominate: hard determinism (all events are causally determined, free will is an illusion), libertarianism (genuine free will exists and is incompatible with determinism), and compatibilism (free will and determinism can coexist—you act freely when acting on your own desires without external coercion). Hume and Frankfurt defend compatibilism."}
+{"input": "how to stay engaged in local politics", "output": "lex: engaged local politics civic participation\nlex: local politics involvement community\nlex: civic engagement local government attend meetings\nvec: how can I stay actively engaged and involved in local politics and government\nvec: what are practical ways to participate in local political decision-making\nhyde: Attend city council and school board meetings, which are open to the public. Subscribe to your local government's agenda notifications. Join neighborhood associations or civic groups. Vote in every local election—municipal and school board elections often have low turnout, amplifying each vote's impact."}
+{"input": "how to paint abstract landscapes?", "output": "lex: paint abstract landscape technique\nlex: abstract landscape painting acrylic oil\nlex: abstract landscape art color composition\nvec: how do I paint abstract landscape art using acrylic or oil paints\nvec: what techniques and approaches do artists use when painting abstract landscapes\nhyde: Start with a loose underpainting to block in the horizon and major shapes. Use a palette knife or large brush for expressive marks. Simplify landscape elements—hills, sky, water—into geometric shapes and bold color fields. Layer transparent glazes over opaque areas. Let the painting suggest the landscape rather than depict it literally."}
+{"input": "how to decorate a small apartment", "output": "lex: small apartment decorating ideas\nlex: tiny apartment interior design\nlex: space-saving furniture small rooms\nvec: what are the best ways to decorate and furnish a small apartment to maximize space?\nvec: interior design tips for making a compact apartment look bigger and more stylish\nhyde: Use mirrors and light colors to make a small apartment feel larger. Choose multi-functional furniture like a storage ottoman or a fold-down desk. Vertical shelving frees up floor space while adding display areas."}
+{"input": "what is an allegory", "output": "lex: allegory literary device definition\nlex: allegory examples literature\nvec: what does allegory mean as a literary device and how is it used in storytelling?\nvec: how do authors use allegory to convey hidden meanings through characters and events?\nhyde: An allegory is a narrative in which characters, events, and settings represent abstract ideas or moral qualities. For example, George Orwell's Animal Farm is an allegory for the Russian Revolution, with farm animals standing in for political figures."}
+{"input": "what is wildlife photography?", "output": "lex: wildlife photography techniques\nlex: wildlife photography camera gear\nlex: photographing animals in nature\nvec: what is wildlife photography and what skills and equipment does it require?\nvec: how do photographers capture images of wild animals in their natural habitats?\nhyde: Wildlife photography involves capturing images of animals in their natural environments. Photographers typically use long telephoto lenses (300mm-600mm) and fast shutter speeds to freeze motion. Patience and knowledge of animal behavior are essential for getting close without disturbing subjects."}
+{"input": "what is chaos theory", "output": "lex: chaos theory mathematics\nlex: butterfly effect deterministic systems\nlex: nonlinear dynamics sensitive dependence\nvec: what is chaos theory and how does it explain unpredictable behavior in deterministic systems?\nvec: how does the butterfly effect relate to chaos theory in mathematics and physics?\nhyde: Chaos theory studies deterministic systems that are highly sensitive to initial conditions. A tiny change in starting values can produce vastly different outcomes over time — the so-called butterfly effect. The Lorenz attractor, discovered in 1963, was one of the first examples of chaotic behavior in weather modeling."}
+{"input": "what is the role of ethics in scientific research", "output": "lex: research ethics scientific integrity\nlex: ethical guidelines human subjects research\nlex: scientific misconduct fraud prevention\nvec: why are ethical standards important in conducting scientific research?\nvec: how do ethics committees and institutional review boards regulate scientific experiments?\nhyde: Ethics in scientific research ensures the integrity of findings and the protection of human and animal subjects. Researchers must obtain informed consent, avoid fabrication or falsification of data, and disclose conflicts of interest. Institutional Review Boards (IRBs) review proposed studies before they begin."}
+{"input": "how to shoot video in low light", "output": "lex: low light video settings camera\nlex: filming dark environments ISO aperture\nlex: low light videography tips\nvec: what camera settings and techniques produce the best video quality in low light conditions?\nvec: how do filmmakers shoot usable footage in dark or dimly lit environments?\nhyde: For low light video, open your aperture to f/1.4–f/2.8 and lower your shutter speed to 1/50 for 24fps footage. Raise ISO gradually — modern cameras handle ISO 3200–6400 with acceptable noise. Use a fast prime lens and add practical lights in the scene when possible."}
+{"input": "what is compositional balance?", "output": "lex: compositional balance art design\nlex: symmetrical asymmetrical balance visual\nlex: balance principles composition photography\nvec: what does compositional balance mean in art, photography, and graphic design?\nvec: how do artists achieve visual balance through symmetrical and asymmetrical arrangements?\nhyde: Compositional balance refers to the distribution of visual weight within an image or artwork. Symmetrical balance places equal elements on both sides of a central axis, while asymmetrical balance uses contrasting elements — such as a large shape offset by a smaller, brighter one — to create dynamic equilibrium."}
+{"input": "what is the impact of lobbyists on legislation", "output": "lex: lobbyists influence legislation policy\nlex: lobbying congress lawmaking\nlex: corporate lobbying political spending\nvec: how do lobbyists influence the legislative process and shape laws passed by government?\nvec: what impact does corporate and special interest lobbying have on policy outcomes?\nhyde: Lobbyists meet with lawmakers, draft model legislation, and organize campaign contributions to influence policy outcomes. In the U.S., spending on lobbying exceeded $4 billion annually. Critics argue this gives wealthy interests disproportionate power, while proponents say lobbyists provide expertise legislators need."}
+{"input": "how to navigate with a compass", "output": "lex: compass navigation orienteering\nlex: magnetic compass bearing map reading\nlex: compass declination true north\nvec: how do you use a magnetic compass and topographic map to navigate outdoors?\nvec: what are the steps for taking a bearing with a compass and following it in the field?\nhyde: Hold the compass flat and rotate the bezel until the orienting arrow aligns with the magnetic needle pointing north. Place the compass on your map, align the edge with your start and destination, and rotate the bezel to match the map's grid lines. Adjust for magnetic declination, then follow the bearing."}
+{"input": "what is genetic drift", "output": "lex: genetic drift population genetics\nlex: bottleneck effect founder effect allele frequency\nvec: what is genetic drift and how does it cause random changes in allele frequencies in small populations?\nvec: how do the bottleneck effect and founder effect relate to genetic drift in evolution?\nhyde: Genetic drift is a mechanism of evolution where allele frequencies change randomly from one generation to the next due to chance sampling. Its effects are strongest in small populations. The bottleneck effect occurs when a population is drastically reduced, and the founder effect occurs when a small group colonizes a new area."}
+{"input": "what is the significance of the alhambra?", "output": "lex: Alhambra palace Granada Spain\nlex: Alhambra Islamic architecture Nasrid\nlex: Alhambra historical significance\nvec: why is the Alhambra in Granada, Spain considered a masterpiece of Islamic architecture?\nvec: what is the cultural and historical significance of the Alhambra palace?\nhyde: The Alhambra is a palace and fortress complex in Granada, Spain, built primarily by the Nasrid dynasty in the 13th and 14th centuries. Its intricate stucco work, muqarnas ceilings, and geometric tile patterns represent the pinnacle of Moorish art in Europe. The Court of the Lions features 124 marble columns surrounding a central fountain."}
+{"input": "how the human brain functions", "output": "lex: human brain function neuroscience\nlex: brain regions neurons synapses\nlex: cerebral cortex brain anatomy\nvec: how does the human brain process information through neurons and different brain regions?\nvec: what are the major parts of the brain and their roles in cognition, memory, and movement?\nhyde: The human brain contains approximately 86 billion neurons that communicate via electrical and chemical signals across synapses. The cerebral cortex handles higher-order functions like reasoning and language. The hippocampus is critical for forming new memories, while the cerebellum coordinates movement and balance."}
+{"input": "how is love viewed in different religions?", "output": "lex: love religion Christianity Islam Buddhism\nlex: divine love spiritual traditions\nlex: religious teachings about love\nvec: how do different world religions like Christianity, Islam, Hinduism, and Buddhism define and teach about love?\nvec: what role does love play in the spiritual teachings of major religions?\nhyde: In Christianity, love (agape) is the highest virtue — \"God is love\" (1 John 4:8). Islam teaches that Allah is Al-Wadud, the Loving, and compassion toward others is a core duty. In Buddhism, metta (loving-kindness) is cultivated through meditation. Hinduism describes divine love (bhakti) as devotion to God."}
+{"input": "what is literary symbolism?", "output": "lex: literary symbolism examples\nlex: symbolism in literature meaning\nlex: symbolic imagery fiction poetry\nvec: what is symbolism as a literary device and how do authors use symbols to convey deeper meaning?\nvec: how do readers identify and interpret symbols in novels, poems, and short stories?\nhyde: Literary symbolism is the use of objects, characters, or events to represent abstract ideas beyond their literal meaning. In The Great Gatsby, the green light symbolizes Gatsby's unattainable dream. The conch shell in Lord of the Flies represents order and democratic authority."}
+{"input": "what is the relationship between ethics and law?", "output": "lex: ethics versus law differences\nlex: morality legality relationship\nlex: ethical standards legal requirements\nvec: how do ethics and law relate to each other, and where do they diverge?\nvec: can something be legal but unethical, or illegal but morally justified?\nhyde: Ethics and law overlap but are distinct. Laws are formal rules enforced by the state, while ethics are moral principles guiding individual conduct. Something can be legal yet unethical — such as exploitative pricing — or illegal yet ethically defensible, as in acts of civil disobedience against unjust laws."}
+{"input": "json load", "output": "lex: JSON parse load file\nlex: JSON.parse read file\nlex: json load Python JavaScript\nvec: how do you load and parse a JSON file in Python or JavaScript?\nvec: what functions are used to read JSON data from a file or string?\nhyde: In Python, use json.load(f) to read from a file object and json.loads(s) to parse a string. In JavaScript, use JSON.parse(str) to convert a JSON string into an object, or fetch a file and call response.json() to parse the result."}
+{"input": "how to remove oil stains from clothes", "output": "lex: remove oil stains clothing\nlex: grease stain removal fabric\nlex: oil stain laundry treatment\nvec: what is the best method for removing oil and grease stains from clothing fabric?\nvec: how do you get cooking oil or motor oil stains out of clothes at home?\nhyde: Apply dish soap or liquid detergent directly to the oil stain and gently rub it in. Let it sit for 10-15 minutes, then wash in the hottest water safe for the fabric. For stubborn stains, sprinkle baking soda or cornstarch on the spot to absorb excess oil before treating."}
+{"input": "where to buy greenhouse supplies?", "output": "lex: greenhouse supplies store online\nlex: buy greenhouse panels heaters shelving\nlex: greenhouse gardening equipment\nvec: where can I purchase greenhouse supplies like panels, heaters, ventilation, and shelving?\nvec: what are the best online and local stores for buying greenhouse building materials and accessories?\nhyde: Greenhouse supplies are available at garden centers like Home Depot and Lowe's, as well as specialty retailers like Greenhouse Megastore and Bootstrap Farmer. Online, Amazon carries polycarbonate panels, shade cloth, heating mats, and ventilation fans. For commercial-grade supplies, contact manufacturers like Rimol Greenhouses directly."}
+{"input": "how to support climbing roses?", "output": "lex: climbing roses trellis support\nlex: train climbing roses wall fence\nlex: rose arbor lattice structure\nvec: what structures and techniques are used to support and train climbing roses?\nvec: how do you attach and guide climbing roses along a trellis, wall, or arbor?\nhyde: Install a sturdy trellis, arbor, or wire system at least 3 inches from the wall to allow air circulation. Tie canes horizontally with soft plant ties to encourage lateral growth and more blooms. Prune in late winter, removing dead wood and shortening side shoots to 2-3 buds."}
+{"input": "how to manage debt", "output": "lex: debt management repayment plan\nlex: pay off debt strategies snowball avalanche\nlex: credit card debt consolidation\nvec: what are the most effective strategies for managing and paying off personal debt?\nvec: how does the debt snowball versus debt avalanche method work for debt repayment?\nhyde: List all debts with their balances, interest rates, and minimum payments. With the avalanche method, pay extra toward the highest-interest debt first to save the most money. With the snowball method, pay off the smallest balance first for psychological momentum. Consider consolidation loans if you qualify for a lower rate."}
+{"input": "sailing adventures", "output": "lex: sailing adventure trips voyages\nlex: sailing vacation destinations cruises\nlex: ocean sailing expedition\nvec: what are some popular sailing adventure destinations and voyages around the world?\nvec: how do people plan and prepare for multi-day sailing trips and ocean crossings?\nhyde: Popular sailing adventures include island-hopping in the Greek Cyclades, crossing the Atlantic via the trade winds from the Canary Islands to the Caribbean, and navigating the fjords of Norway. Charter companies offer bareboat and crewed options for all experience levels, from weekend coastal cruises to month-long blue water passages."}
+{"input": "paint flow", "output": "lex: paint flow viscosity consistency\nlex: acrylic paint flow medium pouring\nlex: paint flow rate spray gun\nvec: how do you control paint flow and viscosity for acrylic pouring or spray application?\nvec: what is a flow medium and how does it affect paint consistency?\nhyde: Paint flow refers to how freely paint moves and levels on a surface. For acrylic pouring, mix paint with a flow medium like Floetrol at a 2:1 ratio to achieve a honey-like consistency. For spray guns, thin paint to the manufacturer's recommended viscosity using a flow cup to measure."}
+{"input": "how to create a budget plan", "output": "lex: budget plan personal monthly\nlex: create budget spreadsheet expenses income\nlex: 50/30/20 budgeting rule\nvec: how do you create a personal monthly budget plan to track income and expenses?\nvec: what steps are involved in building a budget and sticking to it?\nhyde: Start by listing your monthly after-tax income. Track all expenses for one month, categorizing them as needs, wants, and savings. Apply the 50/30/20 rule: 50% to necessities, 30% to discretionary spending, and 20% to savings and debt repayment. Use a spreadsheet or app like YNAB to monitor progress."}
+{"input": "how to apply for research funding", "output": "lex: research funding application grant\nlex: apply grant NIH NSF proposal\nlex: research grant writing tips\nvec: what is the process for applying for academic or scientific research funding grants?\nvec: how do researchers write successful grant proposals for agencies like NIH and NSF?\nhyde: Identify funding agencies that match your research area — NIH for biomedical, NSF for science and engineering, NEH for humanities. Read the request for proposals (RFP) carefully. Write a clear specific aims page, include preliminary data, and describe your methodology in detail. Submit through the agency's online portal before the deadline."}
+{"input": "how to improve credit score", "output": "lex: improve credit score FICO\nlex: raise credit score fast tips\nlex: credit score factors payment history\nvec: what are the most effective ways to raise your credit score quickly?\nvec: which factors affect your FICO credit score the most and how can you improve them?\nhyde: Pay all bills on time — payment history accounts for 35% of your FICO score. Keep credit utilization below 30% of your total credit limit. Avoid opening too many new accounts at once. Check your credit report for errors and dispute inaccuracies. Keeping old accounts open increases your average account age."}
+{"input": "what is literary criticism?", "output": "lex: literary criticism theory analysis\nlex: literary criticism schools formalism structuralism\nlex: literary analysis methods approaches\nvec: what is literary criticism and what are its major schools of thought?\nvec: how do literary critics analyze and interpret works of literature using different theoretical frameworks?\nhyde: Literary criticism is the study, evaluation, and interpretation of literature. Major approaches include formalism (focusing on the text itself), structuralism (analyzing underlying structures), feminist criticism (examining gender representation), and post-colonialism (exploring power dynamics). Each lens offers a different way to interpret a work's meaning."}
+{"input": "how do ethical theories apply to social issues", "output": "lex: ethical theories social issues applied ethics\nlex: utilitarianism deontology social justice\nlex: ethics poverty inequality healthcare\nvec: how are ethical theories like utilitarianism and deontology applied to real-world social issues?\nvec: what ethical frameworks do philosophers use to analyze problems like poverty, inequality, and healthcare?\nhyde: Utilitarian ethics evaluates social policies by their overall consequences — a policy is just if it maximizes well-being for the greatest number. Deontological ethics focuses on rights and duties regardless of outcome. Applying these frameworks to issues like healthcare access reveals tensions between collective welfare and individual rights."}
+{"input": "where to buy affordable art prints", "output": "lex: buy affordable art prints online\nlex: cheap art prints posters wall decor\nlex: art print shops Etsy Society6\nvec: where can I buy affordable and high-quality art prints for home decoration?\nvec: what are the best online stores for purchasing inexpensive art prints and posters?\nhyde: Affordable art prints are available on Society6, Redbubble, and Etsy, where independent artists sell prints starting at $15–$30. IKEA offers framed prints under $20. For museum-quality reproductions, check Artsy or Saatchi Art's prints section. King & McGaw specializes in licensed fine art reproductions at mid-range prices."}
+{"input": "how do you critique a literary work?", "output": "lex: critique literary work analysis\nlex: literary critique essay writing\nlex: evaluate novel poem fiction\nvec: what steps do you follow to write a literary critique of a novel or poem?\nvec: how do you analyze and evaluate the strengths and weaknesses of a literary work?\nhyde: To critique a literary work, start by reading it closely and noting your initial reactions. Identify the theme, narrative structure, character development, and use of literary devices. Evaluate how effectively the author conveys their message. Support your assessment with specific textual evidence and quotations from the work."}
+{"input": "what are the principles of democracy", "output": "lex: principles democracy government\nlex: democratic principles rule of law elections\nlex: democracy separation of powers rights\nvec: what are the fundamental principles that define a democratic system of government?\nvec: how do free elections, rule of law, and separation of powers form the foundation of democracy?\nhyde: The core principles of democracy include popular sovereignty (power derives from the people), free and fair elections, rule of law, separation of powers among branches of government, protection of individual rights and civil liberties, and majority rule with minority rights. An independent judiciary ensures laws are applied equally."}
+{"input": "how to grow tomatoes at home?", "output": "lex: grow tomatoes home garden\nlex: tomato plant care watering sunlight\nlex: container tomatoes growing tips\nvec: how do you grow tomato plants at home in a garden bed or container?\nvec: what soil, sunlight, and watering conditions do tomato plants need to produce fruit?\nhyde: Plant tomato seedlings after the last frost in a spot receiving 6-8 hours of direct sunlight. Use well-draining soil amended with compost. Water deeply at the base 1-2 inches per week. Stake or cage plants for support. Feed with a balanced fertilizer every two weeks once fruit begins to set."}
+{"input": "how to fix a loud exhaust?", "output": "lex: fix loud exhaust car muffler\nlex: exhaust leak repair pipe\nlex: muffler replacement noisy exhaust\nvec: how do you diagnose and fix a loud or rattling car exhaust system?\nvec: what causes a car exhaust to become loud and how do you repair or replace the muffler?\nhyde: A loud exhaust is usually caused by a hole in the muffler, a cracked exhaust pipe, or a failed gasket at the manifold. For small holes, apply exhaust repair tape or paste as a temporary fix. For larger damage, replace the affected section. A rusted-through muffler should be replaced entirely — bolt-on universal mufflers cost $30–$80."}
+{"input": "what is kinetic art?", "output": "lex: kinetic art sculpture movement\nlex: kinetic art artists Calder Tinguely\nlex: moving art installation mechanical\nvec: what is kinetic art and how do artists create sculptures and installations that move?\nvec: who are the most famous kinetic artists and what are their notable works?\nhyde: Kinetic art is a genre of art that incorporates real or apparent movement. Alexander Calder pioneered the mobile — hanging sculptures that move with air currents. Jean Tinguely built complex mechanical assemblages that rattled and spun. Modern kinetic artists use motors, wind, and magnets to create motion."}
+{"input": "async web", "output": "lex: async web framework server\nlex: asynchronous HTTP request JavaScript Python\nlex: async await web API\nvec: how do asynchronous programming patterns work in web development and API requests?\nvec: what are the best async web frameworks for building non-blocking HTTP servers?\nhyde: Asynchronous web programming allows a server to handle multiple requests concurrently without blocking. In Python, frameworks like FastAPI and aiohttp use async/await syntax with an event loop. In JavaScript, Express with async handlers or Fastify process requests non-blockingly. This improves throughput for I/O-bound workloads."}
+{"input": "what is the philosophy of nonviolence", "output": "lex: philosophy nonviolence ahimsa pacifism\nlex: nonviolence Gandhi King civil disobedience\nvec: what is the philosophical basis for nonviolence as practiced by Gandhi and Martin Luther King Jr.?\nvec: how does the concept of ahimsa relate to the broader philosophy of nonviolent resistance?\nhyde: Nonviolence (ahimsa) as a philosophy holds that physical force is never justified as a means of conflict resolution. Mahatma Gandhi developed satyagraha — truth-force — as a method of nonviolent resistance against British colonial rule. Martin Luther King Jr. adapted these principles to the American civil rights movement."}
+{"input": "what are the main sects of islam?", "output": "lex: sects of Islam Sunni Shia Sufi\nlex: Islamic denominations branches\nlex: Sunni Shia differences beliefs\nvec: what are the major sects and branches within Islam and how do they differ?\nvec: what caused the split between Sunni and Shia Muslims and what are their key theological differences?\nhyde: The two main sects of Islam are Sunni (approximately 85-90% of Muslims) and Shia (10-15%). The split originated from a disagreement over succession after Prophet Muhammad's death in 632 CE. Sunnis accepted Abu Bakr as caliph, while Shia believed leadership belonged to Ali, Muhammad's cousin and son-in-law. Sufism is a mystical tradition found within both branches."}
+{"input": "how to use charcoal for drawing?", "output": "lex: charcoal drawing techniques\nlex: vine compressed charcoal sketching\nlex: charcoal shading blending paper\nvec: what are the techniques for drawing and shading with charcoal on paper?\nvec: what types of charcoal are used for drawing and how do they differ in effect?\nhyde: Vine charcoal is soft and ideal for light sketching and easy erasing. Compressed charcoal is denser, producing darker, richer marks. Hold the charcoal on its side for broad strokes and use the tip for fine lines. Blend with a tortillon or chamois cloth. Fix finished drawings with spray fixative to prevent smudging."}
+{"input": "what is mindfulness", "output": "lex: mindfulness meditation practice\nlex: mindfulness definition awareness present moment\nlex: mindfulness stress reduction MBSR\nvec: what is mindfulness and how is it practiced as a form of meditation?\nvec: what are the psychological and health benefits of practicing mindfulness regularly?\nhyde: Mindfulness is the practice of paying attention to the present moment without judgment. It involves observing thoughts, feelings, and sensations as they arise and letting them pass. Jon Kabat-Zinn developed Mindfulness-Based Stress Reduction (MBSR), an eight-week program shown to reduce anxiety, depression, and chronic pain."}
+{"input": "latest updates on the ukraine conflict", "output": "lex: Ukraine conflict war 2025 2026 updates\nlex: Ukraine Russia war latest news\nlex: Ukraine ceasefire negotiations frontline\nvec: what are the most recent developments in the Russia-Ukraine war as of 2025-2026?\nvec: what is the current status of the Ukraine conflict including ceasefire talks and territorial changes?\nhyde: As fighting continues along the eastern front, diplomatic efforts have intensified with multiple rounds of negotiations. Ukraine's forces have focused on defensive operations in the Donetsk region while maintaining pressure on supply lines. International support continues with new aid packages and sanctions enforcement."}
+{"input": "git push", "output": "lex: git push remote origin\nlex: git push branch upstream\nlex: git push force rejected\nvec: how do you push commits to a remote repository using git push?\nvec: what do you do when git push is rejected and how do you set upstream tracking branches?\nhyde: Use `git push origin main` to push your local main branch to the remote. For a new branch, use `git push -u origin feature-branch` to set the upstream tracking reference. If the push is rejected because the remote has new commits, run `git pull --rebase` first, then push again."}
+{"input": "what is hedonism", "output": "lex: hedonism philosophy pleasure\nlex: hedonism Epicurus ethical theory\nlex: hedonistic ethics pleasure pain\nvec: what is hedonism as a philosophical doctrine about pleasure and the good life?\nvec: how did Epicurus define hedonism and how does it differ from popular conceptions of pleasure-seeking?\nhyde: Hedonism is the philosophical view that pleasure is the highest good and the proper aim of human life. Epicurus distinguished between kinetic pleasures (active enjoyment) and katastematic pleasures (the absence of pain). He argued that simple pleasures, friendship, and tranquility produce the most lasting happiness — not excess or indulgence."}
+{"input": "what is a mathematical model", "output": "lex: mathematical model definition\nlex: mathematical modeling equations simulation\nlex: applied mathematics modeling real world\nvec: what is a mathematical model and how is it used to represent real-world systems?\nvec: how do scientists and engineers build mathematical models to simulate and predict phenomena?\nhyde: A mathematical model uses equations and variables to represent a real-world system. For example, the SIR model uses differential equations to predict infectious disease spread: dS/dt = -βSI, dI/dt = βSI - γI, dR/dt = γI. Models are validated by comparing predictions against observed data and refined iteratively."}
+{"input": "how to grow an herb garden", "output": "lex: grow herb garden home indoor outdoor\nlex: herb garden planting basil cilantro thyme\nlex: container herb garden windowsill\nvec: how do you start and maintain an herb garden at home, indoors or outdoors?\nvec: which herbs grow best together and what soil and light conditions do they need?\nhyde: Start with easy herbs like basil, parsley, mint, rosemary, and thyme. Plant in well-draining soil with 6+ hours of sunlight. Herbs in containers need pots with drainage holes and regular watering when the top inch of soil is dry. Harvest regularly by pinching stems above leaf nodes to encourage bushy growth."}
+{"input": "how to evaluate a scientific claim", "output": "lex: evaluate scientific claim evidence\nlex: critical thinking scientific evidence peer review\nlex: assess scientific study credibility\nvec: how do you critically evaluate whether a scientific claim is supported by credible evidence?\nvec: what criteria should you use to judge the reliability of a scientific study or finding?\nhyde: Check if the claim is published in a peer-reviewed journal. Look at the sample size, methodology, and whether results have been replicated independently. Consider whether the source has conflicts of interest. Distinguish between correlation and causation. Evaluate the statistical significance and effect size reported in the study."}
+{"input": "what is virtue signaling?", "output": "lex: virtue signaling definition examples\nlex: virtue signaling social media politics\nvec: what does virtue signaling mean and how is the term used in political and social discourse?\nvec: how do people use virtue signaling to publicly express moral values without substantive action?\nhyde: Virtue signaling refers to the public expression of moral values or opinions primarily intended to demonstrate one's good character rather than to effect change. The term is often used critically to describe performative displays on social media — such as posting a hashtag or changing a profile picture — without taking meaningful action on the issue."}
+{"input": "what is impact investing?", "output": "lex: impact investing ESG social return\nlex: impact investing funds sustainable\nlex: socially responsible investing SRI\nvec: what is impact investing and how does it generate both financial returns and social or environmental benefit?\nvec: how does impact investing differ from traditional investing and ESG strategies?\nhyde: Impact investing directs capital toward companies and projects that generate measurable social or environmental benefits alongside financial returns. Unlike ESG screening, which excludes harmful sectors, impact investing actively targets positive outcomes — such as affordable housing, renewable energy, or microfinance. The Global Impact Investing Network (GIIN) estimates the market at over $1 trillion."}
+{"input": "stellar cartography", "output": "lex: stellar cartography star mapping\nlex: star chart celestial mapping catalog\nlex: astronomical survey stellar positions\nvec: what is stellar cartography and how do astronomers map the positions and movements of stars?\nvec: what tools and surveys are used to create detailed maps of stars in the galaxy?\nhyde: Stellar cartography is the science of mapping the positions, distances, and motions of stars. The ESA's Gaia mission has cataloged over 1.8 billion stars with precise positions and parallax measurements. Stellar maps use right ascension and declination coordinates, with distances measured in parsecs from trigonometric parallax."}
+{"input": "what are hedge funds?", "output": "lex: hedge funds investment strategy\nlex: hedge fund accredited investors returns\nlex: hedge fund management fee structure\nvec: what are hedge funds and how do they differ from mutual funds and other investment vehicles?\nvec: what strategies do hedge funds use to generate returns and manage risk?\nhyde: A hedge fund is a pooled investment fund that employs diverse strategies — including long/short equity, arbitrage, and derivatives trading — to generate returns for accredited investors. Unlike mutual funds, hedge funds face fewer regulatory restrictions and typically charge a 2% management fee plus 20% of profits (the \"2 and 20\" model)."}
+{"input": "github repository", "output": "lex: GitHub repository create manage\nlex: GitHub repo clone push pull\nlex: git repository hosting GitHub\nvec: how do you create and manage a repository on GitHub for version control?\nvec: what are the basic operations for working with a GitHub repository including cloning, pushing, and pull requests?\nhyde: To create a GitHub repository, click \"New repository\" on github.com, name it, and choose public or private visibility. Clone it locally with `git clone https://github.com/user/repo.git`. Add files, commit changes, and push with `git push origin main`. Collaborate through pull requests and code reviews."}
+{"input": "how to enhance positive social impact?", "output": "lex: enhance social impact community\nlex: positive social impact strategies nonprofit\nlex: social change community engagement\nvec: what are effective strategies for individuals and organizations to create positive social impact?\nvec: how can nonprofits and businesses measure and increase their social impact in communities?\nhyde: To enhance social impact, define clear measurable goals aligned with community needs. Use a theory of change to map how activities lead to outcomes. Partner with local organizations for culturally informed approaches. Measure results with both quantitative metrics (people served, outcomes achieved) and qualitative feedback from beneficiaries."}
+{"input": "how to negotiate rent prices", "output": "lex: negotiate rent price landlord\nlex: rent negotiation apartment lease\nlex: lower rent strategies tenant\nvec: how do you negotiate a lower rent price with your landlord when signing or renewing a lease?\nvec: what tactics and arguments can tenants use to get a better deal on apartment rent?\nhyde: Research comparable rents in your area on Zillow or Apartments.com before negotiating. Highlight your strengths as a tenant: stable income, good credit, long tenure, or willingness to sign a longer lease. Negotiate during off-peak months (November-February) when demand is lower. Offer to prepay several months or handle minor maintenance in exchange for a reduction."}
+{"input": "how to propagate succulents from leaves", "output": "lex: propagate succulents leaves cuttings\nlex: succulent leaf propagation rooting\nlex: grow succulents from leaf\nvec: how do you propagate new succulent plants from individual leaf cuttings?\nvec: what is the step-by-step process for rooting succulent leaves to grow new plants?\nhyde: Gently twist a healthy leaf from the stem, ensuring a clean break with the base intact. Let it callous over for 2-3 days in indirect light. Place on top of well-draining cactus soil and mist every few days. Roots and a tiny rosette will appear in 2-4 weeks. Avoid direct sunlight until established."}
+{"input": "what is the role of non-governmental organizations", "output": "lex: NGO non-governmental organization role\nlex: NGOs humanitarian aid development\nlex: nonprofit organizations international advocacy\nvec: what roles do non-governmental organizations (NGOs) play in humanitarian aid, development, and advocacy?\nvec: how do NGOs influence government policy and deliver services in developing countries?\nhyde: Non-governmental organizations (NGOs) operate independently from government to address social, environmental, and humanitarian issues. They deliver aid in crisis zones, advocate for policy changes, monitor human rights, and provide services like healthcare and education. Major NGOs include Médecins Sans Frontières, Amnesty International, and the Red Cross."}
+{"input": "what is pentecost in christian faith", "output": "lex: Pentecost Christian Holy Spirit\nlex: Pentecost Acts apostles church\nlex: Pentecost feast day Christianity\nvec: what is the meaning and significance of Pentecost in the Christian faith?\nvec: what happened on the day of Pentecost according to the Book of Acts in the Bible?\nhyde: Pentecost commemorates the descent of the Holy Spirit upon the apostles fifty days after Easter, as described in Acts 2. The apostles began speaking in tongues and Peter preached to a crowd, leading to about 3,000 conversions. It is often called the birthday of the Christian Church and is celebrated as a major feast day."}
+{"input": "how to pay off student loans faster", "output": "lex: pay off student loans faster\nlex: student loan repayment strategies\nlex: student loan refinance extra payments\nvec: what are the most effective strategies for paying off student loans ahead of schedule?\nvec: how can refinancing or making extra payments help you pay off student loans faster?\nhyde: Make payments above the minimum and specify that extra goes toward the principal. Refinance at a lower interest rate if your credit has improved. Use the avalanche method to target the highest-rate loan first. Set up biweekly payments instead of monthly to make one extra payment per year. Allocate windfalls like tax refunds directly to loans."}
+{"input": "what are the characteristics of gothic literature?", "output": "lex: gothic literature characteristics elements\nlex: gothic fiction dark romantic horror\nlex: gothic novel atmosphere supernatural\nvec: what are the defining characteristics and common elements of gothic literature?\nvec: how do gothic novels use setting, atmosphere, and the supernatural to create suspense and dread?\nhyde: Gothic literature features dark, brooding settings like castles, ruins, and isolated mansions. Common elements include supernatural events, madness, secrets, and heightened emotion. The atmosphere is oppressive and foreboding. Key works include Horace Walpole's The Castle of Otranto, Mary Shelley's Frankenstein, and Bram Stoker's Dracula."}
+{"input": "how to register a political party", "output": "lex: register political party requirements\nlex: form new political party ballot access\nlex: political party registration petition signatures\nvec: what is the legal process for registering a new political party in the United States?\nvec: what requirements must be met to officially form and register a political party for elections?\nhyde: Requirements to register a political party vary by state. Generally, you must file organizational documents with the secretary of state, collect a minimum number of petition signatures (often 1-5% of registered voters), adopt a party platform and bylaws, and hold a founding convention. Some states also require fielding candidates in a certain number of races."}
+{"input": "leather reclining lounge chairs", "output": "lex: leather reclining lounge chair\nlex: leather recliner chair buy\nlex: reclining lounge chair living room\nvec: what are the best leather reclining lounge chairs for comfort and durability?\nvec: where can I buy a high-quality leather recliner chair for my living room?\nhyde: The La-Z-Boy Kirkwood leather recliner features top-grain leather upholstery, a power reclining mechanism, and lumbar support. At $1,200, it's a mid-range option with a 10-year warranty. For premium choices, the Ekornes Stressless recliner offers ergonomic design with adjustable headrest and glide function starting at $2,500."}
+{"input": "how to write a scientific research proposal", "output": "lex: write scientific research proposal\nlex: research proposal template structure\nlex: grant proposal methodology aims\nvec: how do you write a compelling scientific research proposal with clear aims and methodology?\nvec: what sections and structure should a scientific research proposal include?\nhyde: A scientific research proposal typically includes: title, abstract, specific aims, background and significance, preliminary data, research design and methods, timeline, budget and justification, and references. The specific aims page is the most critical — state the problem, your hypothesis, and 2-3 measurable objectives clearly in one page."}
+{"input": "how to open a savings account", "output": "lex: open savings account bank\nlex: savings account requirements documents\nlex: high yield savings account online\nvec: what is the process for opening a savings account at a bank or online institution?\nvec: what documents and minimum deposit do you need to open a savings account?\nhyde: To open a savings account, choose a bank or credit union and compare interest rates (high-yield online accounts often offer 4-5% APY). You'll need a government-issued ID, Social Security number, and an initial deposit (often $25-$100). Apply online or in person. Link a checking account for easy transfers and set up automatic deposits."}
+{"input": "what is the role of e-commerce in modern business", "output": "lex: e-commerce business online retail\nlex: e-commerce sales growth digital\nlex: online shopping platform business model\nvec: how has e-commerce transformed the way businesses sell products and reach customers?\nvec: what role does e-commerce play in business strategy including direct-to-consumer and marketplace models?\nhyde: E-commerce enables businesses to sell products globally without physical storefronts. Companies use platforms like Shopify, Amazon Marketplace, and WooCommerce to reach customers online. In 2024, global e-commerce sales exceeded $6 trillion. Direct-to-consumer (DTC) brands cut out middlemen, while marketplaces aggregate sellers for one-stop shopping."}
+{"input": "tree climb", "output": "lex: tree climbing techniques equipment\nlex: recreational tree climbing arborist\nlex: tree climbing harness rope\nvec: what techniques and equipment are used for recreational or professional tree climbing?\nvec: how do arborists safely climb trees using ropes, harnesses, and climbing spurs?\nhyde: Recreational tree climbing uses a doubled-rope technique (DRT) with a throw line to set the rope over a branch. Climbers wear a saddle harness and ascend using mechanical ascenders or friction hitches like the Blake's hitch. Arborists use single-rope technique (SRT) for efficiency and may use climbing spurs for removals only."}
+{"input": "how to upgrade car headlights?", "output": "lex: upgrade car headlights LED HID\nlex: replace headlight bulbs brighter\nlex: headlight upgrade installation\nvec: how do you upgrade your car's headlights to brighter LED or HID bulbs?\nvec: what are the steps for replacing stock halogen headlights with aftermarket LED headlights?\nhyde: To upgrade from halogen to LED headlights, find your bulb size in the owner's manual (e.g., H11, 9005). Purchase a quality LED kit from brands like Hikari or Fahren. Remove the old bulb by twisting the retaining ring, insert the LED bulb, and connect the driver/ballast. Aim the headlights after installation to avoid blinding oncoming traffic."}
+{"input": "what are the themes of to kill a mockingbird?", "output": "lex: To Kill a Mockingbird themes\nlex: To Kill a Mockingbird racial injustice innocence\nlex: Harper Lee themes moral courage\nvec: what are the major themes explored in Harper Lee's To Kill a Mockingbird?\nvec: how does To Kill a Mockingbird address racial injustice, moral courage, and the loss of innocence?\nhyde: The central themes of To Kill a Mockingbird include racial injustice in the American South, as shown through Tom Robinson's trial. Moral courage is embodied by Atticus Finch, who defends Robinson despite social pressure. The loss of innocence is traced through Scout's growing awareness of prejudice and cruelty in Maycomb, Alabama."}
+{"input": "how to install a car roof rack?", "output": "lex: install car roof rack\nlex: roof rack mounting crossbars\nlex: car roof rack installation guide\nvec: how do you install a roof rack on a car with or without factory roof rails?\nvec: what are the steps for mounting crossbars and a roof rack system on a vehicle?\nhyde: For cars with factory side rails, slide the crossbar feet onto the rails and tighten the clamps at your desired spacing. For bare roofs, use a fit kit with clips that hook into the door frame. Torque the mounting hardware to the manufacturer's specification (usually 6-8 Nm). Test by pushing firmly on the bars to confirm they don't shift."}
+{"input": "why is deforestation a concern?", "output": "lex: deforestation environmental impact\nlex: deforestation climate change biodiversity loss\nlex: tropical rainforest destruction causes\nvec: why is deforestation considered a serious environmental problem and what are its consequences?\nvec: how does deforestation contribute to climate change, biodiversity loss, and soil erosion?\nhyde: Deforestation removes trees that absorb CO2, releasing stored carbon and accelerating climate change. Tropical forests hold over 50% of Earth's species — clearing them drives mass extinction. Deforested land loses topsoil to erosion, reducing agricultural productivity. The Amazon alone lost 10,000 square kilometers of forest in a single year."}
+{"input": "how do philosophers explore the nature of reality", "output": "lex: philosophy nature of reality metaphysics\nlex: metaphysics ontology existence\nlex: philosophical realism idealism\nvec: how have philosophers historically explored and debated the nature of reality and existence?\nvec: what are the main metaphysical positions on whether reality is fundamentally material, mental, or something else?\nhyde: Metaphysics, the branch of philosophy concerned with the nature of reality, asks questions like: What exists? Is the physical world all there is? Plato argued that true reality consists of abstract Forms. Descartes proposed mind-body dualism. Materialists hold that only physical matter exists, while idealists like Berkeley argued that reality is fundamentally mental."}
+{"input": "how to build a writing routine", "output": "lex: writing routine daily habit\nlex: build writing practice discipline\nlex: writing schedule productivity\nvec: how do you establish a consistent daily writing routine and maintain discipline?\nvec: what strategies do professional writers use to build and sustain a writing habit?\nhyde: Set a specific time each day for writing — morning works best for many writers because willpower is highest. Start with a modest goal of 300-500 words and increase gradually. Write in the same place to create environmental cues. Track your word count daily. Don't edit while drafting — the first draft's only job is to exist."}
+{"input": "what are public sentiments on immigration", "output": "lex: public opinion immigration polls\nlex: immigration attitudes survey sentiment\nlex: immigration policy public views 2025 2026\nvec: what do recent polls and surveys reveal about public sentiment on immigration policy?\nvec: how do public attitudes toward immigration vary by country, political affiliation, and demographics?\nhyde: A 2025 Gallup poll found that 28% of Americans wanted immigration increased, 36% wanted it decreased, and 33% wanted it kept at current levels. Views split sharply along party lines: 55% of Democrats favored more immigration versus 11% of Republicans. In Europe, surveys showed rising concern about integration alongside recognition of labor market needs."}
+{"input": "how do people practice meditation in buddhism", "output": "lex: Buddhist meditation practice techniques\nlex: Vipassana Zen meditation Buddhism\nlex: mindfulness meditation Buddhist traditions\nvec: what are the main forms of meditation practiced in Buddhism and how are they performed?\nvec: how do Vipassana, Zen, and Tibetan Buddhist meditation techniques differ from each other?\nhyde: Buddhist meditation includes two main types: samatha (calm abiding) and vipassana (insight). In Vipassana, practitioners observe bodily sensations and mental events with equanimity. Zen meditation (zazen) involves sitting with awareness of breath, often facing a wall. Tibetan Buddhism adds visualization practices and mantra recitation. All traditions emphasize mindful awareness."}
+{"input": "how to edit in lightroom", "output": "lex: edit photos Adobe Lightroom\nlex: Lightroom editing tutorial sliders\nlex: Lightroom develop module adjustments\nvec: how do you edit and enhance photos using Adobe Lightroom's develop module?\nvec: what are the essential Lightroom editing steps for exposure, color, and tone adjustments?\nhyde: In Lightroom's Develop module, start with the Basic panel: adjust Exposure for overall brightness, then Highlights and Shadows to recover detail. Set White Balance using the eyedropper or Temperature/Tint sliders. Increase Clarity for midtone contrast and Vibrance for subtle color boost. Use the HSL panel to fine-tune individual colors."}
+{"input": "how does the philosophy of education explore learning", "output": "lex: philosophy of education learning theory\nlex: educational philosophy Dewey Montessori\nlex: epistemology education pedagogy\nvec: how do educational philosophers like Dewey and Montessori theorize about the nature of learning?\nvec: what are the major philosophical approaches to education and how do they shape teaching methods?\nhyde: John Dewey's pragmatism views learning as experiential — students learn by doing and reflecting. Montessori emphasizes self-directed activity and hands-on learning in prepared environments. Constructivism holds that learners build knowledge actively rather than passively receiving it. Each philosophy leads to different classroom structures and teaching practices."}
+{"input": "how to make a family budget?", "output": "lex: family budget plan household\nlex: family budget spreadsheet expenses\nlex: household budgeting categories\nvec: how do you create a family budget that accounts for all household income and expenses?\nvec: what categories and tools should you use when building a family budget?\nhyde: List all family income sources including salaries, freelance work, and benefits. Categorize expenses into fixed (mortgage, insurance, utilities), variable (groceries, gas, clothing), and discretionary (dining out, entertainment). Allocate funds using the envelope method or a budgeting app like Mint or YNAB. Review spending together monthly."}
+{"input": "what is the significance of the ten commandments", "output": "lex: Ten Commandments significance Bible\nlex: Ten Commandments Moses Judaism Christianity\nlex: Decalogue moral law religious\nvec: what is the religious and historical significance of the Ten Commandments in Judaism and Christianity?\nvec: how have the Ten Commandments influenced Western law, ethics, and moral codes?\nhyde: The Ten Commandments (Decalogue) were given by God to Moses on Mount Sinai, as recorded in Exodus 20 and Deuteronomy 5. They form the foundational moral code of Judaism and Christianity, covering duties to God (no other gods, no idols, keep the Sabbath) and duties to others (honor parents, do not murder, steal, or lie)."}
+{"input": "what is creative non-fiction?", "output": "lex: creative non-fiction genre writing\nlex: creative nonfiction memoir essay narrative\nlex: literary nonfiction storytelling\nvec: what is creative non-fiction and how does it differ from traditional journalism or academic writing?\nvec: what techniques do creative non-fiction writers use to tell true stories in a literary way?\nhyde: Creative non-fiction uses literary techniques — narrative arc, scene-setting, dialogue, and vivid description — to tell true stories. Subgenres include memoir, personal essay, literary journalism, and nature writing. Unlike standard reporting, the writer's voice and perspective are central. Examples include Truman Capote's In Cold Blood and Joan Didion's essays."}
+{"input": "air filter", "output": "lex: air filter replacement HVAC\nlex: car engine air filter\nlex: home air purifier HEPA filter\nvec: how often should you replace an air filter in your car engine or home HVAC system?\nvec: what types of air filters are available for home air purifiers and what do HEPA ratings mean?\nhyde: Replace your car's engine air filter every 15,000-30,000 miles depending on driving conditions. Home HVAC filters should be changed every 1-3 months. HEPA filters capture 99.97% of particles 0.3 microns or larger. MERV ratings from 1-16 indicate filtration efficiency — MERV 13+ is recommended for allergy sufferers."}
+{"input": "what is the periodic table", "output": "lex: periodic table elements chemistry\nlex: periodic table groups periods atomic number\nlex: Mendeleev periodic table organization\nvec: what is the periodic table and how are chemical elements organized within it?\nvec: how did Mendeleev create the periodic table and what patterns does it reveal about element properties?\nhyde: The periodic table organizes all known chemical elements by increasing atomic number into rows (periods) and columns (groups). Elements in the same group share similar chemical properties because they have the same number of valence electrons. Dmitri Mendeleev published the first widely recognized periodic table in 1869, predicting undiscovered elements."}
+{"input": "how to use green screen", "output": "lex: green screen chroma key setup\nlex: green screen video editing background\nlex: green screen lighting technique\nvec: how do you set up and use a green screen for video production and chroma key compositing?\nvec: what lighting and camera settings are needed for clean green screen footage?\nhyde: Set up an evenly lit green screen with no wrinkles or shadows. Place the subject at least 6 feet in front of the screen to avoid green spill. Use two softbox lights at 45-degree angles on the screen and separate lights for the subject. In post-production, apply chroma key in software like DaVinci Resolve or After Effects to replace the green background."}
+{"input": "what are the latest fashion trends 2023?", "output": "lex: fashion trends 2023 2024 2025\nlex: latest fashion trends clothing style\nlex: 2023 fashion runway trends\nvec: what were the top fashion trends in 2023 and how have they evolved into 2024-2025?\nvec: what clothing styles, colors, and silhouettes defined fashion trends in recent years?\nhyde: Key fashion trends in 2023 included quiet luxury with understated neutral tones and premium fabrics, oversized blazers and tailored wide-leg trousers, sheer fabrics, ballet flats, and the revival of denim-on-denim. Barbiecore pink carried over from 2022, while earth tones and burgundy gained momentum heading into 2024."}
+{"input": "how to conduct field research", "output": "lex: field research methods data collection\nlex: conduct field study observation interview\nlex: ethnographic fieldwork techniques\nvec: how do researchers plan and conduct field research including observation and interviews?\nvec: what are the methods and ethical considerations involved in conducting ethnographic field research?\nhyde: Field research involves collecting data in natural settings through observation, interviews, and surveys. Begin with a clear research question and ethical approval. Use participant observation to immerse yourself in the environment. Take detailed field notes immediately after each session. Triangulate data from multiple sources to strengthen validity."}
+{"input": "digital currencies", "output": "lex: digital currency cryptocurrency Bitcoin\nlex: digital currency CBDC blockchain\nlex: cryptocurrency exchange trading\nvec: what are digital currencies including cryptocurrencies and central bank digital currencies (CBDCs)?\nvec: how do digital currencies like Bitcoin and Ethereum work using blockchain technology?\nhyde: Digital currencies exist only in electronic form and include cryptocurrencies like Bitcoin and Ethereum, which use decentralized blockchain networks, and central bank digital currencies (CBDCs) issued by governments. Bitcoin uses proof-of-work consensus while Ethereum moved to proof-of-stake. Over 130 countries are exploring or piloting CBDCs as of 2025."}
+{"input": "tree grow", "output": "lex: tree growth rate species\nlex: grow trees planting care\nlex: tree growth stages seedling mature\nvec: how fast do different tree species grow and what conditions promote healthy tree growth?\nvec: what are the stages of tree growth from seedling to mature tree and how do you care for young trees?\nhyde: Tree growth rates vary widely by species. Fast-growing trees like hybrid poplar and willow can add 3-5 feet per year, while oaks grow 1-2 feet annually. For healthy growth, plant in appropriate soil with adequate drainage, water deeply during the first two years, mulch around the base (not touching the trunk), and prune to establish strong structure."}
+{"input": "sail set", "output": "lex: sail set trim sailing\nlex: setting sails rigging sailboat\nlex: sail trim wind angle\nvec: how do you properly set and trim sails on a sailboat for different wind conditions?\nvec: what is the correct technique for setting a mainsail and jib when sailing upwind or downwind?\nhyde: To set the mainsail, head into the wind and raise the halyard while feeding the luff into the mast track. Tension the outhaul and cunningham based on wind strength. When sailing upwind, trim the mainsheet until the telltales flow evenly. Ease the sheet when reaching or running. Adjust the jib sheet so the luff telltales break evenly."}
+{"input": "how to apply the scientific method", "output": "lex: scientific method steps process\nlex: apply scientific method experiment hypothesis\nlex: scientific method observation data analysis\nvec: what are the steps of the scientific method and how do you apply them to an experiment?\nvec: how do scientists use the scientific method to test hypotheses and draw conclusions?\nhyde: The scientific method follows these steps: (1) Observe a phenomenon, (2) Ask a question, (3) Form a testable hypothesis, (4) Design and conduct an experiment with controlled variables, (5) Collect and analyze data, (6) Draw conclusions — does the evidence support or refute the hypothesis? (7) Communicate results and invite replication."}
+{"input": "what is the role of the holy spirit in christianity?", "output": "lex: Holy Spirit Christianity role\nlex: Holy Spirit Trinity Christian theology\nlex: Holy Spirit gifts fruits Bible\nvec: what role does the Holy Spirit play in Christian theology and the life of believers?\nvec: how is the Holy Spirit understood within the doctrine of the Trinity in Christianity?\nhyde: In Christian theology, the Holy Spirit is the third person of the Trinity — coequal with the Father and the Son. The Spirit convicts of sin, regenerates believers at conversion, indwells Christians as a guide and comforter, and empowers them with spiritual gifts (1 Corinthians 12). At Pentecost, the Spirit descended on the apostles, enabling them to preach."}
+{"input": "code review", "output": "lex: code review pull request\nlex: code review checklist guidelines\nlex: peer code review feedback\nvec: what are the best practices for conducting an effective code review on a pull request?\nvec: what should reviewers look for during a code review including bugs, readability, and architecture?\nhyde: During a code review, check for correctness, readability, and maintainability. Look for edge cases, error handling, and potential security issues. Verify that naming conventions are clear and tests cover the new code. Provide constructive feedback with specific suggestions rather than vague criticism. Approve only when the code is production-ready."}
+{"input": "how to manage personal finances", "output": "lex: personal finance management\nlex: manage money budgeting saving investing\nlex: personal financial planning\nvec: what are the key steps for managing your personal finances including budgeting, saving, and investing?\nvec: how should you organize your personal finances to build wealth and avoid debt?\nhyde: Start with a budget tracking all income and expenses. Build an emergency fund covering 3-6 months of expenses. Pay off high-interest debt aggressively. Contribute enough to your 401(k) to get the employer match, then fund a Roth IRA. Automate savings and investments. Review your financial plan quarterly and adjust as income or goals change."}
+{"input": "how to understand legislative documents", "output": "lex: read legislative documents bills statutes\nlex: understand legislation legal language\nlex: interpreting bills acts laws\nvec: how do you read and interpret legislative documents such as bills, statutes, and regulations?\nvec: what techniques help non-lawyers understand the language and structure of legislative texts?\nhyde: Legislative documents follow a standard structure: the title, enacting clause, definitions section, substantive provisions, and effective date. Start with the definitions section — legal terms often have specific meanings different from everyday use. Read the \"findings\" or \"purpose\" section for context. Track cross-references to other statutes. Legislative summaries from CRS or CBO can provide plain-language explanations."}
+{"input": "how to participate in public policy discussions", "output": "lex: participate public policy discussion civic\nlex: public policy engagement town hall\nlex: citizen participation policy advocacy\nvec: how can citizens effectively participate in public policy discussions and influence government decisions?\nvec: what are the ways individuals can engage in public policy debates at the local, state, and federal level?\nhyde: Attend town hall meetings and public comment sessions held by local and state government bodies. Submit written comments during rulemaking periods — federal agencies post proposed rules on regulations.gov. Contact your elected representatives by phone or email. Join advocacy organizations that align with your policy priorities and participate in their campaigns."}
+{"input": "what is the role of philosophy in religion?", "output": "lex: philosophy of religion theology\nlex: philosophical arguments God existence\nlex: religion philosophy relationship faith reason\nvec: what role does philosophy play in examining and understanding religious beliefs and concepts?\nvec: how do philosophers analyze religious claims about God, the soul, and the meaning of existence?\nhyde: Philosophy of religion examines fundamental questions that religions address: Does God exist? What is the nature of the soul? How can evil exist if God is omnipotent? Philosophers evaluate arguments for God's existence (cosmological, teleological, ontological) and critique them. The field also explores the relationship between faith and reason, asking whether religious belief can be rationally justified."}
+{"input": "what is outdoor survival training?", "output": "lex: outdoor survival training wilderness\nlex: survival skills shelter fire water\nlex: wilderness survival course\nvec: what does outdoor survival training involve and what skills does it teach?\nvec: how do wilderness survival courses teach people to find shelter, water, fire, and food in the wild?\nhyde: Outdoor survival training teaches skills needed to stay alive in wilderness emergencies. Core topics include building emergency shelters from natural materials, finding and purifying water, starting fire without matches using a ferro rod or bow drill, signaling for rescue, and basic navigation without GPS. Courses range from weekend workshops to multi-week immersive programs."}
+{"input": "what is the history of the jazz age", "output": "lex: Jazz Age history 1920s\nlex: Jazz Age Harlem Renaissance Roaring Twenties\nlex: jazz music history Louis Armstrong\nvec: what was the Jazz Age and how did jazz music shape American culture in the 1920s?\nvec: how did the Jazz Age connect to the Harlem Renaissance and the social changes of the Roaring Twenties?\nhyde: The Jazz Age, spanning roughly 1920-1929, was a cultural movement defined by the rise of jazz music, loosened social mores, and economic prosperity. Jazz originated in New Orleans and spread to Chicago and New York. The Harlem Renaissance saw Black artists, musicians, and writers flourish. Louis Armstrong, Duke Ellington, and Bessie Smith became icons. The era ended with the stock market crash of 1929."}
+{"input": "how to analyze government budgets", "output": "lex: analyze government budget fiscal\nlex: government budget analysis revenue expenditure\nlex: federal state budget breakdown\nvec: how do you read and analyze a government budget to understand spending priorities and fiscal health?\nvec: what tools and frameworks are used to evaluate government budget allocations and deficits?\nhyde: To analyze a government budget, start with the summary tables showing total revenue, total expenditure, and the deficit or surplus. Compare allocations across categories: defense, healthcare, education, infrastructure. Track year-over-year changes to identify spending trends. Examine revenue sources (income tax, sales tax, borrowing) and assess whether projected growth assumptions are realistic."}
+{"input": "how to learn python programming?", "output": "lex: learn Python programming beginner\nlex: Python tutorial course exercises\nlex: Python programming fundamentals syntax\nvec: what is the best way for a beginner to learn Python programming from scratch?\nvec: what resources, courses, and projects should someone use to learn Python programming?\nhyde: Start with Python's official tutorial at docs.python.org. Learn the basics: variables, data types, loops, conditionals, and functions. Practice on sites like LeetCode or HackerRank. Build small projects — a calculator, a to-do list, or a web scraper using requests and BeautifulSoup. Automate the Boring Stuff with Python is a popular free book for beginners."}
+{"input": "what is the gospel of wealth", "output": "lex: Gospel of Wealth Andrew Carnegie\nlex: Gospel of Wealth philanthropy gilded age\nvec: what is the Gospel of Wealth written by Andrew Carnegie and what does it argue about the duty of the rich?\nvec: how did Andrew Carnegie's Gospel of Wealth influence philanthropy and attitudes toward wealth in America?\nhyde: The Gospel of Wealth is an 1889 essay by Andrew Carnegie arguing that the wealthy have a moral obligation to distribute their surplus wealth for the public good. Carnegie believed that rich individuals were better suited than government to direct resources toward education, libraries, and civic institutions. He practiced this philosophy by funding over 2,500 public libraries."}
+{"input": "how do various religions interpret the concept of god?", "output": "lex: concept of God religions monotheism polytheism\nlex: God Christianity Islam Hinduism Judaism\nlex: religious interpretations divine nature\nvec: how do different world religions like Christianity, Islam, Hinduism, and Buddhism understand the concept of God?\nvec: what are the key differences between monotheistic, polytheistic, and non-theistic religious views of God?\nhyde: Christianity, Islam, and Judaism are monotheistic — they worship one God, though Christianity distinguishes three persons in the Trinity. Hinduism includes both monotheistic and polytheistic traditions: Brahman is the ultimate reality, while deities like Vishnu and Shiva represent aspects of it. Buddhism is non-theistic, focusing on awakening rather than worship of a creator God."}
+{"input": "what is satire", "output": "lex: satire literary device definition\nlex: satire examples humor criticism\nlex: satirical writing Swift Orwell\nvec: what is satire as a literary form and how does it use humor to criticize people, institutions, or society?\nvec: what are famous examples of satire in literature, television, and political commentary?\nhyde: Satire uses irony, exaggeration, and ridicule to expose and criticize foolishness or corruption. Jonathan Swift's A Modest Proposal satirized British policy toward Ireland by suggesting the poor sell their children as food. George Orwell's Animal Farm satirized Soviet totalitarianism. Modern satire appears in shows like The Daily Show and publications like The Onion."}
+{"input": "json serial", "output": "lex: JSON serialization deserialization\nlex: JSON serialize object string\nlex: JSON stringify parse encoding\nvec: how do you serialize objects to JSON and deserialize JSON strings back to objects in programming?\nvec: what functions are used for JSON serialization in Python, JavaScript, and other languages?\nhyde: JSON serialization converts an object into a JSON string for storage or transmission. In JavaScript, JSON.stringify(obj) serializes and JSON.parse(str) deserializes. In Python, json.dumps(obj) converts to a string and json.loads(str) parses back. Custom serialization for dates or complex types requires encoder/decoder overrides."}
+{"input": "how to fix car air conditioning?", "output": "lex: fix car air conditioning AC repair\nlex: car AC not blowing cold recharge\nlex: automotive AC compressor refrigerant\nvec: how do you diagnose and fix a car air conditioning system that is not blowing cold air?\nvec: what are the common causes of car AC failure and how do you recharge the refrigerant?\nhyde: If your car AC blows warm air, check the refrigerant level first — low refrigerant is the most common cause. Use a recharge kit with R-134a (or R-1234yf for newer cars) and a pressure gauge. If the compressor clutch doesn't engage, check the fuse and relay. A leak requires UV dye detection and repair before recharging. Cabin filter clogs can also reduce airflow."}
+{"input": "what is moral absolutism", "output": "lex: moral absolutism ethics definition\nlex: moral absolutism versus relativism\nlex: absolute moral principles deontology\nvec: what is moral absolutism and how does it differ from moral relativism in ethical philosophy?\nvec: what are the arguments for and against the view that some moral rules are universally true?\nhyde: Moral absolutism holds that certain actions are intrinsically right or wrong regardless of context, culture, or consequences. For example, an absolutist would say lying is always wrong, even to protect someone. This view aligns with Kantian deontology and natural law theory. Critics argue it fails to account for moral dilemmas where absolute rules conflict."}
+{"input": "world capitals quiz", "output": "lex: world capitals quiz tutorial\nlex: world capitals quiz guide\nlex: world capitals quiz examples\nvec: guide for world capitals quiz\nvec: how to world capitals quiz\nhyde: This comprehensive guide covers everything you need to know about world capitals quiz. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "trivia facts about space", "output": "lex: trivia facts about space examples\nlex: trivia facts about space best practices\nlex: trivia facts about space guide\nvec: understanding trivia facts about space\nvec: guide for trivia facts about space\nhyde: This comprehensive guide covers everything you need to know about trivia facts about space. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "did you know history", "output": "lex: did you know history examples\nlex: did you know history guide\nlex: did you know history best practices\nvec: complete did you know history reference\nvec: learn about did you know history\nhyde: This comprehensive guide covers everything you need to know about did you know history. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "random science facts", "output": "lex: random science facts tutorial\nlex: random science facts guide\nlex: random science facts best practices\nvec: how to random science facts\nvec: guide for random science facts\nhyde: This comprehensive guide covers everything you need to know about random science facts. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "famous inventions timeline", "output": "lex: famous inventions timeline best practices\nlex: famous inventions timeline documentation\nlex: famous inventions timeline tutorial\nvec: how to famous inventions timeline\nvec: complete famous inventions timeline reference\nhyde: This comprehensive guide covers everything you need to know about famous inventions timeline. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "world records list", "output": "lex: world records list guide\nlex: world records list tutorial\nlex: world records list best practices\nvec: how to world records list\nvec: understanding world records list\nhyde: This comprehensive guide covers everything you need to know about world records list. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "fun geography facts", "output": "lex: fun geography facts documentation\nlex: fun geography facts guide\nlex: fun geography facts examples\nvec: guide for fun geography facts\nvec: understanding fun geography facts\nhyde: This comprehensive guide covers everything you need to know about fun geography facts. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "historical trivia questions", "output": "lex: historical trivia questions documentation\nlex: historical trivia questions guide\nlex: historical trivia questions best practices\nvec: how to historical trivia questions\nvec: guide for historical trivia questions\nhyde: This comprehensive guide covers everything you need to know about historical trivia questions. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "animal trivia facts", "output": "lex: animal trivia facts best practices\nlex: animal trivia facts tutorial\nlex: animal trivia facts guide\nvec: complete animal trivia facts reference\nvec: guide for animal trivia facts\nhyde: This comprehensive guide covers everything you need to know about animal trivia facts. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "sports trivia records", "output": "lex: sports trivia records examples\nlex: sports trivia records documentation\nlex: sports trivia records guide\nvec: learn about sports trivia records\nvec: how to sports trivia records\nhyde: This comprehensive guide covers everything you need to know about sports trivia records. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "largest countries by area", "output": "lex: largest countries by area guide\nlex: largest countries by area documentation\nlex: largest countries by area best practices\nvec: understanding largest countries by area\nvec: complete largest countries by area reference\nhyde: This comprehensive guide covers everything you need to know about largest countries by area. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "rivers that cross multiple countries", "output": "lex: rivers that cross multiple countries documentation\nlex: rivers that cross multiple countries tutorial\nlex: rivers that cross multiple countries guide\nvec: complete rivers that cross multiple countries reference\nvec: understanding rivers that cross multiple countries\nhyde: This comprehensive guide covers everything you need to know about rivers that cross multiple countries. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "highest mountain peaks", "output": "lex: highest mountain peaks documentation\nlex: highest mountain peaks examples\nlex: highest mountain peaks guide\nvec: understanding highest mountain peaks\nvec: guide for highest mountain peaks\nhyde: This comprehensive guide covers everything you need to know about highest mountain peaks. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "desert climate zones", "output": "lex: desert climate zones examples\nlex: desert climate zones documentation\nlex: desert climate zones tutorial\nvec: guide for desert climate zones\nvec: how to desert climate zones\nhyde: This comprehensive guide covers everything you need to know about desert climate zones. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "island nations list", "output": "lex: island nations list guide\nlex: island nations list best practices\nlex: island nations list documentation\nvec: understanding island nations list\nvec: how to island nations list\nhyde: This comprehensive guide covers everything you need to know about island nations list. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "capital cities europe", "output": "lex: capital cities europe best practices\nlex: capital cities europe documentation\nlex: capital cities europe tutorial\nvec: guide for capital cities europe\nvec: learn about capital cities europe\nhyde: This comprehensive guide covers everything you need to know about capital cities europe. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "population by continent", "output": "lex: population by continent guide\nlex: population by continent examples\nlex: population by continent best practices\nvec: learn about population by continent\nvec: understanding population by continent\nhyde: This comprehensive guide covers everything you need to know about population by continent. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "time zones map", "output": "lex: time zones map tutorial\nlex: time zones map guide\nlex: time zones map documentation\nvec: how to time zones map\nvec: complete time zones map reference\nhyde: This comprehensive guide covers everything you need to know about time zones map. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "latitude longitude coordinates", "output": "lex: latitude longitude coordinates best practices\nlex: latitude longitude coordinates documentation\nlex: latitude longitude coordinates tutorial\nvec: complete latitude longitude coordinates reference\nvec: how to latitude longitude coordinates\nhyde: This comprehensive guide covers everything you need to know about latitude longitude coordinates. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "borders between countries", "output": "lex: borders between countries tutorial\nlex: borders between countries documentation\nlex: borders between countries best practices\nvec: learn about borders between countries\nvec: complete borders between countries reference\nhyde: This comprehensive guide covers everything you need to know about borders between countries. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "ocean currents patterns", "output": "lex: ocean currents patterns tutorial\nlex: ocean currents patterns examples\nlex: ocean currents patterns documentation\nvec: understanding ocean currents patterns\nvec: how to ocean currents patterns\nhyde: This comprehensive guide covers everything you need to know about ocean currents patterns. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "tectonic plate boundaries", "output": "lex: tectonic plate boundaries examples\nlex: tectonic plate boundaries documentation\nlex: tectonic plate boundaries best practices\nvec: complete tectonic plate boundaries reference\nvec: learn about tectonic plate boundaries\nhyde: This comprehensive guide covers everything you need to know about tectonic plate boundaries. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "climate zones earth", "output": "lex: climate zones earth tutorial\nlex: climate zones earth guide\nlex: climate zones earth documentation\nvec: learn about climate zones earth\nvec: guide for climate zones earth\nhyde: This comprehensive guide covers everything you need to know about climate zones earth. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "stoicism daily practice", "output": "lex: stoicism daily practice examples\nlex: stoicism daily practice best practices\nlex: stoicism daily practice tutorial\nvec: guide for stoicism daily practice\nvec: learn about stoicism daily practice\nhyde: This comprehensive guide covers everything you need to know about stoicism daily practice. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "existentialism meaning life", "output": "lex: existentialism meaning life examples\nlex: existentialism meaning life guide\nlex: existentialism meaning life documentation\nvec: learn about existentialism meaning life\nvec: complete existentialism meaning life reference\nhyde: This comprehensive guide covers everything you need to know about existentialism meaning life. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "utilitarianism ethics explained", "output": "lex: utilitarianism ethics explained tutorial\nlex: utilitarianism ethics explained guide\nlex: utilitarianism ethics explained examples\nvec: guide for utilitarianism ethics explained\nvec: complete utilitarianism ethics explained reference\nhyde: This comprehensive guide covers everything you need to know about utilitarianism ethics explained. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "kant categorical imperative", "output": "lex: kant categorical imperative best practices\nlex: kant categorical imperative guide\nlex: kant categorical imperative tutorial\nvec: complete kant categorical imperative reference\nvec: how to kant categorical imperative\nhyde: This comprehensive guide covers everything you need to know about kant categorical imperative. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "free will determinism debate", "output": "lex: free will determinism debate documentation\nlex: free will determinism debate examples\nlex: free will determinism debate tutorial\nvec: complete free will determinism debate reference\nvec: learn about free will determinism debate\nhyde: This comprehensive guide covers everything you need to know about free will determinism debate. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "nietzsche will to power", "output": "lex: nietzsche will to power guide\nlex: nietzsche will to power best practices\nlex: nietzsche will to power examples\nvec: complete nietzsche will to power reference\nvec: learn about nietzsche will to power\nhyde: This comprehensive guide covers everything you need to know about nietzsche will to power. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "socrates method questioning", "output": "lex: socrates method questioning guide\nlex: socrates method questioning tutorial\nlex: socrates method questioning examples\nvec: understanding socrates method questioning\nvec: complete socrates method questioning reference\nhyde: This comprehensive guide covers everything you need to know about socrates method questioning. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "plato theory forms", "output": "lex: plato theory forms tutorial\nlex: plato theory forms best practices\nlex: plato theory forms guide\nvec: how to plato theory forms\nvec: guide for plato theory forms\nhyde: This comprehensive guide covers everything you need to know about plato theory forms. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "aristotle virtue ethics", "output": "lex: aristotle virtue ethics documentation\nlex: aristotle virtue ethics best practices\nlex: aristotle virtue ethics tutorial\nvec: complete aristotle virtue ethics reference\nvec: how to aristotle virtue ethics\nhyde: This comprehensive guide covers everything you need to know about aristotle virtue ethics. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "descartes cogito ergo sum", "output": "lex: descartes cogito ergo sum guide\nlex: descartes cogito ergo sum examples\nlex: descartes cogito ergo sum best practices\nvec: complete descartes cogito ergo sum reference\nvec: learn about descartes cogito ergo sum\nhyde: This comprehensive guide covers everything you need to know about descartes cogito ergo sum. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "logic propositional calculus", "output": "lex: logic propositional calculus documentation\nlex: logic propositional calculus tutorial\nlex: logic propositional calculus guide\nvec: understanding logic propositional calculus\nvec: complete logic propositional calculus reference\nhyde: This comprehensive guide covers everything you need to know about logic propositional calculus. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "epistemology knowledge theory", "output": "lex: epistemology knowledge theory examples\nlex: epistemology knowledge theory tutorial\nlex: epistemology knowledge theory documentation\nvec: learn about epistemology knowledge theory\nvec: complete epistemology knowledge theory reference\nhyde: This comprehensive guide covers everything you need to know about epistemology knowledge theory. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "metaphysics existence reality", "output": "lex: metaphysics existence reality tutorial\nlex: metaphysics existence reality best practices\nlex: metaphysics existence reality guide\nvec: understanding metaphysics existence reality\nvec: how to metaphysics existence reality\nhyde: This comprehensive guide covers everything you need to know about metaphysics existence reality. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "ancient civilizations timeline", "output": "lex: ancient civilizations timeline documentation\nlex: ancient civilizations timeline examples\nlex: ancient civilizations timeline best practices\nvec: complete ancient civilizations timeline reference\nvec: understanding ancient civilizations timeline\nhyde: This comprehensive guide covers everything you need to know about ancient civilizations timeline. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "roman empire fall reasons", "output": "lex: roman empire fall reasons guide\nlex: roman empire fall reasons best practices\nlex: roman empire fall reasons documentation\nvec: guide for roman empire fall reasons\nvec: how to roman empire fall reasons\nhyde: This comprehensive guide covers everything you need to know about roman empire fall reasons. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "medieval period events", "output": "lex: medieval period events documentation\nlex: medieval period events best practices\nlex: medieval period events tutorial\nvec: learn about medieval period events\nvec: how to medieval period events\nhyde: This comprehensive guide covers everything you need to know about medieval period events. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "renaissance art movement", "output": "lex: renaissance art movement examples\nlex: renaissance art movement guide\nlex: renaissance art movement documentation\nvec: understanding renaissance art movement\nvec: how to renaissance art movement\nhyde: This comprehensive guide covers everything you need to know about renaissance art movement. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "industrial revolution inventions", "output": "lex: industrial revolution inventions tutorial\nlex: industrial revolution inventions best practices\nlex: industrial revolution inventions examples\nvec: how to industrial revolution inventions\nvec: guide for industrial revolution inventions\nhyde: This comprehensive guide covers everything you need to know about industrial revolution inventions. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "world war i causes", "output": "lex: world war i causes tutorial\nlex: world war i causes documentation\nlex: world war i causes best practices\nvec: learn about world war i causes\nvec: how to world war i causes\nhyde: This comprehensive guide covers everything you need to know about world war i causes. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "cold war key events", "output": "lex: cold war key events best practices\nlex: cold war key events tutorial\nlex: cold war key events guide\nvec: understanding cold war key events\nvec: learn about cold war key events\nhyde: This comprehensive guide covers everything you need to know about cold war key events. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "french revolution timeline", "output": "lex: french revolution timeline tutorial\nlex: french revolution timeline documentation\nlex: french revolution timeline guide\nvec: understanding french revolution timeline\nvec: guide for french revolution timeline\nhyde: This comprehensive guide covers everything you need to know about french revolution timeline. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "american civil war battles", "output": "lex: american civil war battles documentation\nlex: american civil war battles tutorial\nlex: american civil war battles guide\nvec: learn about american civil war battles\nvec: complete american civil war battles reference\nhyde: This comprehensive guide covers everything you need to know about american civil war battles. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "egyptian pharaohs dynasty", "output": "lex: egyptian pharaohs dynasty guide\nlex: egyptian pharaohs dynasty examples\nlex: egyptian pharaohs dynasty documentation\nvec: how to egyptian pharaohs dynasty\nvec: understanding egyptian pharaohs dynasty\nhyde: This comprehensive guide covers everything you need to know about egyptian pharaohs dynasty. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "bronze age collapse", "output": "lex: bronze age collapse guide\nlex: bronze age collapse tutorial\nlex: bronze age collapse documentation\nvec: guide for bronze age collapse\nvec: understanding bronze age collapse\nhyde: This comprehensive guide covers everything you need to know about bronze age collapse. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "byzantine empire history", "output": "lex: byzantine empire history tutorial\nlex: byzantine empire history best practices\nlex: byzantine empire history documentation\nvec: learn about byzantine empire history\nvec: how to byzantine empire history\nhyde: This comprehensive guide covers everything you need to know about byzantine empire history. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "vietnam war timeline", "output": "lex: vietnam war timeline examples\nlex: vietnam war timeline best practices\nlex: vietnam war timeline documentation\nvec: understanding vietnam war timeline\nvec: complete vietnam war timeline reference\nhyde: This comprehensive guide covers everything you need to know about vietnam war timeline. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "quantum mechanics basics", "output": "lex: quantum mechanics basics guide\nlex: quantum mechanics basics documentation\nlex: quantum mechanics basics examples\nvec: complete quantum mechanics basics reference\nvec: learn about quantum mechanics basics\nhyde: This comprehensive guide covers everything you need to know about quantum mechanics basics. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "theory of relativity explained", "output": "lex: theory of relativity explained documentation\nlex: theory of relativity explained examples\nlex: theory of relativity explained tutorial\nvec: learn about theory of relativity explained\nvec: guide for theory of relativity explained\nhyde: This comprehensive guide covers everything you need to know about theory of relativity explained. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "dna structure discovery", "output": "lex: dna structure discovery best practices\nlex: dna structure discovery tutorial\nlex: dna structure discovery guide\nvec: understanding dna structure discovery\nvec: learn about dna structure discovery\nhyde: This comprehensive guide covers everything you need to know about dna structure discovery. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "photosynthesis process steps", "output": "lex: photosynthesis process steps documentation\nlex: photosynthesis process steps guide\nlex: photosynthesis process steps examples\nvec: guide for photosynthesis process steps\nvec: complete photosynthesis process steps reference\nhyde: This comprehensive guide covers everything you need to know about photosynthesis process steps. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "black holes physics", "output": "lex: black holes physics tutorial\nlex: black holes physics examples\nlex: black holes physics best practices\nvec: understanding black holes physics\nvec: complete black holes physics reference\nhyde: This comprehensive guide covers everything you need to know about black holes physics. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "plate tectonics theory", "output": "lex: plate tectonics theory examples\nlex: plate tectonics theory guide\nlex: plate tectonics theory best practices\nvec: how to plate tectonics theory\nvec: guide for plate tectonics theory\nhyde: This comprehensive guide covers everything you need to know about plate tectonics theory. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "evolution natural selection", "output": "lex: evolution natural selection examples\nlex: evolution natural selection best practices\nlex: evolution natural selection documentation\nvec: learn about evolution natural selection\nvec: guide for evolution natural selection\nhyde: This comprehensive guide covers everything you need to know about evolution natural selection. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "periodic table elements", "output": "lex: periodic table elements tutorial\nlex: periodic table elements examples\nlex: periodic table elements best practices\nvec: understanding periodic table elements\nvec: complete periodic table elements reference\nhyde: This comprehensive guide covers everything you need to know about periodic table elements. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "cell biology fundamentals", "output": "lex: cell biology fundamentals tutorial\nlex: cell biology fundamentals examples\nlex: cell biology fundamentals best practices\nvec: complete cell biology fundamentals reference\nvec: how to cell biology fundamentals\nhyde: This comprehensive guide covers everything you need to know about cell biology fundamentals. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "climate change evidence", "output": "lex: climate change evidence best practices\nlex: climate change evidence examples\nlex: climate change evidence documentation\nvec: learn about climate change evidence\nvec: complete climate change evidence reference\nhyde: This comprehensive guide covers everything you need to know about climate change evidence. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "impressionist painters list", "output": "lex: impressionist painters list tutorial\nlex: impressionist painters list best practices\nlex: impressionist painters list guide\nvec: understanding impressionist painters list\nvec: complete impressionist painters list reference\nhyde: This comprehensive guide covers everything you need to know about impressionist painters list. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "shakespeare plays summary", "output": "lex: shakespeare plays summary guide\nlex: shakespeare plays summary examples\nlex: shakespeare plays summary tutorial\nvec: how to shakespeare plays summary\nvec: learn about shakespeare plays summary\nhyde: This comprehensive guide covers everything you need to know about shakespeare plays summary. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "classical music composers", "output": "lex: classical music composers examples\nlex: classical music composers documentation\nlex: classical music composers best practices\nvec: how to classical music composers\nvec: understanding classical music composers\nhyde: This comprehensive guide covers everything you need to know about classical music composers. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "modern art movements", "output": "lex: modern art movements tutorial\nlex: modern art movements examples\nlex: modern art movements guide\nvec: how to modern art movements\nvec: guide for modern art movements\nhyde: This comprehensive guide covers everything you need to know about modern art movements. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "film noir characteristics", "output": "lex: film noir characteristics examples\nlex: film noir characteristics tutorial\nlex: film noir characteristics documentation\nvec: guide for film noir characteristics\nvec: how to film noir characteristics\nhyde: This comprehensive guide covers everything you need to know about film noir characteristics. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "jazz history origins", "output": "lex: jazz history origins best practices\nlex: jazz history origins documentation\nlex: jazz history origins tutorial\nvec: learn about jazz history origins\nvec: understanding jazz history origins\nhyde: This comprehensive guide covers everything you need to know about jazz history origins. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "renaissance sculpture techniques", "output": "lex: renaissance sculpture techniques documentation\nlex: renaissance sculpture techniques examples\nlex: renaissance sculpture techniques best practices\nvec: how to renaissance sculpture techniques\nvec: guide for renaissance sculpture techniques\nhyde: This comprehensive guide covers everything you need to know about renaissance sculpture techniques. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "photography composition rules", "output": "lex: photography composition rules best practices\nlex: photography composition rules documentation\nlex: photography composition rules guide\nvec: understanding photography composition rules\nvec: complete photography composition rules reference\nhyde: This comprehensive guide covers everything you need to know about photography composition rules. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "poetry forms haiku", "output": "lex: poetry forms haiku documentation\nlex: poetry forms haiku examples\nlex: poetry forms haiku guide\nvec: learn about poetry forms haiku\nvec: how to poetry forms haiku\nhyde: This comprehensive guide covers everything you need to know about poetry forms haiku. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "baroque art characteristics", "output": "lex: baroque art characteristics tutorial\nlex: baroque art characteristics guide\nlex: baroque art characteristics best practices\nvec: complete baroque art characteristics reference\nvec: guide for baroque art characteristics\nhyde: This comprehensive guide covers everything you need to know about baroque art characteristics. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "street art graffiti history", "output": "lex: street art graffiti history guide\nlex: street art graffiti history examples\nlex: street art graffiti history documentation\nvec: understanding street art graffiti history\nvec: guide for street art graffiti history\nhyde: This comprehensive guide covers everything you need to know about street art graffiti history. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "symptoms of vitamin deficiency", "output": "lex: symptoms of vitamin deficiency examples\nlex: symptoms of vitamin deficiency best practices\nlex: symptoms of vitamin deficiency guide\nvec: learn about symptoms of vitamin deficiency\nvec: how to symptoms of vitamin deficiency\nhyde: This comprehensive guide covers everything you need to know about symptoms of vitamin deficiency. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "how vaccines work immune system", "output": "lex: how vaccines work immune system tutorial\nlex: how vaccines work immune system examples\nlex: how vaccines work immune system documentation\nvec: guide for how vaccines work immune system\nvec: how to how vaccines work immune system\nhyde: This comprehensive guide covers everything you need to know about how vaccines work immune system. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "blood pressure normal range", "output": "lex: blood pressure normal range documentation\nlex: blood pressure normal range examples\nlex: blood pressure normal range best practices\nvec: complete blood pressure normal range reference\nvec: learn about blood pressure normal range\nhyde: This comprehensive guide covers everything you need to know about blood pressure normal range. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "sleep hygiene tips", "output": "lex: sleep hygiene tips examples\nlex: sleep hygiene tips best practices\nlex: sleep hygiene tips guide\nvec: learn about sleep hygiene tips\nvec: guide for sleep hygiene tips\nhyde: This comprehensive guide covers everything you need to know about sleep hygiene tips. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "intermittent fasting benefits", "output": "lex: intermittent fasting benefits documentation\nlex: intermittent fasting benefits guide\nlex: intermittent fasting benefits best practices\nvec: complete intermittent fasting benefits reference\nvec: learn about intermittent fasting benefits\nhyde: This comprehensive guide covers everything you need to know about intermittent fasting benefits. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "anxiety coping strategies", "output": "lex: anxiety coping strategies guide\nlex: anxiety coping strategies best practices\nlex: anxiety coping strategies documentation\nvec: understanding anxiety coping strategies\nvec: complete anxiety coping strategies reference\nhyde: This comprehensive guide covers everything you need to know about anxiety coping strategies. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "stretching exercises back pain", "output": "lex: stretching exercises back pain guide\nlex: stretching exercises back pain best practices\nlex: stretching exercises back pain tutorial\nvec: how to stretching exercises back pain\nvec: understanding stretching exercises back pain\nhyde: This comprehensive guide covers everything you need to know about stretching exercises back pain. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "heart disease prevention", "output": "lex: heart disease prevention guide\nlex: heart disease prevention examples\nlex: heart disease prevention best practices\nvec: guide for heart disease prevention\nvec: complete heart disease prevention reference\nhyde: This comprehensive guide covers everything you need to know about heart disease prevention. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "diabetes type 2 management", "output": "lex: diabetes type 2 management documentation\nlex: diabetes type 2 management best practices\nlex: diabetes type 2 management tutorial\nvec: how to diabetes type 2 management\nvec: guide for diabetes type 2 management\nhyde: This comprehensive guide covers everything you need to know about diabetes type 2 management. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "meditation mental health", "output": "lex: meditation mental health documentation\nlex: meditation mental health tutorial\nlex: meditation mental health examples\nvec: understanding meditation mental health\nvec: learn about meditation mental health\nhyde: This comprehensive guide covers everything you need to know about meditation mental health. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "nutrition macros explained", "output": "lex: nutrition macros explained documentation\nlex: nutrition macros explained best practices\nlex: nutrition macros explained tutorial\nvec: understanding nutrition macros explained\nvec: guide for nutrition macros explained\nhyde: This comprehensive guide covers everything you need to know about nutrition macros explained. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "first aid basics", "output": "lex: first aid basics best practices\nlex: first aid basics tutorial\nlex: first aid basics examples\nvec: understanding first aid basics\nvec: learn about first aid basics\nhyde: This comprehensive guide covers everything you need to know about first aid basics. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "compound interest calculator", "output": "lex: compound interest calculator examples\nlex: compound interest calculator guide\nlex: compound interest calculator best practices\nvec: understanding compound interest calculator\nvec: how to compound interest calculator\nhyde: This comprehensive guide covers everything you need to know about compound interest calculator. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "stock market basics beginners", "output": "lex: stock market basics beginners guide\nlex: stock market basics beginners documentation\nlex: stock market basics beginners examples\nvec: guide for stock market basics beginners\nvec: learn about stock market basics beginners\nhyde: This comprehensive guide covers everything you need to know about stock market basics beginners. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "startup funding stages", "output": "lex: startup funding stages tutorial\nlex: startup funding stages best practices\nlex: startup funding stages documentation\nvec: complete startup funding stages reference\nvec: guide for startup funding stages\nhyde: This comprehensive guide covers everything you need to know about startup funding stages. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "tax deductions small business", "output": "lex: tax deductions small business best practices\nlex: tax deductions small business documentation\nlex: tax deductions small business examples\nvec: learn about tax deductions small business\nvec: complete tax deductions small business reference\nhyde: This comprehensive guide covers everything you need to know about tax deductions small business. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "budgeting methods 50 30 20", "output": "lex: budgeting methods 50 30 20 guide\nlex: budgeting methods 50 30 20 best practices\nlex: budgeting methods 50 30 20 documentation\nvec: complete budgeting methods 50 30 20 reference\nvec: how to budgeting methods 50 30 20\nhyde: This comprehensive guide covers everything you need to know about budgeting methods 50 30 20. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "cryptocurrency explained simply", "output": "lex: cryptocurrency explained simply documentation\nlex: cryptocurrency explained simply examples\nlex: cryptocurrency explained simply guide\nvec: how to cryptocurrency explained simply\nvec: learn about cryptocurrency explained simply\nhyde: This comprehensive guide covers everything you need to know about cryptocurrency explained simply. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "inflation effects on savings", "output": "lex: inflation effects on savings documentation\nlex: inflation effects on savings tutorial\nlex: inflation effects on savings guide\nvec: guide for inflation effects on savings\nvec: complete inflation effects on savings reference\nhyde: This comprehensive guide covers everything you need to know about inflation effects on savings. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "retirement planning strategies", "output": "lex: retirement planning strategies guide\nlex: retirement planning strategies documentation\nlex: retirement planning strategies examples\nvec: understanding retirement planning strategies\nvec: how to retirement planning strategies\nhyde: This comprehensive guide covers everything you need to know about retirement planning strategies. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "passive income ideas", "output": "lex: passive income ideas documentation\nlex: passive income ideas guide\nlex: passive income ideas tutorial\nvec: how to passive income ideas\nvec: guide for passive income ideas\nhyde: This comprehensive guide covers everything you need to know about passive income ideas. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "venture capital vs angel investors", "output": "lex: venture capital vs angel investors tutorial\nlex: venture capital vs angel investors best practices\nlex: venture capital vs angel investors guide\nvec: learn about venture capital vs angel investors\nvec: guide for venture capital vs angel investors\nhyde: This comprehensive guide covers everything you need to know about venture capital vs angel investors. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "balance sheet basics", "output": "lex: balance sheet basics guide\nlex: balance sheet basics tutorial\nlex: balance sheet basics examples\nvec: complete balance sheet basics reference\nvec: how to balance sheet basics\nhyde: This comprehensive guide covers everything you need to know about balance sheet basics. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "supply chain management", "output": "lex: supply chain management tutorial\nlex: supply chain management guide\nlex: supply chain management best practices\nvec: learn about supply chain management\nvec: guide for supply chain management\nhyde: This comprehensive guide covers everything you need to know about supply chain management. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "marathon training schedule", "output": "lex: marathon training schedule guide\nlex: marathon training schedule tutorial\nlex: marathon training schedule best practices\nvec: learn about marathon training schedule\nvec: guide for marathon training schedule\nhyde: This comprehensive guide covers everything you need to know about marathon training schedule. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "weightlifting proper form", "output": "lex: weightlifting proper form guide\nlex: weightlifting proper form documentation\nlex: weightlifting proper form examples\nvec: guide for weightlifting proper form\nvec: how to weightlifting proper form\nhyde: This comprehensive guide covers everything you need to know about weightlifting proper form. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "swimming stroke techniques", "output": "lex: swimming stroke techniques tutorial\nlex: swimming stroke techniques best practices\nlex: swimming stroke techniques guide\nvec: how to swimming stroke techniques\nvec: complete swimming stroke techniques reference\nhyde: This comprehensive guide covers everything you need to know about swimming stroke techniques. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "tennis serve mechanics", "output": "lex: tennis serve mechanics documentation\nlex: tennis serve mechanics tutorial\nlex: tennis serve mechanics examples\nvec: understanding tennis serve mechanics\nvec: how to tennis serve mechanics\nhyde: This comprehensive guide covers everything you need to know about tennis serve mechanics. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "basketball dribbling drills", "output": "lex: basketball dribbling drills documentation\nlex: basketball dribbling drills tutorial\nlex: basketball dribbling drills best practices\nvec: understanding basketball dribbling drills\nvec: complete basketball dribbling drills reference\nhyde: This comprehensive guide covers everything you need to know about basketball dribbling drills. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "soccer formations tactics", "output": "lex: soccer formations tactics documentation\nlex: soccer formations tactics tutorial\nlex: soccer formations tactics best practices\nvec: complete soccer formations tactics reference\nvec: understanding soccer formations tactics\nhyde: This comprehensive guide covers everything you need to know about soccer formations tactics. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "golf swing fundamentals", "output": "lex: golf swing fundamentals examples\nlex: golf swing fundamentals guide\nlex: golf swing fundamentals tutorial\nvec: how to golf swing fundamentals\nvec: learn about golf swing fundamentals\nhyde: This comprehensive guide covers everything you need to know about golf swing fundamentals. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "yoga poses beginners", "output": "lex: yoga poses beginners guide\nlex: yoga poses beginners examples\nlex: yoga poses beginners documentation\nvec: learn about yoga poses beginners\nvec: guide for yoga poses beginners\nhyde: This comprehensive guide covers everything you need to know about yoga poses beginners. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "running injury prevention", "output": "lex: running injury prevention best practices\nlex: running injury prevention tutorial\nlex: running injury prevention examples\nvec: understanding running injury prevention\nvec: guide for running injury prevention\nhyde: This comprehensive guide covers everything you need to know about running injury prevention. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "cycling gear ratios", "output": "lex: cycling gear ratios guide\nlex: cycling gear ratios tutorial\nlex: cycling gear ratios best practices\nvec: complete cycling gear ratios reference\nvec: guide for cycling gear ratios\nhyde: This comprehensive guide covers everything you need to know about cycling gear ratios. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "rock climbing grades", "output": "lex: rock climbing grades documentation\nlex: rock climbing grades tutorial\nlex: rock climbing grades examples\nvec: complete rock climbing grades reference\nvec: how to rock climbing grades\nhyde: This comprehensive guide covers everything you need to know about rock climbing grades. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "surfing wave types", "output": "lex: surfing wave types tutorial\nlex: surfing wave types examples\nlex: surfing wave types documentation\nvec: guide for surfing wave types\nvec: complete surfing wave types reference\nhyde: This comprehensive guide covers everything you need to know about surfing wave types. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "best time visit japan", "output": "lex: best time visit japan examples\nlex: best time visit japan documentation\nlex: best time visit japan best practices\nvec: understanding best time visit japan\nvec: guide for best time visit japan\nhyde: This comprehensive guide covers everything you need to know about best time visit japan. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "travel packing checklist", "output": "lex: travel packing checklist documentation\nlex: travel packing checklist tutorial\nlex: travel packing checklist guide\nvec: complete travel packing checklist reference\nvec: guide for travel packing checklist\nhyde: This comprehensive guide covers everything you need to know about travel packing checklist. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "budget backpacking europe", "output": "lex: budget backpacking europe documentation\nlex: budget backpacking europe guide\nlex: budget backpacking europe examples\nvec: learn about budget backpacking europe\nvec: how to budget backpacking europe\nhyde: This comprehensive guide covers everything you need to know about budget backpacking europe. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "visa requirements usa", "output": "lex: visa requirements usa best practices\nlex: visa requirements usa tutorial\nlex: visa requirements usa examples\nvec: guide for visa requirements usa\nvec: learn about visa requirements usa\nhyde: This comprehensive guide covers everything you need to know about visa requirements usa. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "jet lag remedies", "output": "lex: jet lag remedies guide\nlex: jet lag remedies examples\nlex: jet lag remedies best practices\nvec: understanding jet lag remedies\nvec: guide for jet lag remedies\nhyde: This comprehensive guide covers everything you need to know about jet lag remedies. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "road trip planning tips", "output": "lex: road trip planning tips tutorial\nlex: road trip planning tips examples\nlex: road trip planning tips guide\nvec: learn about road trip planning tips\nvec: complete road trip planning tips reference\nhyde: This comprehensive guide covers everything you need to know about road trip planning tips. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "solo travel safety", "output": "lex: solo travel safety tutorial\nlex: solo travel safety best practices\nlex: solo travel safety documentation\nvec: guide for solo travel safety\nvec: learn about solo travel safety\nhyde: This comprehensive guide covers everything you need to know about solo travel safety. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "airport security rules", "output": "lex: airport security rules examples\nlex: airport security rules guide\nlex: airport security rules tutorial\nvec: understanding airport security rules\nvec: learn about airport security rules\nhyde: This comprehensive guide covers everything you need to know about airport security rules. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "travel insurance coverage", "output": "lex: travel insurance coverage guide\nlex: travel insurance coverage examples\nlex: travel insurance coverage tutorial\nvec: understanding travel insurance coverage\nvec: how to travel insurance coverage\nhyde: This comprehensive guide covers everything you need to know about travel insurance coverage. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "language apps learning", "output": "lex: language apps learning tutorial\nlex: language apps learning examples\nlex: language apps learning guide\nvec: guide for language apps learning\nvec: understanding language apps learning\nhyde: This comprehensive guide covers everything you need to know about language apps learning. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "hostel vs hotel comparison", "output": "lex: hostel vs hotel comparison examples\nlex: hostel vs hotel comparison documentation\nlex: hostel vs hotel comparison best practices\nvec: understanding hostel vs hotel comparison\nvec: learn about hostel vs hotel comparison\nhyde: This comprehensive guide covers everything you need to know about hostel vs hotel comparison. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "travel photography tips", "output": "lex: travel photography tips examples\nlex: travel photography tips tutorial\nlex: travel photography tips documentation\nvec: how to travel photography tips\nvec: complete travel photography tips reference\nhyde: This comprehensive guide covers everything you need to know about travel photography tips. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "bread baking techniques", "output": "lex: bread baking techniques best practices\nlex: bread baking techniques guide\nlex: bread baking techniques tutorial\nvec: complete bread baking techniques reference\nvec: guide for bread baking techniques\nhyde: This comprehensive guide covers everything you need to know about bread baking techniques. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "knife skills basics", "output": "lex: knife skills basics guide\nlex: knife skills basics examples\nlex: knife skills basics best practices\nvec: how to knife skills basics\nvec: complete knife skills basics reference\nhyde: This comprehensive guide covers everything you need to know about knife skills basics. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "fermentation at home", "output": "lex: fermentation at home tutorial\nlex: fermentation at home documentation\nlex: fermentation at home examples\nvec: complete fermentation at home reference\nvec: guide for fermentation at home\nhyde: This comprehensive guide covers everything you need to know about fermentation at home. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "meal prep weekly", "output": "lex: meal prep weekly guide\nlex: meal prep weekly tutorial\nlex: meal prep weekly documentation\nvec: guide for meal prep weekly\nvec: understanding meal prep weekly\nhyde: This comprehensive guide covers everything you need to know about meal prep weekly. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "spice combinations guide", "output": "lex: spice combinations guide documentation\nlex: spice combinations guide tutorial\nlex: spice combinations guide examples\nvec: guide for spice combinations guide\nvec: complete spice combinations guide reference\nhyde: This comprehensive guide covers everything you need to know about spice combinations guide. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "pasta making fresh", "output": "lex: pasta making fresh best practices\nlex: pasta making fresh tutorial\nlex: pasta making fresh guide\nvec: guide for pasta making fresh\nvec: complete pasta making fresh reference\nhyde: This comprehensive guide covers everything you need to know about pasta making fresh. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "coffee brewing methods", "output": "lex: coffee brewing methods examples\nlex: coffee brewing methods guide\nlex: coffee brewing methods documentation\nvec: complete coffee brewing methods reference\nvec: learn about coffee brewing methods\nhyde: This comprehensive guide covers everything you need to know about coffee brewing methods. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "wine pairing basics", "output": "lex: wine pairing basics tutorial\nlex: wine pairing basics examples\nlex: wine pairing basics best practices\nvec: guide for wine pairing basics\nvec: learn about wine pairing basics\nhyde: This comprehensive guide covers everything you need to know about wine pairing basics. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "vegetarian protein sources", "output": "lex: vegetarian protein sources guide\nlex: vegetarian protein sources tutorial\nlex: vegetarian protein sources examples\nvec: how to vegetarian protein sources\nvec: complete vegetarian protein sources reference\nhyde: This comprehensive guide covers everything you need to know about vegetarian protein sources. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "food storage guidelines", "output": "lex: food storage guidelines documentation\nlex: food storage guidelines best practices\nlex: food storage guidelines examples\nvec: guide for food storage guidelines\nvec: how to food storage guidelines\nhyde: This comprehensive guide covers everything you need to know about food storage guidelines. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "sourdough starter maintenance", "output": "lex: sourdough starter maintenance examples\nlex: sourdough starter maintenance tutorial\nlex: sourdough starter maintenance guide\nvec: how to sourdough starter maintenance\nvec: learn about sourdough starter maintenance\nhyde: This comprehensive guide covers everything you need to know about sourdough starter maintenance. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "grilling temperature chart", "output": "lex: grilling temperature chart guide\nlex: grilling temperature chart documentation\nlex: grilling temperature chart examples\nvec: guide for grilling temperature chart\nvec: understanding grilling temperature chart\nhyde: This comprehensive guide covers everything you need to know about grilling temperature chart. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "cognitive biases list", "output": "lex: cognitive biases list guide\nlex: cognitive biases list tutorial\nlex: cognitive biases list examples\nvec: complete cognitive biases list reference\nvec: how to cognitive biases list\nhyde: This comprehensive guide covers everything you need to know about cognitive biases list. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "attachment theory styles", "output": "lex: attachment theory styles best practices\nlex: attachment theory styles examples\nlex: attachment theory styles documentation\nvec: learn about attachment theory styles\nvec: understanding attachment theory styles\nhyde: This comprehensive guide covers everything you need to know about attachment theory styles. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "maslow hierarchy needs", "output": "lex: maslow hierarchy needs best practices\nlex: maslow hierarchy needs tutorial\nlex: maslow hierarchy needs examples\nvec: understanding maslow hierarchy needs\nvec: learn about maslow hierarchy needs\nhyde: This comprehensive guide covers everything you need to know about maslow hierarchy needs. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "growth mindset vs fixed", "output": "lex: growth mindset vs fixed tutorial\nlex: growth mindset vs fixed guide\nlex: growth mindset vs fixed documentation\nvec: complete growth mindset vs fixed reference\nvec: learn about growth mindset vs fixed\nhyde: This comprehensive guide covers everything you need to know about growth mindset vs fixed. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "emotional intelligence components", "output": "lex: emotional intelligence components guide\nlex: emotional intelligence components best practices\nlex: emotional intelligence components examples\nvec: how to emotional intelligence components\nvec: complete emotional intelligence components reference\nhyde: This comprehensive guide covers everything you need to know about emotional intelligence components. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "memory techniques mnemonics", "output": "lex: memory techniques mnemonics guide\nlex: memory techniques mnemonics documentation\nlex: memory techniques mnemonics best practices\nvec: how to memory techniques mnemonics\nvec: learn about memory techniques mnemonics\nhyde: This comprehensive guide covers everything you need to know about memory techniques mnemonics. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "habit formation science", "output": "lex: habit formation science examples\nlex: habit formation science tutorial\nlex: habit formation science documentation\nvec: learn about habit formation science\nvec: guide for habit formation science\nhyde: This comprehensive guide covers everything you need to know about habit formation science. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "stress response fight flight", "output": "lex: stress response fight flight guide\nlex: stress response fight flight examples\nlex: stress response fight flight documentation\nvec: how to stress response fight flight\nvec: understanding stress response fight flight\nhyde: This comprehensive guide covers everything you need to know about stress response fight flight. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "personality types myers briggs", "output": "lex: personality types myers briggs documentation\nlex: personality types myers briggs examples\nlex: personality types myers briggs tutorial\nvec: understanding personality types myers briggs\nvec: how to personality types myers briggs\nhyde: This comprehensive guide covers everything you need to know about personality types myers briggs. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "motivation intrinsic extrinsic", "output": "lex: motivation intrinsic extrinsic guide\nlex: motivation intrinsic extrinsic examples\nlex: motivation intrinsic extrinsic tutorial\nvec: how to motivation intrinsic extrinsic\nvec: guide for motivation intrinsic extrinsic\nhyde: This comprehensive guide covers everything you need to know about motivation intrinsic extrinsic. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "decision making psychology", "output": "lex: decision making psychology tutorial\nlex: decision making psychology best practices\nlex: decision making psychology examples\nvec: learn about decision making psychology\nvec: how to decision making psychology\nhyde: This comprehensive guide covers everything you need to know about decision making psychology. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "procrastination causes solutions", "output": "lex: procrastination causes solutions guide\nlex: procrastination causes solutions documentation\nlex: procrastination causes solutions examples\nvec: complete procrastination causes solutions reference\nvec: how to procrastination causes solutions\nhyde: This comprehensive guide covers everything you need to know about procrastination causes solutions. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "renewable energy types", "output": "lex: renewable energy types documentation\nlex: renewable energy types tutorial\nlex: renewable energy types best practices\nvec: complete renewable energy types reference\nvec: learn about renewable energy types\nhyde: This comprehensive guide covers everything you need to know about renewable energy types. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "carbon footprint reduction", "output": "lex: carbon footprint reduction documentation\nlex: carbon footprint reduction best practices\nlex: carbon footprint reduction tutorial\nvec: guide for carbon footprint reduction\nvec: learn about carbon footprint reduction\nhyde: This comprehensive guide covers everything you need to know about carbon footprint reduction. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "composting basics home", "output": "lex: composting basics home examples\nlex: composting basics home guide\nlex: composting basics home tutorial\nvec: how to composting basics home\nvec: complete composting basics home reference\nhyde: This comprehensive guide covers everything you need to know about composting basics home. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "endangered species list", "output": "lex: endangered species list best practices\nlex: endangered species list examples\nlex: endangered species list guide\nvec: learn about endangered species list\nvec: guide for endangered species list\nhyde: This comprehensive guide covers everything you need to know about endangered species list. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "recycling symbols meaning", "output": "lex: recycling symbols meaning documentation\nlex: recycling symbols meaning examples\nlex: recycling symbols meaning best practices\nvec: complete recycling symbols meaning reference\nvec: how to recycling symbols meaning\nhyde: This comprehensive guide covers everything you need to know about recycling symbols meaning. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "ocean plastic pollution", "output": "lex: ocean plastic pollution examples\nlex: ocean plastic pollution guide\nlex: ocean plastic pollution documentation\nvec: learn about ocean plastic pollution\nvec: guide for ocean plastic pollution\nhyde: This comprehensive guide covers everything you need to know about ocean plastic pollution. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "deforestation effects", "output": "lex: deforestation effects best practices\nlex: deforestation effects tutorial\nlex: deforestation effects guide\nvec: understanding deforestation effects\nvec: guide for deforestation effects\nhyde: This comprehensive guide covers everything you need to know about deforestation effects. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "sustainable living tips", "output": "lex: sustainable living tips best practices\nlex: sustainable living tips documentation\nlex: sustainable living tips guide\nvec: learn about sustainable living tips\nvec: complete sustainable living tips reference\nhyde: This comprehensive guide covers everything you need to know about sustainable living tips. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "wildlife conservation efforts", "output": "lex: wildlife conservation efforts guide\nlex: wildlife conservation efforts examples\nlex: wildlife conservation efforts documentation\nvec: how to wildlife conservation efforts\nvec: complete wildlife conservation efforts reference\nhyde: This comprehensive guide covers everything you need to know about wildlife conservation efforts. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "solar panel installation", "output": "lex: solar panel installation examples\nlex: solar panel installation guide\nlex: solar panel installation documentation\nvec: complete solar panel installation reference\nvec: how to solar panel installation\nhyde: This comprehensive guide covers everything you need to know about solar panel installation. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "water conservation methods", "output": "lex: water conservation methods examples\nlex: water conservation methods guide\nlex: water conservation methods documentation\nvec: guide for water conservation methods\nvec: learn about water conservation methods\nhyde: This comprehensive guide covers everything you need to know about water conservation methods. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "biodiversity importance", "output": "lex: biodiversity importance best practices\nlex: biodiversity importance documentation\nlex: biodiversity importance examples\nvec: complete biodiversity importance reference\nvec: understanding biodiversity importance\nhyde: This comprehensive guide covers everything you need to know about biodiversity importance. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "calculus derivatives explained", "output": "lex: calculus derivatives explained best practices\nlex: calculus derivatives explained examples\nlex: calculus derivatives explained documentation\nvec: learn about calculus derivatives explained\nvec: how to calculus derivatives explained\nhyde: This comprehensive guide covers everything you need to know about calculus derivatives explained. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "probability basics statistics", "output": "lex: probability basics statistics tutorial\nlex: probability basics statistics documentation\nlex: probability basics statistics best practices\nvec: guide for probability basics statistics\nvec: how to probability basics statistics\nhyde: This comprehensive guide covers everything you need to know about probability basics statistics. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "linear algebra matrices", "output": "lex: linear algebra matrices guide\nlex: linear algebra matrices documentation\nlex: linear algebra matrices tutorial\nvec: how to linear algebra matrices\nvec: complete linear algebra matrices reference\nhyde: This comprehensive guide covers everything you need to know about linear algebra matrices. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "geometry proofs theorems", "output": "lex: geometry proofs theorems documentation\nlex: geometry proofs theorems best practices\nlex: geometry proofs theorems examples\nvec: how to geometry proofs theorems\nvec: complete geometry proofs theorems reference\nhyde: This comprehensive guide covers everything you need to know about geometry proofs theorems. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "logarithms rules properties", "output": "lex: logarithms rules properties examples\nlex: logarithms rules properties best practices\nlex: logarithms rules properties documentation\nvec: how to logarithms rules properties\nvec: understanding logarithms rules properties\nhyde: This comprehensive guide covers everything you need to know about logarithms rules properties. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "trigonometry identities", "output": "lex: trigonometry identities guide\nlex: trigonometry identities documentation\nlex: trigonometry identities best practices\nvec: learn about trigonometry identities\nvec: how to trigonometry identities\nhyde: This comprehensive guide covers everything you need to know about trigonometry identities. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "set theory basics", "output": "lex: set theory basics documentation\nlex: set theory basics guide\nlex: set theory basics tutorial\nvec: understanding set theory basics\nvec: complete set theory basics reference\nhyde: This comprehensive guide covers everything you need to know about set theory basics. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "prime numbers properties", "output": "lex: prime numbers properties best practices\nlex: prime numbers properties guide\nlex: prime numbers properties documentation\nvec: complete prime numbers properties reference\nvec: guide for prime numbers properties\nhyde: This comprehensive guide covers everything you need to know about prime numbers properties. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "fractions decimals conversion", "output": "lex: fractions decimals conversion guide\nlex: fractions decimals conversion tutorial\nlex: fractions decimals conversion best practices\nvec: guide for fractions decimals conversion\nvec: complete fractions decimals conversion reference\nhyde: This comprehensive guide covers everything you need to know about fractions decimals conversion. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "algebra equations solving", "output": "lex: algebra equations solving tutorial\nlex: algebra equations solving guide\nlex: algebra equations solving best practices\nvec: understanding algebra equations solving\nvec: learn about algebra equations solving\nhyde: This comprehensive guide covers everything you need to know about algebra equations solving. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "graph theory fundamentals", "output": "lex: graph theory fundamentals tutorial\nlex: graph theory fundamentals documentation\nlex: graph theory fundamentals examples\nvec: complete graph theory fundamentals reference\nvec: understanding graph theory fundamentals\nhyde: This comprehensive guide covers everything you need to know about graph theory fundamentals. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "combinatorics permutations", "output": "lex: combinatorics permutations best practices\nlex: combinatorics permutations tutorial\nlex: combinatorics permutations documentation\nvec: understanding combinatorics permutations\nvec: how to combinatorics permutations\nhyde: This comprehensive guide covers everything you need to know about combinatorics permutations. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "spanish verb conjugation", "output": "lex: spanish verb conjugation documentation\nlex: spanish verb conjugation guide\nlex: spanish verb conjugation examples\nvec: how to spanish verb conjugation\nvec: learn about spanish verb conjugation\nhyde: This comprehensive guide covers everything you need to know about spanish verb conjugation. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "japanese hiragana katakana", "output": "lex: japanese hiragana katakana best practices\nlex: japanese hiragana katakana guide\nlex: japanese hiragana katakana documentation\nvec: complete japanese hiragana katakana reference\nvec: guide for japanese hiragana katakana\nhyde: This comprehensive guide covers everything you need to know about japanese hiragana katakana. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "french pronunciation rules", "output": "lex: french pronunciation rules guide\nlex: french pronunciation rules documentation\nlex: french pronunciation rules examples\nvec: learn about french pronunciation rules\nvec: how to french pronunciation rules\nhyde: This comprehensive guide covers everything you need to know about french pronunciation rules. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "german cases grammar", "output": "lex: german cases grammar examples\nlex: german cases grammar guide\nlex: german cases grammar tutorial\nvec: understanding german cases grammar\nvec: how to german cases grammar\nhyde: This comprehensive guide covers everything you need to know about german cases grammar. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "mandarin tones guide", "output": "lex: mandarin tones guide guide\nlex: mandarin tones guide best practices\nlex: mandarin tones guide examples\nvec: guide for mandarin tones guide\nvec: understanding mandarin tones guide\nhyde: This comprehensive guide covers everything you need to know about mandarin tones guide. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "latin phrases common", "output": "lex: latin phrases common documentation\nlex: latin phrases common tutorial\nlex: latin phrases common examples\nvec: learn about latin phrases common\nvec: guide for latin phrases common\nhyde: This comprehensive guide covers everything you need to know about latin phrases common. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "arabic alphabet basics", "output": "lex: arabic alphabet basics guide\nlex: arabic alphabet basics examples\nlex: arabic alphabet basics best practices\nvec: complete arabic alphabet basics reference\nvec: understanding arabic alphabet basics\nhyde: This comprehensive guide covers everything you need to know about arabic alphabet basics. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "english idioms meanings", "output": "lex: english idioms meanings guide\nlex: english idioms meanings examples\nlex: english idioms meanings documentation\nvec: how to english idioms meanings\nvec: understanding english idioms meanings\nhyde: This comprehensive guide covers everything you need to know about english idioms meanings. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "sign language basics", "output": "lex: sign language basics documentation\nlex: sign language basics best practices\nlex: sign language basics examples\nvec: guide for sign language basics\nvec: understanding sign language basics\nhyde: This comprehensive guide covers everything you need to know about sign language basics. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "etymology word origins", "output": "lex: etymology word origins tutorial\nlex: etymology word origins examples\nlex: etymology word origins documentation\nvec: how to etymology word origins\nvec: guide for etymology word origins\nhyde: This comprehensive guide covers everything you need to know about etymology word origins. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "grammar punctuation rules", "output": "lex: grammar punctuation rules best practices\nlex: grammar punctuation rules documentation\nlex: grammar punctuation rules tutorial\nvec: guide for grammar punctuation rules\nvec: understanding grammar punctuation rules\nhyde: This comprehensive guide covers everything you need to know about grammar punctuation rules. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "writing style guides", "output": "lex: writing style guides guide\nlex: writing style guides examples\nlex: writing style guides tutorial\nvec: complete writing style guides reference\nvec: learn about writing style guides\nhyde: This comprehensive guide covers everything you need to know about writing style guides. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "woodworking joints types", "output": "lex: woodworking joints types documentation\nlex: woodworking joints types guide\nlex: woodworking joints types tutorial\nvec: how to woodworking joints types\nvec: learn about woodworking joints types\nhyde: This comprehensive guide covers everything you need to know about woodworking joints types. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "knitting patterns beginners", "output": "lex: knitting patterns beginners documentation\nlex: knitting patterns beginners examples\nlex: knitting patterns beginners tutorial\nvec: guide for knitting patterns beginners\nvec: learn about knitting patterns beginners\nhyde: This comprehensive guide covers everything you need to know about knitting patterns beginners. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "home repair basics", "output": "lex: home repair basics guide\nlex: home repair basics tutorial\nlex: home repair basics documentation\nvec: how to home repair basics\nvec: complete home repair basics reference\nhyde: This comprehensive guide covers everything you need to know about home repair basics. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "sewing machine threading", "output": "lex: sewing machine threading tutorial\nlex: sewing machine threading examples\nlex: sewing machine threading documentation\nvec: complete sewing machine threading reference\nvec: learn about sewing machine threading\nhyde: This comprehensive guide covers everything you need to know about sewing machine threading. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "painting techniques acrylic", "output": "lex: painting techniques acrylic guide\nlex: painting techniques acrylic examples\nlex: painting techniques acrylic best practices\nvec: learn about painting techniques acrylic\nvec: how to painting techniques acrylic\nhyde: This comprehensive guide covers everything you need to know about painting techniques acrylic. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "pottery wheel basics", "output": "lex: pottery wheel basics guide\nlex: pottery wheel basics tutorial\nlex: pottery wheel basics examples\nvec: learn about pottery wheel basics\nvec: complete pottery wheel basics reference\nhyde: This comprehensive guide covers everything you need to know about pottery wheel basics. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "electronics soldering guide", "output": "lex: electronics soldering guide guide\nlex: electronics soldering guide examples\nlex: electronics soldering guide documentation\nvec: learn about electronics soldering guide\nvec: guide for electronics soldering guide\nhyde: This comprehensive guide covers everything you need to know about electronics soldering guide. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "gardening soil preparation", "output": "lex: gardening soil preparation best practices\nlex: gardening soil preparation guide\nlex: gardening soil preparation documentation\nvec: learn about gardening soil preparation\nvec: complete gardening soil preparation reference\nhyde: This comprehensive guide covers everything you need to know about gardening soil preparation. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "candle making supplies", "output": "lex: candle making supplies best practices\nlex: candle making supplies documentation\nlex: candle making supplies examples\nvec: understanding candle making supplies\nvec: guide for candle making supplies\nhyde: This comprehensive guide covers everything you need to know about candle making supplies. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "leather crafting tools", "output": "lex: leather crafting tools tutorial\nlex: leather crafting tools guide\nlex: leather crafting tools documentation\nvec: guide for leather crafting tools\nvec: complete leather crafting tools reference\nhyde: This comprehensive guide covers everything you need to know about leather crafting tools. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "origami folding instructions", "output": "lex: origami folding instructions tutorial\nlex: origami folding instructions best practices\nlex: origami folding instructions documentation\nvec: complete origami folding instructions reference\nvec: understanding origami folding instructions\nhyde: This comprehensive guide covers everything you need to know about origami folding instructions. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "furniture restoration tips", "output": "lex: furniture restoration tips guide\nlex: furniture restoration tips tutorial\nlex: furniture restoration tips examples\nvec: understanding furniture restoration tips\nvec: learn about furniture restoration tips\nhyde: This comprehensive guide covers everything you need to know about furniture restoration tips. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "recent GitHub changes 2026", "output": "lex: recent GitHub changes 2026 tutorial\nlex: recent GitHub changes 2026 examples\nlex: recent GitHub changes 2026 guide\nvec: complete recent GitHub changes 2026 reference\nvec: understanding recent GitHub changes 2026\nhyde: This comprehensive guide covers everything you need to know about recent GitHub changes 2026. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "recent Kubernetes changes 2025", "output": "lex: recent Kubernetes changes 2025 guide\nlex: recent Kubernetes changes 2025 tutorial\nlex: recent Kubernetes changes 2025 documentation\nvec: learn about recent Kubernetes changes 2025\nvec: understanding recent Kubernetes changes 2025\nhyde: This comprehensive guide covers everything you need to know about recent Kubernetes changes 2025. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "climate tech recent news November", "output": "lex: climate tech recent news November tutorial\nlex: climate tech recent news November documentation\nlex: climate tech recent news November guide\nvec: complete climate tech recent news November reference\nvec: learn about climate tech recent news November\nhyde: This comprehensive guide covers everything you need to know about climate tech recent news November. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "React latest version release", "output": "lex: React latest version release tutorial\nlex: React latest version release examples\nlex: React latest version release best practices\nvec: how to React latest version release\nvec: complete React latest version release reference\nhyde: This comprehensive guide covers everything you need to know about React latest version release. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "AI recent news October", "output": "lex: AI recent news October documentation\nlex: AI recent news October tutorial\nlex: AI recent news October examples\nvec: how to AI recent news October\nvec: complete AI recent news October reference\nhyde: This comprehensive guide covers everything you need to know about AI recent news October. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "recent Kubernetes changes 2026", "output": "lex: recent Kubernetes changes 2026 examples\nlex: recent Kubernetes changes 2026 guide\nlex: recent Kubernetes changes 2026 documentation\nvec: complete recent Kubernetes changes 2026 reference\nvec: guide for recent Kubernetes changes 2026\nhyde: This comprehensive guide covers everything you need to know about recent Kubernetes changes 2026. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "GitHub latest version release", "output": "lex: GitHub latest version release best practices\nlex: GitHub latest version release tutorial\nlex: GitHub latest version release guide\nvec: guide for GitHub latest version release\nvec: complete GitHub latest version release reference\nhyde: This comprehensive guide covers everything you need to know about GitHub latest version release. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "latest Python updates", "output": "lex: latest Python updates guide\nlex: latest Python updates documentation\nlex: latest Python updates best practices\nvec: how to latest Python updates\nvec: complete latest Python updates reference\nhyde: This comprehensive guide covers everything you need to know about latest Python updates. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "Shopify recent news December", "output": "lex: Shopify recent news December guide\nlex: Shopify recent news December tutorial\nlex: Shopify recent news December examples\nvec: guide for Shopify recent news December\nvec: complete Shopify recent news December reference\nhyde: This comprehensive guide covers everything you need to know about Shopify recent news December. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "Vue recent news November", "output": "lex: Vue recent news November examples\nlex: Vue recent news November best practices\nlex: Vue recent news November documentation\nvec: how to Vue recent news November\nvec: learn about Vue recent news November\nhyde: This comprehensive guide covers everything you need to know about Vue recent news November. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "Next.js changelog 2025", "output": "lex: Next.js changelog 2025 guide\nlex: Next.js changelog 2025 examples\nlex: Next.js changelog 2025 documentation\nvec: learn about Next.js changelog 2025\nvec: understanding Next.js changelog 2025\nhyde: This comprehensive guide covers everything you need to know about Next.js changelog 2025. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "Docker latest version release", "output": "lex: Docker latest version release best practices\nlex: Docker latest version release tutorial\nlex: Docker latest version release documentation\nvec: how to Docker latest version release\nvec: understanding Docker latest version release\nhyde: This comprehensive guide covers everything you need to know about Docker latest version release. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "Kubernetes changelog 2025", "output": "lex: Kubernetes changelog 2025 best practices\nlex: Kubernetes changelog 2025 documentation\nlex: Kubernetes changelog 2025 examples\nvec: how to Kubernetes changelog 2025\nvec: learn about Kubernetes changelog 2025\nhyde: This comprehensive guide covers everything you need to know about Kubernetes changelog 2025. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "Docker new features 2025", "output": "lex: Docker new features 2025 guide\nlex: Docker new features 2025 best practices\nlex: Docker new features 2025 tutorial\nvec: understanding Docker new features 2025\nvec: learn about Docker new features 2025\nhyde: This comprehensive guide covers everything you need to know about Docker new features 2025. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "what changed in Vue 2025", "output": "lex: what changed in Vue 2025 best practices\nlex: what changed in Vue 2025 guide\nlex: what changed in Vue 2025 documentation\nvec: how to what changed in Vue 2025\nvec: learn about what changed in Vue 2025\nhyde: This comprehensive guide covers everything you need to know about what changed in Vue 2025. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "AI new features 2025", "output": "lex: AI new features 2025 documentation\nlex: AI new features 2025 best practices\nlex: AI new features 2025 tutorial\nvec: how to AI new features 2025\nvec: learn about AI new features 2025\nhyde: This comprehensive guide covers everything you need to know about AI new features 2025. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "what changed in Vue 2026", "output": "lex: what changed in Vue 2026 tutorial\nlex: what changed in Vue 2026 examples\nlex: what changed in Vue 2026 guide\nvec: learn about what changed in Vue 2026\nvec: understanding what changed in Vue 2026\nhyde: This comprehensive guide covers everything you need to know about what changed in Vue 2026. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "recent AI changes 2025", "output": "lex: recent AI changes 2025 tutorial\nlex: recent AI changes 2025 guide\nlex: recent AI changes 2025 best practices\nvec: understanding recent AI changes 2025\nvec: complete recent AI changes 2025 reference\nhyde: This comprehensive guide covers everything you need to know about recent AI changes 2025. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "Vue recent news October", "output": "lex: Vue recent news October documentation\nlex: Vue recent news October guide\nlex: Vue recent news October tutorial\nvec: guide for Vue recent news October\nvec: learn about Vue recent news October\nhyde: This comprehensive guide covers everything you need to know about Vue recent news October. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "what changed in Next.js 2026", "output": "lex: what changed in Next.js 2026 examples\nlex: what changed in Next.js 2026 documentation\nlex: what changed in Next.js 2026 best practices\nvec: complete what changed in Next.js 2026 reference\nvec: how to what changed in Next.js 2026\nhyde: This comprehensive guide covers everything you need to know about what changed in Next.js 2026. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "Docker changelog 2026", "output": "lex: Docker changelog 2026 best practices\nlex: Docker changelog 2026 documentation\nlex: Docker changelog 2026 examples\nvec: understanding Docker changelog 2026\nvec: complete Docker changelog 2026 reference\nhyde: This comprehensive guide covers everything you need to know about Docker changelog 2026. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "Python recent news November", "output": "lex: Python recent news November documentation\nlex: Python recent news November tutorial\nlex: Python recent news November best practices\nvec: understanding Python recent news November\nvec: how to Python recent news November\nhyde: This comprehensive guide covers everything you need to know about Python recent news November. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "recent Python changes 2026", "output": "lex: recent Python changes 2026 best practices\nlex: recent Python changes 2026 documentation\nlex: recent Python changes 2026 guide\nvec: complete recent Python changes 2026 reference\nvec: guide for recent Python changes 2026\nhyde: This comprehensive guide covers everything you need to know about recent Python changes 2026. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "climate tech changelog 2026", "output": "lex: climate tech changelog 2026 documentation\nlex: climate tech changelog 2026 examples\nlex: climate tech changelog 2026 best practices\nvec: guide for climate tech changelog 2026\nvec: learn about climate tech changelog 2026\nhyde: This comprehensive guide covers everything you need to know about climate tech changelog 2026. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "GitHub changelog 2026", "output": "lex: GitHub changelog 2026 documentation\nlex: GitHub changelog 2026 examples\nlex: GitHub changelog 2026 guide\nvec: guide for GitHub changelog 2026\nvec: complete GitHub changelog 2026 reference\nhyde: This comprehensive guide covers everything you need to know about GitHub changelog 2026. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "Shopify latest version release", "output": "lex: Shopify latest version release guide\nlex: Shopify latest version release examples\nlex: Shopify latest version release tutorial\nvec: how to Shopify latest version release\nvec: guide for Shopify latest version release\nhyde: This comprehensive guide covers everything you need to know about Shopify latest version release. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "recent Python changes 2025", "output": "lex: recent Python changes 2025 best practices\nlex: recent Python changes 2025 examples\nlex: recent Python changes 2025 tutorial\nvec: understanding recent Python changes 2025\nvec: guide for recent Python changes 2025\nhyde: This comprehensive guide covers everything you need to know about recent Python changes 2025. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "recent AWS changes 2025", "output": "lex: recent AWS changes 2025 guide\nlex: recent AWS changes 2025 best practices\nlex: recent AWS changes 2025 examples\nvec: complete recent AWS changes 2025 reference\nvec: guide for recent AWS changes 2025\nhyde: This comprehensive guide covers everything you need to know about recent AWS changes 2025. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "climate tech recent news October", "output": "lex: climate tech recent news October documentation\nlex: climate tech recent news October best practices\nlex: climate tech recent news October guide\nvec: guide for climate tech recent news October\nvec: understanding climate tech recent news October\nhyde: This comprehensive guide covers everything you need to know about climate tech recent news October. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "Python changelog 2025", "output": "lex: Python changelog 2025 tutorial\nlex: Python changelog 2025 examples\nlex: Python changelog 2025 best practices\nvec: how to Python changelog 2025\nvec: complete Python changelog 2025 reference\nhyde: This comprehensive guide covers everything you need to know about Python changelog 2025. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "latest AI updates", "output": "lex: latest AI updates best practices\nlex: latest AI updates guide\nlex: latest AI updates tutorial\nvec: understanding latest AI updates\nvec: learn about latest AI updates\nhyde: This comprehensive guide covers everything you need to know about latest AI updates. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "Vue recent news December", "output": "lex: Vue recent news December examples\nlex: Vue recent news December tutorial\nlex: Vue recent news December best practices\nvec: understanding Vue recent news December\nvec: learn about Vue recent news December\nhyde: This comprehensive guide covers everything you need to know about Vue recent news December. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "React recent news October", "output": "lex: React recent news October documentation\nlex: React recent news October best practices\nlex: React recent news October examples\nvec: how to React recent news October\nvec: guide for React recent news October\nhyde: This comprehensive guide covers everything you need to know about React recent news October. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "recent space exploration changes 2025", "output": "lex: recent space exploration changes 2025 guide\nlex: recent space exploration changes 2025 best practices\nlex: recent space exploration changes 2025 examples\nvec: guide for recent space exploration changes 2025\nvec: understanding recent space exploration changes 2025\nhyde: This comprehensive guide covers everything you need to know about recent space exploration changes 2025. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "space exploration latest version release", "output": "lex: space exploration latest version release tutorial\nlex: space exploration latest version release guide\nlex: space exploration latest version release documentation\nvec: understanding space exploration latest version release\nvec: complete space exploration latest version release reference\nhyde: This comprehensive guide covers everything you need to know about space exploration latest version release. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "recent machine learning changes 2026", "output": "lex: recent machine learning changes 2026 examples\nlex: recent machine learning changes 2026 guide\nlex: recent machine learning changes 2026 best practices\nvec: understanding recent machine learning changes 2026\nvec: how to recent machine learning changes 2026\nhyde: This comprehensive guide covers everything you need to know about recent machine learning changes 2026. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "machine learning recent news December", "output": "lex: machine learning recent news December documentation\nlex: machine learning recent news December guide\nlex: machine learning recent news December best practices\nvec: understanding machine learning recent news December\nvec: learn about machine learning recent news December\nhyde: This comprehensive guide covers everything you need to know about machine learning recent news December. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "latest GitHub updates", "output": "lex: latest GitHub updates guide\nlex: latest GitHub updates documentation\nlex: latest GitHub updates best practices\nvec: understanding latest GitHub updates\nvec: how to latest GitHub updates\nhyde: This comprehensive guide covers everything you need to know about latest GitHub updates. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "Vue changelog 2026", "output": "lex: Vue changelog 2026 examples\nlex: Vue changelog 2026 documentation\nlex: Vue changelog 2026 best practices\nvec: learn about Vue changelog 2026\nvec: how to Vue changelog 2026\nhyde: This comprehensive guide covers everything you need to know about Vue changelog 2026. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "recent Docker changes 2025", "output": "lex: recent Docker changes 2025 documentation\nlex: recent Docker changes 2025 best practices\nlex: recent Docker changes 2025 guide\nvec: complete recent Docker changes 2025 reference\nvec: how to recent Docker changes 2025\nhyde: This comprehensive guide covers everything you need to know about recent Docker changes 2025. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "what changed in GitHub 2026", "output": "lex: what changed in GitHub 2026 tutorial\nlex: what changed in GitHub 2026 guide\nlex: what changed in GitHub 2026 documentation\nvec: understanding what changed in GitHub 2026\nvec: guide for what changed in GitHub 2026\nhyde: This comprehensive guide covers everything you need to know about what changed in GitHub 2026. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "Shopify recent news October", "output": "lex: Shopify recent news October guide\nlex: Shopify recent news October documentation\nlex: Shopify recent news October tutorial\nvec: learn about Shopify recent news October\nvec: complete Shopify recent news October reference\nhyde: This comprehensive guide covers everything you need to know about Shopify recent news October. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "recent GitHub changes 2025", "output": "lex: recent GitHub changes 2025 guide\nlex: recent GitHub changes 2025 best practices\nlex: recent GitHub changes 2025 tutorial\nvec: guide for recent GitHub changes 2025\nvec: learn about recent GitHub changes 2025\nhyde: This comprehensive guide covers everything you need to know about recent GitHub changes 2025. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "Next.js changelog 2026", "output": "lex: Next.js changelog 2026 tutorial\nlex: Next.js changelog 2026 documentation\nlex: Next.js changelog 2026 best practices\nvec: guide for Next.js changelog 2026\nvec: complete Next.js changelog 2026 reference\nhyde: This comprehensive guide covers everything you need to know about Next.js changelog 2026. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "what changed in TypeScript 2026", "output": "lex: what changed in TypeScript 2026 examples\nlex: what changed in TypeScript 2026 best practices\nlex: what changed in TypeScript 2026 documentation\nvec: complete what changed in TypeScript 2026 reference\nvec: guide for what changed in TypeScript 2026\nhyde: This comprehensive guide covers everything you need to know about what changed in TypeScript 2026. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "Python new features 2026", "output": "lex: Python new features 2026 best practices\nlex: Python new features 2026 examples\nlex: Python new features 2026 guide\nvec: guide for Python new features 2026\nvec: complete Python new features 2026 reference\nhyde: This comprehensive guide covers everything you need to know about Python new features 2026. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "climate tech changelog 2025", "output": "lex: climate tech changelog 2025 tutorial\nlex: climate tech changelog 2025 documentation\nlex: climate tech changelog 2025 examples\nvec: guide for climate tech changelog 2025\nvec: how to climate tech changelog 2025\nhyde: This comprehensive guide covers everything you need to know about climate tech changelog 2025. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "GitHub recent news December", "output": "lex: GitHub recent news December best practices\nlex: GitHub recent news December guide\nlex: GitHub recent news December examples\nvec: learn about GitHub recent news December\nvec: how to GitHub recent news December\nhyde: This comprehensive guide covers everything you need to know about GitHub recent news December. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "Kubernetes new features 2026", "output": "lex: Kubernetes new features 2026 documentation\nlex: Kubernetes new features 2026 tutorial\nlex: Kubernetes new features 2026 guide\nvec: understanding Kubernetes new features 2026\nvec: guide for Kubernetes new features 2026\nhyde: This comprehensive guide covers everything you need to know about Kubernetes new features 2026. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "Kubernetes recent news October", "output": "lex: Kubernetes recent news October best practices\nlex: Kubernetes recent news October guide\nlex: Kubernetes recent news October documentation\nvec: how to Kubernetes recent news October\nvec: complete Kubernetes recent news October reference\nhyde: This comprehensive guide covers everything you need to know about Kubernetes recent news October. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "TypeScript recent news October", "output": "lex: TypeScript recent news October best practices\nlex: TypeScript recent news October guide\nlex: TypeScript recent news October documentation\nvec: understanding TypeScript recent news October\nvec: complete TypeScript recent news October reference\nhyde: This comprehensive guide covers everything you need to know about TypeScript recent news October. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "Docker recent news October", "output": "lex: Docker recent news October documentation\nlex: Docker recent news October examples\nlex: Docker recent news October tutorial\nvec: complete Docker recent news October reference\nvec: learn about Docker recent news October\nhyde: This comprehensive guide covers everything you need to know about Docker recent news October. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "space exploration changelog 2025", "output": "lex: space exploration changelog 2025 guide\nlex: space exploration changelog 2025 tutorial\nlex: space exploration changelog 2025 documentation\nvec: complete space exploration changelog 2025 reference\nvec: understanding space exploration changelog 2025\nhyde: This comprehensive guide covers everything you need to know about space exploration changelog 2025. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "Vue latest version release", "output": "lex: Vue latest version release documentation\nlex: Vue latest version release best practices\nlex: Vue latest version release examples\nvec: complete Vue latest version release reference\nvec: learn about Vue latest version release\nhyde: This comprehensive guide covers everything you need to know about Vue latest version release. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "Next.js new features 2025", "output": "lex: Next.js new features 2025 best practices\nlex: Next.js new features 2025 guide\nlex: Next.js new features 2025 tutorial\nvec: learn about Next.js new features 2025\nvec: complete Next.js new features 2025 reference\nhyde: This comprehensive guide covers everything you need to know about Next.js new features 2025. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "climate tech new features 2025", "output": "lex: climate tech new features 2025 guide\nlex: climate tech new features 2025 tutorial\nlex: climate tech new features 2025 examples\nvec: learn about climate tech new features 2025\nvec: understanding climate tech new features 2025\nhyde: This comprehensive guide covers everything you need to know about climate tech new features 2025. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "what changed in climate tech 2026", "output": "lex: what changed in climate tech 2026 examples\nlex: what changed in climate tech 2026 documentation\nlex: what changed in climate tech 2026 tutorial\nvec: how to what changed in climate tech 2026\nvec: complete what changed in climate tech 2026 reference\nhyde: This comprehensive guide covers everything you need to know about what changed in climate tech 2026. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "what changed in space exploration 2026", "output": "lex: what changed in space exploration 2026 best practices\nlex: what changed in space exploration 2026 tutorial\nlex: what changed in space exploration 2026 examples\nvec: how to what changed in space exploration 2026\nvec: understanding what changed in space exploration 2026\nhyde: This comprehensive guide covers everything you need to know about what changed in space exploration 2026. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "Shopify new features 2025", "output": "lex: Shopify new features 2025 guide\nlex: Shopify new features 2025 documentation\nlex: Shopify new features 2025 best practices\nvec: understanding Shopify new features 2025\nvec: complete Shopify new features 2025 reference\nhyde: This comprehensive guide covers everything you need to know about Shopify new features 2025. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "climate tech new features 2026", "output": "lex: climate tech new features 2026 guide\nlex: climate tech new features 2026 best practices\nlex: climate tech new features 2026 tutorial\nvec: understanding climate tech new features 2026\nvec: how to climate tech new features 2026\nhyde: This comprehensive guide covers everything you need to know about climate tech new features 2026. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "machine learning recent news October", "output": "lex: machine learning recent news October guide\nlex: machine learning recent news October best practices\nlex: machine learning recent news October tutorial\nvec: complete machine learning recent news October reference\nvec: learn about machine learning recent news October\nhyde: This comprehensive guide covers everything you need to know about machine learning recent news October. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "latest React updates", "output": "lex: latest React updates documentation\nlex: latest React updates examples\nlex: latest React updates best practices\nvec: learn about latest React updates\nvec: understanding latest React updates\nhyde: This comprehensive guide covers everything you need to know about latest React updates. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "TypeScript latest version release", "output": "lex: TypeScript latest version release best practices\nlex: TypeScript latest version release examples\nlex: TypeScript latest version release tutorial\nvec: guide for TypeScript latest version release\nvec: complete TypeScript latest version release reference\nhyde: This comprehensive guide covers everything you need to know about TypeScript latest version release. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "Next.js latest version release", "output": "lex: Next.js latest version release best practices\nlex: Next.js latest version release guide\nlex: Next.js latest version release examples\nvec: how to Next.js latest version release\nvec: guide for Next.js latest version release\nhyde: This comprehensive guide covers everything you need to know about Next.js latest version release. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "what changed in Kubernetes 2026", "output": "lex: what changed in Kubernetes 2026 tutorial\nlex: what changed in Kubernetes 2026 best practices\nlex: what changed in Kubernetes 2026 guide\nvec: understanding what changed in Kubernetes 2026\nvec: complete what changed in Kubernetes 2026 reference\nhyde: This comprehensive guide covers everything you need to know about what changed in Kubernetes 2026. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "recent React changes 2026", "output": "lex: recent React changes 2026 documentation\nlex: recent React changes 2026 best practices\nlex: recent React changes 2026 examples\nvec: understanding recent React changes 2026\nvec: learn about recent React changes 2026\nhyde: This comprehensive guide covers everything you need to know about recent React changes 2026. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "recent climate tech changes 2025", "output": "lex: recent climate tech changes 2025 best practices\nlex: recent climate tech changes 2025 guide\nlex: recent climate tech changes 2025 tutorial\nvec: complete recent climate tech changes 2025 reference\nvec: guide for recent climate tech changes 2025\nhyde: This comprehensive guide covers everything you need to know about recent climate tech changes 2025. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "what changed in Shopify 2026", "output": "lex: what changed in Shopify 2026 best practices\nlex: what changed in Shopify 2026 documentation\nlex: what changed in Shopify 2026 guide\nvec: complete what changed in Shopify 2026 reference\nvec: learn about what changed in Shopify 2026\nhyde: This comprehensive guide covers everything you need to know about what changed in Shopify 2026. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "Kubernetes changelog 2026", "output": "lex: Kubernetes changelog 2026 documentation\nlex: Kubernetes changelog 2026 examples\nlex: Kubernetes changelog 2026 tutorial\nvec: guide for Kubernetes changelog 2026\nvec: understanding Kubernetes changelog 2026\nhyde: This comprehensive guide covers everything you need to know about Kubernetes changelog 2026. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "Shopify recent news November", "output": "lex: Shopify recent news November tutorial\nlex: Shopify recent news November examples\nlex: Shopify recent news November best practices\nvec: learn about Shopify recent news November\nvec: guide for Shopify recent news November\nhyde: This comprehensive guide covers everything you need to know about Shopify recent news November. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "GitHub recent news October", "output": "lex: GitHub recent news October tutorial\nlex: GitHub recent news October best practices\nlex: GitHub recent news October guide\nvec: guide for GitHub recent news October\nvec: learn about GitHub recent news October\nhyde: This comprehensive guide covers everything you need to know about GitHub recent news October. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "Kubernetes recent news December", "output": "lex: Kubernetes recent news December examples\nlex: Kubernetes recent news December guide\nlex: Kubernetes recent news December documentation\nvec: how to Kubernetes recent news December\nvec: complete Kubernetes recent news December reference\nhyde: This comprehensive guide covers everything you need to know about Kubernetes recent news December. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "what changed in Docker 2025", "output": "lex: what changed in Docker 2025 best practices\nlex: what changed in Docker 2025 guide\nlex: what changed in Docker 2025 examples\nvec: understanding what changed in Docker 2025\nvec: learn about what changed in Docker 2025\nhyde: This comprehensive guide covers everything you need to know about what changed in Docker 2025. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "recent React changes 2025", "output": "lex: recent React changes 2025 guide\nlex: recent React changes 2025 best practices\nlex: recent React changes 2025 examples\nvec: how to recent React changes 2025\nvec: complete recent React changes 2025 reference\nhyde: This comprehensive guide covers everything you need to know about recent React changes 2025. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "what changed in Kubernetes 2025", "output": "lex: what changed in Kubernetes 2025 best practices\nlex: what changed in Kubernetes 2025 guide\nlex: what changed in Kubernetes 2025 tutorial\nvec: guide for what changed in Kubernetes 2025\nvec: understanding what changed in Kubernetes 2025\nhyde: This comprehensive guide covers everything you need to know about what changed in Kubernetes 2025. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "recent TypeScript changes 2026", "output": "lex: recent TypeScript changes 2026 guide\nlex: recent TypeScript changes 2026 documentation\nlex: recent TypeScript changes 2026 best practices\nvec: learn about recent TypeScript changes 2026\nvec: understanding recent TypeScript changes 2026\nhyde: This comprehensive guide covers everything you need to know about recent TypeScript changes 2026. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "Shopify changelog 2025", "output": "lex: Shopify changelog 2025 examples\nlex: Shopify changelog 2025 guide\nlex: Shopify changelog 2025 best practices\nvec: learn about Shopify changelog 2025\nvec: understanding Shopify changelog 2025\nhyde: This comprehensive guide covers everything you need to know about Shopify changelog 2025. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "latest Docker updates", "output": "lex: latest Docker updates guide\nlex: latest Docker updates examples\nlex: latest Docker updates tutorial\nvec: understanding latest Docker updates\nvec: learn about latest Docker updates\nhyde: This comprehensive guide covers everything you need to know about latest Docker updates. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "recent machine learning changes 2025", "output": "lex: recent machine learning changes 2025 documentation\nlex: recent machine learning changes 2025 tutorial\nlex: recent machine learning changes 2025 examples\nvec: complete recent machine learning changes 2025 reference\nvec: understanding recent machine learning changes 2025\nhyde: This comprehensive guide covers everything you need to know about recent machine learning changes 2025. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "recent AI changes 2026", "output": "lex: recent AI changes 2026 examples\nlex: recent AI changes 2026 guide\nlex: recent AI changes 2026 best practices\nvec: how to recent AI changes 2026\nvec: guide for recent AI changes 2026\nhyde: This comprehensive guide covers everything you need to know about recent AI changes 2026. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "recent Docker changes 2026", "output": "lex: recent Docker changes 2026 guide\nlex: recent Docker changes 2026 examples\nlex: recent Docker changes 2026 documentation\nvec: guide for recent Docker changes 2026\nvec: learn about recent Docker changes 2026\nhyde: This comprehensive guide covers everything you need to know about recent Docker changes 2026. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "what changed in AWS 2026", "output": "lex: what changed in AWS 2026 guide\nlex: what changed in AWS 2026 documentation\nlex: what changed in AWS 2026 tutorial\nvec: how to what changed in AWS 2026\nvec: understanding what changed in AWS 2026\nhyde: This comprehensive guide covers everything you need to know about what changed in AWS 2026. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "what changed in Shopify 2025", "output": "lex: what changed in Shopify 2025 guide\nlex: what changed in Shopify 2025 documentation\nlex: what changed in Shopify 2025 examples\nvec: understanding what changed in Shopify 2025\nvec: how to what changed in Shopify 2025\nhyde: This comprehensive guide covers everything you need to know about what changed in Shopify 2025. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "AI changelog 2026", "output": "lex: AI changelog 2026 documentation\nlex: AI changelog 2026 examples\nlex: AI changelog 2026 best practices\nvec: learn about AI changelog 2026\nvec: understanding AI changelog 2026\nhyde: This comprehensive guide covers everything you need to know about AI changelog 2026. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "latest Kubernetes updates", "output": "lex: latest Kubernetes updates best practices\nlex: latest Kubernetes updates documentation\nlex: latest Kubernetes updates guide\nvec: guide for latest Kubernetes updates\nvec: learn about latest Kubernetes updates\nhyde: This comprehensive guide covers everything you need to know about latest Kubernetes updates. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "what changed in climate tech 2025", "output": "lex: what changed in climate tech 2025 guide\nlex: what changed in climate tech 2025 best practices\nlex: what changed in climate tech 2025 examples\nvec: learn about what changed in climate tech 2025\nvec: understanding what changed in climate tech 2025\nhyde: This comprehensive guide covers everything you need to know about what changed in climate tech 2025. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "latest machine learning updates", "output": "lex: latest machine learning updates documentation\nlex: latest machine learning updates best practices\nlex: latest machine learning updates examples\nvec: learn about latest machine learning updates\nvec: understanding latest machine learning updates\nhyde: This comprehensive guide covers everything you need to know about latest machine learning updates. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "what changed in Next.js 2025", "output": "lex: what changed in Next.js 2025 best practices\nlex: what changed in Next.js 2025 documentation\nlex: what changed in Next.js 2025 guide\nvec: understanding what changed in Next.js 2025\nvec: learn about what changed in Next.js 2025\nhyde: This comprehensive guide covers everything you need to know about what changed in Next.js 2025. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "TypeScript changelog 2025", "output": "lex: TypeScript changelog 2025 documentation\nlex: TypeScript changelog 2025 examples\nlex: TypeScript changelog 2025 guide\nvec: understanding TypeScript changelog 2025\nvec: guide for TypeScript changelog 2025\nhyde: This comprehensive guide covers everything you need to know about TypeScript changelog 2025. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "recent AWS changes 2026", "output": "lex: recent AWS changes 2026 guide\nlex: recent AWS changes 2026 tutorial\nlex: recent AWS changes 2026 examples\nvec: how to recent AWS changes 2026\nvec: understanding recent AWS changes 2026\nhyde: This comprehensive guide covers everything you need to know about recent AWS changes 2026. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "Vue changelog 2025", "output": "lex: Vue changelog 2025 best practices\nlex: Vue changelog 2025 documentation\nlex: Vue changelog 2025 examples\nvec: guide for Vue changelog 2025\nvec: understanding Vue changelog 2025\nhyde: This comprehensive guide covers everything you need to know about Vue changelog 2025. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "TypeScript new features 2025", "output": "lex: TypeScript new features 2025 best practices\nlex: TypeScript new features 2025 guide\nlex: TypeScript new features 2025 tutorial\nvec: complete TypeScript new features 2025 reference\nvec: how to TypeScript new features 2025\nhyde: This comprehensive guide covers everything you need to know about TypeScript new features 2025. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "React recent news December", "output": "lex: React recent news December best practices\nlex: React recent news December tutorial\nlex: React recent news December examples\nvec: complete React recent news December reference\nvec: guide for React recent news December\nhyde: This comprehensive guide covers everything you need to know about React recent news December. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "AWS changelog 2026", "output": "lex: AWS changelog 2026 best practices\nlex: AWS changelog 2026 documentation\nlex: AWS changelog 2026 guide\nvec: guide for AWS changelog 2026\nvec: learn about AWS changelog 2026\nhyde: This comprehensive guide covers everything you need to know about AWS changelog 2026. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "AI recent news December", "output": "lex: AI recent news December documentation\nlex: AI recent news December guide\nlex: AI recent news December best practices\nvec: complete AI recent news December reference\nvec: how to AI recent news December\nhyde: This comprehensive guide covers everything you need to know about AI recent news December. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "TypeScript recent news December", "output": "lex: TypeScript recent news December documentation\nlex: TypeScript recent news December best practices\nlex: TypeScript recent news December examples\nvec: understanding TypeScript recent news December\nvec: how to TypeScript recent news December\nhyde: This comprehensive guide covers everything you need to know about TypeScript recent news December. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "climate tech recent news December", "output": "lex: climate tech recent news December best practices\nlex: climate tech recent news December guide\nlex: climate tech recent news December documentation\nvec: how to climate tech recent news December\nvec: guide for climate tech recent news December\nhyde: This comprehensive guide covers everything you need to know about climate tech recent news December. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "Next.js recent news October", "output": "lex: Next.js recent news October guide\nlex: Next.js recent news October documentation\nlex: Next.js recent news October best practices\nvec: complete Next.js recent news October reference\nvec: guide for Next.js recent news October\nhyde: This comprehensive guide covers everything you need to know about Next.js recent news October. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "AI latest version release", "output": "lex: AI latest version release guide\nlex: AI latest version release examples\nlex: AI latest version release documentation\nvec: understanding AI latest version release\nvec: how to AI latest version release\nhyde: This comprehensive guide covers everything you need to know about AI latest version release. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "latest Next.js updates", "output": "lex: latest Next.js updates documentation\nlex: latest Next.js updates tutorial\nlex: latest Next.js updates guide\nvec: understanding latest Next.js updates\nvec: learn about latest Next.js updates\nhyde: This comprehensive guide covers everything you need to know about latest Next.js updates. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "Vue new features 2026", "output": "lex: Vue new features 2026 examples\nlex: Vue new features 2026 guide\nlex: Vue new features 2026 documentation\nvec: guide for Vue new features 2026\nvec: understanding Vue new features 2026\nhyde: This comprehensive guide covers everything you need to know about Vue new features 2026. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "space exploration new features 2026", "output": "lex: space exploration new features 2026 tutorial\nlex: space exploration new features 2026 best practices\nlex: space exploration new features 2026 guide\nvec: understanding space exploration new features 2026\nvec: learn about space exploration new features 2026\nhyde: This comprehensive guide covers everything you need to know about space exploration new features 2026. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "recent Shopify changes 2026", "output": "lex: recent Shopify changes 2026 examples\nlex: recent Shopify changes 2026 best practices\nlex: recent Shopify changes 2026 tutorial\nvec: how to recent Shopify changes 2026\nvec: understanding recent Shopify changes 2026\nhyde: This comprehensive guide covers everything you need to know about recent Shopify changes 2026. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "machine learning latest version release", "output": "lex: machine learning latest version release documentation\nlex: machine learning latest version release tutorial\nlex: machine learning latest version release examples\nvec: complete machine learning latest version release reference\nvec: understanding machine learning latest version release\nhyde: This comprehensive guide covers everything you need to know about machine learning latest version release. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "Docker new features 2026", "output": "lex: Docker new features 2026 tutorial\nlex: Docker new features 2026 guide\nlex: Docker new features 2026 best practices\nvec: how to Docker new features 2026\nvec: complete Docker new features 2026 reference\nhyde: This comprehensive guide covers everything you need to know about Docker new features 2026. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "Python recent news December", "output": "lex: Python recent news December guide\nlex: Python recent news December best practices\nlex: Python recent news December tutorial\nvec: complete Python recent news December reference\nvec: understanding Python recent news December\nhyde: This comprehensive guide covers everything you need to know about Python recent news December. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "what changed in React 2026", "output": "lex: what changed in React 2026 documentation\nlex: what changed in React 2026 examples\nlex: what changed in React 2026 guide\nvec: learn about what changed in React 2026\nvec: understanding what changed in React 2026\nhyde: This comprehensive guide covers everything you need to know about what changed in React 2026. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "Docker changelog 2025", "output": "lex: Docker changelog 2025 examples\nlex: Docker changelog 2025 best practices\nlex: Docker changelog 2025 tutorial\nvec: understanding Docker changelog 2025\nvec: complete Docker changelog 2025 reference\nhyde: This comprehensive guide covers everything you need to know about Docker changelog 2025. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "what changed in Docker 2026", "output": "lex: what changed in Docker 2026 best practices\nlex: what changed in Docker 2026 documentation\nlex: what changed in Docker 2026 examples\nvec: complete what changed in Docker 2026 reference\nvec: understanding what changed in Docker 2026\nhyde: This comprehensive guide covers everything you need to know about what changed in Docker 2026. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "recent Next.js changes 2026", "output": "lex: recent Next.js changes 2026 best practices\nlex: recent Next.js changes 2026 guide\nlex: recent Next.js changes 2026 documentation\nvec: understanding recent Next.js changes 2026\nvec: learn about recent Next.js changes 2026\nhyde: This comprehensive guide covers everything you need to know about recent Next.js changes 2026. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "latest climate tech updates", "output": "lex: latest climate tech updates examples\nlex: latest climate tech updates tutorial\nlex: latest climate tech updates best practices\nvec: understanding latest climate tech updates\nvec: complete latest climate tech updates reference\nhyde: This comprehensive guide covers everything you need to know about latest climate tech updates. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "machine learning changelog 2026", "output": "lex: machine learning changelog 2026 documentation\nlex: machine learning changelog 2026 guide\nlex: machine learning changelog 2026 examples\nvec: guide for machine learning changelog 2026\nvec: learn about machine learning changelog 2026\nhyde: This comprehensive guide covers everything you need to know about machine learning changelog 2026. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "what changed in AWS 2025", "output": "lex: what changed in AWS 2025 examples\nlex: what changed in AWS 2025 guide\nlex: what changed in AWS 2025 best practices\nvec: complete what changed in AWS 2025 reference\nvec: learn about what changed in AWS 2025\nhyde: This comprehensive guide covers everything you need to know about what changed in AWS 2025. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "Kubernetes recent news November", "output": "lex: Kubernetes recent news November guide\nlex: Kubernetes recent news November tutorial\nlex: Kubernetes recent news November best practices\nvec: how to Kubernetes recent news November\nvec: guide for Kubernetes recent news November\nhyde: This comprehensive guide covers everything you need to know about Kubernetes recent news November. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "AI changelog 2025", "output": "lex: AI changelog 2025 examples\nlex: AI changelog 2025 best practices\nlex: AI changelog 2025 tutorial\nvec: guide for AI changelog 2025\nvec: learn about AI changelog 2025\nhyde: This comprehensive guide covers everything you need to know about AI changelog 2025. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "recent Next.js changes 2025", "output": "lex: recent Next.js changes 2025 documentation\nlex: recent Next.js changes 2025 examples\nlex: recent Next.js changes 2025 best practices\nvec: how to recent Next.js changes 2025\nvec: complete recent Next.js changes 2025 reference\nhyde: This comprehensive guide covers everything you need to know about recent Next.js changes 2025. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "Python recent news October", "output": "lex: Python recent news October examples\nlex: Python recent news October documentation\nlex: Python recent news October best practices\nvec: complete Python recent news October reference\nvec: guide for Python recent news October\nhyde: This comprehensive guide covers everything you need to know about Python recent news October. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "recent Vue changes 2025", "output": "lex: recent Vue changes 2025 tutorial\nlex: recent Vue changes 2025 best practices\nlex: recent Vue changes 2025 guide\nvec: guide for recent Vue changes 2025\nvec: complete recent Vue changes 2025 reference\nhyde: This comprehensive guide covers everything you need to know about recent Vue changes 2025. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "AI new features 2026", "output": "lex: AI new features 2026 documentation\nlex: AI new features 2026 guide\nlex: AI new features 2026 tutorial\nvec: how to AI new features 2026\nvec: complete AI new features 2026 reference\nhyde: This comprehensive guide covers everything you need to know about AI new features 2026. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "React new features 2026", "output": "lex: React new features 2026 documentation\nlex: React new features 2026 tutorial\nlex: React new features 2026 examples\nvec: learn about React new features 2026\nvec: complete React new features 2026 reference\nhyde: This comprehensive guide covers everything you need to know about React new features 2026. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "Vue new features 2025", "output": "lex: Vue new features 2025 documentation\nlex: Vue new features 2025 best practices\nlex: Vue new features 2025 guide\nvec: guide for Vue new features 2025\nvec: understanding Vue new features 2025\nhyde: This comprehensive guide covers everything you need to know about Vue new features 2025. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "climate tech latest version release", "output": "lex: climate tech latest version release examples\nlex: climate tech latest version release tutorial\nlex: climate tech latest version release best practices\nvec: complete climate tech latest version release reference\nvec: guide for climate tech latest version release\nhyde: This comprehensive guide covers everything you need to know about climate tech latest version release. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "Python latest version release", "output": "lex: Python latest version release tutorial\nlex: Python latest version release guide\nlex: Python latest version release best practices\nvec: understanding Python latest version release\nvec: learn about Python latest version release\nhyde: This comprehensive guide covers everything you need to know about Python latest version release. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "AWS recent news December", "output": "lex: AWS recent news December guide\nlex: AWS recent news December examples\nlex: AWS recent news December tutorial\nvec: complete AWS recent news December reference\nvec: how to AWS recent news December\nhyde: This comprehensive guide covers everything you need to know about AWS recent news December. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "GitHub changelog 2025", "output": "lex: GitHub changelog 2025 tutorial\nlex: GitHub changelog 2025 guide\nlex: GitHub changelog 2025 documentation\nvec: understanding GitHub changelog 2025\nvec: complete GitHub changelog 2025 reference\nhyde: This comprehensive guide covers everything you need to know about GitHub changelog 2025. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "what changed in machine learning 2026", "output": "lex: what changed in machine learning 2026 tutorial\nlex: what changed in machine learning 2026 examples\nlex: what changed in machine learning 2026 guide\nvec: learn about what changed in machine learning 2026\nvec: how to what changed in machine learning 2026\nhyde: This comprehensive guide covers everything you need to know about what changed in machine learning 2026. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "space exploration recent news October", "output": "lex: space exploration recent news October documentation\nlex: space exploration recent news October guide\nlex: space exploration recent news October examples\nvec: learn about space exploration recent news October\nvec: understanding space exploration recent news October\nhyde: This comprehensive guide covers everything you need to know about space exploration recent news October. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "React changelog 2026", "output": "lex: React changelog 2026 tutorial\nlex: React changelog 2026 examples\nlex: React changelog 2026 documentation\nvec: how to React changelog 2026\nvec: understanding React changelog 2026\nhyde: This comprehensive guide covers everything you need to know about React changelog 2026. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "React changelog 2025", "output": "lex: React changelog 2025 tutorial\nlex: React changelog 2025 guide\nlex: React changelog 2025 best practices\nvec: complete React changelog 2025 reference\nvec: how to React changelog 2025\nhyde: This comprehensive guide covers everything you need to know about React changelog 2025. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "machine learning recent news November", "output": "lex: machine learning recent news November tutorial\nlex: machine learning recent news November guide\nlex: machine learning recent news November examples\nvec: how to machine learning recent news November\nvec: understanding machine learning recent news November\nhyde: This comprehensive guide covers everything you need to know about machine learning recent news November. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "GitHub new features 2025", "output": "lex: GitHub new features 2025 guide\nlex: GitHub new features 2025 tutorial\nlex: GitHub new features 2025 examples\nvec: learn about GitHub new features 2025\nvec: how to GitHub new features 2025\nhyde: This comprehensive guide covers everything you need to know about GitHub new features 2025. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "machine learning new features 2025", "output": "lex: machine learning new features 2025 tutorial\nlex: machine learning new features 2025 documentation\nlex: machine learning new features 2025 best practices\nvec: how to machine learning new features 2025\nvec: learn about machine learning new features 2025\nhyde: This comprehensive guide covers everything you need to know about machine learning new features 2025. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "AI recent news November", "output": "lex: AI recent news November documentation\nlex: AI recent news November guide\nlex: AI recent news November examples\nvec: learn about AI recent news November\nvec: understanding AI recent news November\nhyde: This comprehensive guide covers everything you need to know about AI recent news November. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "Python new features 2025", "output": "lex: Python new features 2025 tutorial\nlex: Python new features 2025 documentation\nlex: Python new features 2025 examples\nvec: understanding Python new features 2025\nvec: complete Python new features 2025 reference\nhyde: This comprehensive guide covers everything you need to know about Python new features 2025. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "latest Shopify updates", "output": "lex: latest Shopify updates best practices\nlex: latest Shopify updates documentation\nlex: latest Shopify updates guide\nvec: complete latest Shopify updates reference\nvec: guide for latest Shopify updates\nhyde: This comprehensive guide covers everything you need to know about latest Shopify updates. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "Kubernetes new features 2025", "output": "lex: Kubernetes new features 2025 examples\nlex: Kubernetes new features 2025 documentation\nlex: Kubernetes new features 2025 best practices\nvec: guide for Kubernetes new features 2025\nvec: complete Kubernetes new features 2025 reference\nhyde: This comprehensive guide covers everything you need to know about Kubernetes new features 2025. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "what changed in AI 2026", "output": "lex: what changed in AI 2026 guide\nlex: what changed in AI 2026 documentation\nlex: what changed in AI 2026 tutorial\nvec: guide for what changed in AI 2026\nvec: understanding what changed in AI 2026\nhyde: This comprehensive guide covers everything you need to know about what changed in AI 2026. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "machine learning new features 2026", "output": "lex: machine learning new features 2026 best practices\nlex: machine learning new features 2026 guide\nlex: machine learning new features 2026 examples\nvec: understanding machine learning new features 2026\nvec: how to machine learning new features 2026\nhyde: This comprehensive guide covers everything you need to know about machine learning new features 2026. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "recent Shopify changes 2025", "output": "lex: recent Shopify changes 2025 examples\nlex: recent Shopify changes 2025 tutorial\nlex: recent Shopify changes 2025 best practices\nvec: complete recent Shopify changes 2025 reference\nvec: how to recent Shopify changes 2025\nhyde: This comprehensive guide covers everything you need to know about recent Shopify changes 2025. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "what changed in machine learning 2025", "output": "lex: what changed in machine learning 2025 guide\nlex: what changed in machine learning 2025 best practices\nlex: what changed in machine learning 2025 documentation\nvec: learn about what changed in machine learning 2025\nvec: complete what changed in machine learning 2025 reference\nhyde: This comprehensive guide covers everything you need to know about what changed in machine learning 2025. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "Shopify new features 2026", "output": "lex: Shopify new features 2026 best practices\nlex: Shopify new features 2026 examples\nlex: Shopify new features 2026 guide\nvec: understanding Shopify new features 2026\nvec: complete Shopify new features 2026 reference\nhyde: This comprehensive guide covers everything you need to know about Shopify new features 2026. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "Docker recent news November", "output": "lex: Docker recent news November examples\nlex: Docker recent news November best practices\nlex: Docker recent news November tutorial\nvec: understanding Docker recent news November\nvec: guide for Docker recent news November\nhyde: This comprehensive guide covers everything you need to know about Docker recent news November. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "latest Vue updates", "output": "lex: latest Vue updates documentation\nlex: latest Vue updates tutorial\nlex: latest Vue updates best practices\nvec: understanding latest Vue updates\nvec: learn about latest Vue updates\nhyde: This comprehensive guide covers everything you need to know about latest Vue updates. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "Next.js new features 2026", "output": "lex: Next.js new features 2026 examples\nlex: Next.js new features 2026 guide\nlex: Next.js new features 2026 best practices\nvec: learn about Next.js new features 2026\nvec: how to Next.js new features 2026\nhyde: This comprehensive guide covers everything you need to know about Next.js new features 2026. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "GitHub new features 2026", "output": "lex: GitHub new features 2026 examples\nlex: GitHub new features 2026 tutorial\nlex: GitHub new features 2026 documentation\nvec: how to GitHub new features 2026\nvec: understanding GitHub new features 2026\nhyde: This comprehensive guide covers everything you need to know about GitHub new features 2026. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "AWS new features 2025", "output": "lex: AWS new features 2025 best practices\nlex: AWS new features 2025 guide\nlex: AWS new features 2025 tutorial\nvec: how to AWS new features 2025\nvec: understanding AWS new features 2025\nhyde: This comprehensive guide covers everything you need to know about AWS new features 2025. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "what changed in Python 2026", "output": "lex: what changed in Python 2026 tutorial\nlex: what changed in Python 2026 best practices\nlex: what changed in Python 2026 guide\nvec: guide for what changed in Python 2026\nvec: learn about what changed in Python 2026\nhyde: This comprehensive guide covers everything you need to know about what changed in Python 2026. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "what changed in TypeScript 2025", "output": "lex: what changed in TypeScript 2025 best practices\nlex: what changed in TypeScript 2025 tutorial\nlex: what changed in TypeScript 2025 documentation\nvec: complete what changed in TypeScript 2025 reference\nvec: understanding what changed in TypeScript 2025\nhyde: This comprehensive guide covers everything you need to know about what changed in TypeScript 2025. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "recent space exploration changes 2026", "output": "lex: recent space exploration changes 2026 best practices\nlex: recent space exploration changes 2026 documentation\nlex: recent space exploration changes 2026 tutorial\nvec: understanding recent space exploration changes 2026\nvec: learn about recent space exploration changes 2026\nhyde: This comprehensive guide covers everything you need to know about recent space exploration changes 2026. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "AWS new features 2026", "output": "lex: AWS new features 2026 documentation\nlex: AWS new features 2026 tutorial\nlex: AWS new features 2026 examples\nvec: complete AWS new features 2026 reference\nvec: understanding AWS new features 2026\nhyde: This comprehensive guide covers everything you need to know about AWS new features 2026. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "recent TypeScript changes 2025", "output": "lex: recent TypeScript changes 2025 examples\nlex: recent TypeScript changes 2025 documentation\nlex: recent TypeScript changes 2025 guide\nvec: learn about recent TypeScript changes 2025\nvec: guide for recent TypeScript changes 2025\nhyde: This comprehensive guide covers everything you need to know about recent TypeScript changes 2025. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "latest TypeScript updates", "output": "lex: latest TypeScript updates examples\nlex: latest TypeScript updates guide\nlex: latest TypeScript updates best practices\nvec: complete latest TypeScript updates reference\nvec: learn about latest TypeScript updates\nhyde: This comprehensive guide covers everything you need to know about latest TypeScript updates. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "what changed in React 2025", "output": "lex: what changed in React 2025 documentation\nlex: what changed in React 2025 tutorial\nlex: what changed in React 2025 best practices\nvec: learn about what changed in React 2025\nvec: understanding what changed in React 2025\nhyde: This comprehensive guide covers everything you need to know about what changed in React 2025. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "AWS changelog 2025", "output": "lex: AWS changelog 2025 examples\nlex: AWS changelog 2025 tutorial\nlex: AWS changelog 2025 documentation\nvec: how to AWS changelog 2025\nvec: complete AWS changelog 2025 reference\nhyde: This comprehensive guide covers everything you need to know about AWS changelog 2025. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "space exploration changelog 2026", "output": "lex: space exploration changelog 2026 documentation\nlex: space exploration changelog 2026 best practices\nlex: space exploration changelog 2026 guide\nvec: learn about space exploration changelog 2026\nvec: how to space exploration changelog 2026\nhyde: This comprehensive guide covers everything you need to know about space exploration changelog 2026. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "React new features 2025", "output": "lex: React new features 2025 best practices\nlex: React new features 2025 guide\nlex: React new features 2025 tutorial\nvec: complete React new features 2025 reference\nvec: how to React new features 2025\nhyde: This comprehensive guide covers everything you need to know about React new features 2025. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "AWS latest version release", "output": "lex: AWS latest version release guide\nlex: AWS latest version release documentation\nlex: AWS latest version release best practices\nvec: complete AWS latest version release reference\nvec: understanding AWS latest version release\nhyde: This comprehensive guide covers everything you need to know about AWS latest version release. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "latest space exploration updates", "output": "lex: latest space exploration updates documentation\nlex: latest space exploration updates guide\nlex: latest space exploration updates examples\nvec: understanding latest space exploration updates\nvec: complete latest space exploration updates reference\nhyde: This comprehensive guide covers everything you need to know about latest space exploration updates. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "Kubernetes latest version release", "output": "lex: Kubernetes latest version release best practices\nlex: Kubernetes latest version release documentation\nlex: Kubernetes latest version release guide\nvec: understanding Kubernetes latest version release\nvec: how to Kubernetes latest version release\nhyde: This comprehensive guide covers everything you need to know about Kubernetes latest version release. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "React recent news November", "output": "lex: React recent news November best practices\nlex: React recent news November examples\nlex: React recent news November guide\nvec: guide for React recent news November\nvec: how to React recent news November\nhyde: This comprehensive guide covers everything you need to know about React recent news November. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "TypeScript recent news November", "output": "lex: TypeScript recent news November documentation\nlex: TypeScript recent news November examples\nlex: TypeScript recent news November guide\nvec: guide for TypeScript recent news November\nvec: understanding TypeScript recent news November\nhyde: This comprehensive guide covers everything you need to know about TypeScript recent news November. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "what changed in AI 2025", "output": "lex: what changed in AI 2025 guide\nlex: what changed in AI 2025 examples\nlex: what changed in AI 2025 tutorial\nvec: how to what changed in AI 2025\nvec: understanding what changed in AI 2025\nhyde: This comprehensive guide covers everything you need to know about what changed in AI 2025. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "Docker recent news December", "output": "lex: Docker recent news December guide\nlex: Docker recent news December documentation\nlex: Docker recent news December tutorial\nvec: guide for Docker recent news December\nvec: understanding Docker recent news December\nhyde: This comprehensive guide covers everything you need to know about Docker recent news December. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "TypeScript changelog 2026", "output": "lex: TypeScript changelog 2026 guide\nlex: TypeScript changelog 2026 tutorial\nlex: TypeScript changelog 2026 examples\nvec: understanding TypeScript changelog 2026\nvec: how to TypeScript changelog 2026\nhyde: This comprehensive guide covers everything you need to know about TypeScript changelog 2026. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "space exploration new features 2025", "output": "lex: space exploration new features 2025 examples\nlex: space exploration new features 2025 documentation\nlex: space exploration new features 2025 tutorial\nvec: how to space exploration new features 2025\nvec: understanding space exploration new features 2025\nhyde: This comprehensive guide covers everything you need to know about space exploration new features 2025. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "space exploration recent news December", "output": "lex: space exploration recent news December examples\nlex: space exploration recent news December guide\nlex: space exploration recent news December tutorial\nvec: guide for space exploration recent news December\nvec: learn about space exploration recent news December\nhyde: This comprehensive guide covers everything you need to know about space exploration recent news December. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "Shopify changelog 2026", "output": "lex: Shopify changelog 2026 tutorial\nlex: Shopify changelog 2026 examples\nlex: Shopify changelog 2026 documentation\nvec: understanding Shopify changelog 2026\nvec: complete Shopify changelog 2026 reference\nhyde: This comprehensive guide covers everything you need to know about Shopify changelog 2026. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "AWS recent news November", "output": "lex: AWS recent news November documentation\nlex: AWS recent news November guide\nlex: AWS recent news November examples\nvec: understanding AWS recent news November\nvec: complete AWS recent news November reference\nhyde: This comprehensive guide covers everything you need to know about AWS recent news November. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "AWS recent news October", "output": "lex: AWS recent news October tutorial\nlex: AWS recent news October examples\nlex: AWS recent news October documentation\nvec: learn about AWS recent news October\nvec: guide for AWS recent news October\nhyde: This comprehensive guide covers everything you need to know about AWS recent news October. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "Next.js recent news December", "output": "lex: Next.js recent news December guide\nlex: Next.js recent news December documentation\nlex: Next.js recent news December best practices\nvec: guide for Next.js recent news December\nvec: how to Next.js recent news December\nhyde: This comprehensive guide covers everything you need to know about Next.js recent news December. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "space exploration recent news November", "output": "lex: space exploration recent news November guide\nlex: space exploration recent news November examples\nlex: space exploration recent news November tutorial\nvec: guide for space exploration recent news November\nvec: learn about space exploration recent news November\nhyde: This comprehensive guide covers everything you need to know about space exploration recent news November. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "what changed in Python 2025", "output": "lex: what changed in Python 2025 guide\nlex: what changed in Python 2025 tutorial\nlex: what changed in Python 2025 documentation\nvec: learn about what changed in Python 2025\nvec: guide for what changed in Python 2025\nhyde: This comprehensive guide covers everything you need to know about what changed in Python 2025. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "GitHub recent news November", "output": "lex: GitHub recent news November documentation\nlex: GitHub recent news November tutorial\nlex: GitHub recent news November examples\nvec: complete GitHub recent news November reference\nvec: learn about GitHub recent news November\nhyde: This comprehensive guide covers everything you need to know about GitHub recent news November. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "machine learning changelog 2025", "output": "lex: machine learning changelog 2025 examples\nlex: machine learning changelog 2025 guide\nlex: machine learning changelog 2025 best practices\nvec: how to machine learning changelog 2025\nvec: learn about machine learning changelog 2025\nhyde: This comprehensive guide covers everything you need to know about machine learning changelog 2025. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "Next.js recent news November", "output": "lex: Next.js recent news November guide\nlex: Next.js recent news November tutorial\nlex: Next.js recent news November examples\nvec: complete Next.js recent news November reference\nvec: learn about Next.js recent news November\nhyde: This comprehensive guide covers everything you need to know about Next.js recent news November. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "latest AWS updates", "output": "lex: latest AWS updates best practices\nlex: latest AWS updates documentation\nlex: latest AWS updates examples\nvec: guide for latest AWS updates\nvec: complete latest AWS updates reference\nhyde: This comprehensive guide covers everything you need to know about latest AWS updates. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "recent Vue changes 2026", "output": "lex: recent Vue changes 2026 examples\nlex: recent Vue changes 2026 guide\nlex: recent Vue changes 2026 best practices\nvec: how to recent Vue changes 2026\nvec: complete recent Vue changes 2026 reference\nhyde: This comprehensive guide covers everything you need to know about recent Vue changes 2026. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "what changed in space exploration 2025", "output": "lex: what changed in space exploration 2025 documentation\nlex: what changed in space exploration 2025 examples\nlex: what changed in space exploration 2025 best practices\nvec: understanding what changed in space exploration 2025\nvec: learn about what changed in space exploration 2025\nhyde: This comprehensive guide covers everything you need to know about what changed in space exploration 2025. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "TypeScript new features 2026", "output": "lex: TypeScript new features 2026 best practices\nlex: TypeScript new features 2026 tutorial\nlex: TypeScript new features 2026 guide\nvec: learn about TypeScript new features 2026\nvec: complete TypeScript new features 2026 reference\nhyde: This comprehensive guide covers everything you need to know about TypeScript new features 2026. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "what changed in GitHub 2025", "output": "lex: what changed in GitHub 2025 guide\nlex: what changed in GitHub 2025 documentation\nlex: what changed in GitHub 2025 best practices\nvec: learn about what changed in GitHub 2025\nvec: complete what changed in GitHub 2025 reference\nhyde: This comprehensive guide covers everything you need to know about what changed in GitHub 2025. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "recent climate tech changes 2026", "output": "lex: recent climate tech changes 2026 best practices\nlex: recent climate tech changes 2026 guide\nlex: recent climate tech changes 2026 tutorial\nvec: how to recent climate tech changes 2026\nvec: learn about recent climate tech changes 2026\nhyde: This comprehensive guide covers everything you need to know about recent climate tech changes 2026. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "Python changelog 2026", "output": "lex: Python changelog 2026 documentation\nlex: Python changelog 2026 guide\nlex: Python changelog 2026 best practices\nvec: how to Python changelog 2026\nvec: understanding Python changelog 2026\nhyde: This comprehensive guide covers everything you need to know about Python changelog 2026. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "who is TDS motorsports", "output": "lex: who is TDS motorsports tutorial\nlex: who is TDS motorsports guide\nlex: who is TDS motorsports documentation\nvec: learn about who is TDS motorsports\nvec: guide for who is TDS motorsports\nhyde: This comprehensive guide covers everything you need to know about who is TDS motorsports. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "React hooks tutorial", "output": "lex: React hooks tutorial examples\nlex: React hooks tutorial documentation\nlex: React hooks tutorial tutorial\nvec: understanding React hooks tutorial\nvec: how to React hooks tutorial\nhyde: This comprehensive guide covers everything you need to know about React hooks tutorial. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "Docker container networking", "output": "lex: Docker container networking tutorial\nlex: Docker container networking examples\nlex: Docker container networking best practices\nvec: complete Docker container networking reference\nvec: understanding Docker container networking\nhyde: This comprehensive guide covers everything you need to know about Docker container networking. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "Kubernetes pod deployment", "output": "lex: Kubernetes pod deployment best practices\nlex: Kubernetes pod deployment documentation\nlex: Kubernetes pod deployment examples\nvec: how to Kubernetes pod deployment\nvec: complete Kubernetes pod deployment reference\nhyde: This comprehensive guide covers everything you need to know about Kubernetes pod deployment. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "AWS Lambda functions setup", "output": "lex: AWS Lambda functions setup documentation\nlex: AWS Lambda functions setup examples\nlex: AWS Lambda functions setup tutorial\nvec: learn about AWS Lambda functions setup\nvec: how to AWS Lambda functions setup\nhyde: This comprehensive guide covers everything you need to know about AWS Lambda functions setup. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "Stripe payment integration", "output": "lex: Stripe payment integration examples\nlex: Stripe payment integration tutorial\nlex: Stripe payment integration documentation\nvec: learn about Stripe payment integration\nvec: understanding Stripe payment integration\nhyde: This comprehensive guide covers everything you need to know about Stripe payment integration. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "GitHub Actions workflow", "output": "lex: GitHub Actions workflow guide\nlex: GitHub Actions workflow examples\nlex: GitHub Actions workflow documentation\nvec: understanding GitHub Actions workflow\nvec: guide for GitHub Actions workflow\nhyde: This comprehensive guide covers everything you need to know about GitHub Actions workflow. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "Vercel deployment guide", "output": "lex: Vercel deployment guide examples\nlex: Vercel deployment guide documentation\nlex: Vercel deployment guide tutorial\nvec: learn about Vercel deployment guide\nvec: understanding Vercel deployment guide\nhyde: This comprehensive guide covers everything you need to know about Vercel deployment guide. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "Supabase auth configuration", "output": "lex: Supabase auth configuration documentation\nlex: Supabase auth configuration tutorial\nlex: Supabase auth configuration best practices\nvec: understanding Supabase auth configuration\nvec: learn about Supabase auth configuration\nhyde: This comprehensive guide covers everything you need to know about Supabase auth configuration. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "Twilio SMS API", "output": "lex: Twilio SMS API guide\nlex: Twilio SMS API examples\nlex: Twilio SMS API documentation\nvec: how to Twilio SMS API\nvec: complete Twilio SMS API reference\nhyde: This comprehensive guide covers everything you need to know about Twilio SMS API. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "Datadog monitoring setup", "output": "lex: Datadog monitoring setup guide\nlex: Datadog monitoring setup best practices\nlex: Datadog monitoring setup examples\nvec: complete Datadog monitoring setup reference\nvec: understanding Datadog monitoring setup\nhyde: This comprehensive guide covers everything you need to know about Datadog monitoring setup. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "Sentry error tracking", "output": "lex: Sentry error tracking best practices\nlex: Sentry error tracking guide\nlex: Sentry error tracking documentation\nvec: understanding Sentry error tracking\nvec: learn about Sentry error tracking\nhyde: This comprehensive guide covers everything you need to know about Sentry error tracking. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "Terraform AWS provider", "output": "lex: Terraform AWS provider tutorial\nlex: Terraform AWS provider guide\nlex: Terraform AWS provider best practices\nvec: how to Terraform AWS provider\nvec: understanding Terraform AWS provider\nhyde: This comprehensive guide covers everything you need to know about Terraform AWS provider. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "Ansible playbook examples", "output": "lex: Ansible playbook examples best practices\nlex: Ansible playbook examples examples\nlex: Ansible playbook examples tutorial\nvec: understanding Ansible playbook examples\nvec: how to Ansible playbook examples\nhyde: This comprehensive guide covers everything you need to know about Ansible playbook examples. It includes practical examples, best practices, and troubleshooting tips for beginners and advanced users alike.", "category": "diverse_addon"}
+{"input": "ssh key authentication", "output": "lex: ssh key auth setup\nlex: ssh public private key pair\nlex: passwordless ssh login\nvec: how to set up ssh key-based authentication instead of passwords\nvec: step-by-step guide to generating and configuring ssh keys for secure server access\nhyde: Generate an SSH key pair with ssh-keygen -t ed25519. Copy the public key to ~/.ssh/authorized_keys on the remote server using ssh-copy-id. Ensure permissions are 700 for .ssh and 600 for authorized_keys."}
+{"input": "Python virtual environments", "output": "lex: python venv virtualenv\nlex: pip virtual environment setup\nlex: python isolated dependencies\nvec: how to create and activate a python virtual environment for project isolation\nvec: what is the difference between venv, virtualenv, and conda for managing python dependencies\nhyde: Create a virtual environment with python -m venv myenv, then activate it with source myenv/bin/activate on Unix or myenv\\Scripts\\activate on Windows. Install packages with pip and they stay isolated from your system Python."}
+{"input": "git merge conflicts", "output": "lex: git merge conflict resolve\nlex: git conflict markers HEAD\nlex: resolving merge conflicts\nvec: how to resolve merge conflicts in git when two branches modify the same lines\nvec: what do the conflict markers mean and how do you manually edit conflicted files\nhyde: Git marks conflicts with <<<<<<< HEAD, =======, and >>>>>>> branch-name. Edit the file to keep the code you want, remove the markers, then git add the file and commit. Use git mergetool for a visual diff interface."}
+{"input": "TCP vs UDP", "output": "lex: tcp udp protocol difference\nlex: tcp reliable udp fast\nlex: connection-oriented vs connectionless\nvec: what are the key differences between TCP and UDP network protocols\nvec: when should you use TCP versus UDP for application networking\nhyde: TCP provides reliable, ordered delivery with acknowledgments and retransmission. UDP is faster but unreliable—packets may arrive out of order or not at all. Use TCP for web, email, file transfer. Use UDP for video streaming, gaming, DNS where speed matters more than reliability."}
+{"input": "Docker compose volumes", "output": "lex: docker compose volume mount\nlex: docker persistent storage volumes\nlex: compose yaml volumes section\nvec: how to configure persistent volumes in docker compose for data that survives container restarts\nvec: what is the difference between bind mounts and named volumes in docker compose\nhyde: In docker-compose.yml, define volumes under the top-level volumes key and reference them in services. Named volumes persist data in Docker's storage. Bind mounts map host directories directly: volumes: - ./data:/app/data for development, - myvolume:/app/data for production."}
+{"input": "regex lookahead lookbehind", "output": "lex: regex lookahead assertion\nlex: regex lookbehind positive negative\nlex: zero-width assertions regex\nvec: how do lookahead and lookbehind assertions work in regular expressions\nvec: what is the syntax for positive and negative lookahead and lookbehind in regex\nhyde: Lookahead (?=pattern) matches a position followed by pattern without consuming it. Negative lookahead (?!pattern) matches where pattern doesn't follow. Lookbehind (?<=pattern) matches a position preceded by pattern. Example: \\d+(?= dollars) matches numbers followed by 'dollars'."}
+{"input": "Kubernetes secrets management", "output": "lex: kubernetes secrets k8s\nlex: k8s secret yaml base64\nlex: kubectl create secret\nvec: how to create and use secrets in kubernetes for sensitive configuration data\nvec: what are best practices for managing secrets in kubernetes clusters\nhyde: Create secrets with kubectl create secret generic mysecret --from-literal=password=abc123. Reference in pods via env valueFrom secretKeyRef or volume mounts. Secrets are base64 encoded, not encrypted—use sealed-secrets or external secret managers like Vault for production."}
+{"input": "CORS errors fix", "output": "lex: cors error fix browser\nlex: access-control-allow-origin header\nlex: cors preflight request\nvec: how to fix CORS errors when making API requests from a web browser\nvec: what causes cross-origin resource sharing errors and how do you configure the server to allow them\nhyde: CORS errors occur when a browser blocks requests to a different origin. Fix by adding Access-Control-Allow-Origin headers on the server. For Express: app.use(cors()). For preflight requests, handle OPTIONS and return Access-Control-Allow-Methods and Access-Control-Allow-Headers."}
+{"input": "PostgreSQL indexes explain", "output": "lex: postgresql index explain analyze\nlex: postgres btree index performance\nlex: create index postgresql\nvec: how to use EXPLAIN ANALYZE to understand query performance and index usage in postgresql\nvec: what types of indexes does postgresql support and when should you use each\nhyde: Run EXPLAIN ANALYZE SELECT... to see the query plan and actual execution time. Look for Seq Scan on large tables—add an index with CREATE INDEX idx_name ON table(column). B-tree indexes work for equality and range queries, GIN for full-text search and arrays, GiST for geometric data."}
+{"input": "JWT token refresh", "output": "lex: jwt refresh token flow\nlex: access token refresh token\nlex: jwt token expiration renewal\nvec: how does the jwt refresh token flow work for maintaining user sessions\nvec: what is the difference between access tokens and refresh tokens in jwt authentication\nhyde: Access tokens are short-lived (15 min) and sent with each request. Refresh tokens are long-lived (days/weeks) and stored securely. When the access token expires, send the refresh token to /auth/refresh to get a new access token without re-authenticating."}
+{"input": "React useEffect cleanup", "output": "lex: react useeffect cleanup function\nlex: useeffect return cleanup\nlex: react unmount cleanup\nvec: how to properly clean up side effects in react useeffect to prevent memory leaks\nvec: when does the useeffect cleanup function run and what should you clean up\nhyde: Return a cleanup function from useEffect to run before the component unmounts or before the effect re-runs. Use it to cancel subscriptions, clear timers, and abort fetch requests. Example: useEffect(() => { const id = setInterval(fn, 1000); return () => clearInterval(id); }, []);"}
+{"input": "nginx reverse proxy", "output": "lex: nginx reverse proxy config\nlex: nginx proxy_pass upstream\nlex: nginx load balancer setup\nvec: how to configure nginx as a reverse proxy to forward requests to backend servers\nvec: what nginx directives do you need for a basic reverse proxy configuration\nhyde: In nginx.conf, use proxy_pass inside a location block: location /api { proxy_pass http://localhost:3000; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; }. Add upstream blocks for load balancing across multiple backend servers."}
+{"input": "systemd service file", "output": "lex: systemd service unit file\nlex: systemctl enable start service\nlex: systemd service configuration\nvec: how to create a systemd service file to run an application as a linux daemon\nvec: what are the essential sections and directives in a systemd unit file\nhyde: Create /etc/systemd/system/myapp.service with [Unit] Description, [Service] ExecStart=/path/to/app, Restart=always, User=appuser, and [Install] WantedBy=multi-user.target. Run systemctl daemon-reload, then systemctl enable --now myapp."}
+{"input": "websocket vs http", "output": "lex: websocket http difference\nlex: websocket persistent connection\nlex: http polling vs websocket\nvec: what are the differences between websockets and http for real-time communication\nvec: when should you use websockets instead of http long polling or server-sent events\nhyde: HTTP is request-response: client asks, server answers, connection closes. WebSocket upgrades HTTP to a persistent bidirectional connection. Use WebSocket for chat, live updates, gaming. Use SSE for server-to-client only streaming. HTTP polling wastes bandwidth with repeated requests."}
+{"input": "SQL injection prevention", "output": "lex: sql injection prevent parameterized\nlex: prepared statements sql injection\nlex: sql injection sanitize input\nvec: how to prevent sql injection attacks in web applications\nvec: why are parameterized queries and prepared statements important for database security\nhyde: Never concatenate user input into SQL strings. Use parameterized queries: cursor.execute('SELECT * FROM users WHERE id = ?', (user_id,)). ORMs like SQLAlchemy handle this automatically. Validate and sanitize input, but parameterization is the primary defense."}
+{"input": "TypeScript generics", "output": "lex: typescript generics type parameter\nlex: typescript generic function interface\nlex: ts generics constraints extends\nvec: how to use generics in typescript to write reusable type-safe functions and classes\nvec: what is the syntax for generic type parameters and constraints in typescript\nhyde: Generics let you write flexible, reusable code while maintaining type safety. Declare with angle brackets: function identity<T>(arg: T): T { return arg; }. Add constraints with extends: function getLength<T extends { length: number }>(item: T): number { return item.length; }."}
+{"input": "OAuth 2.0 authorization code flow", "output": "lex: oauth2 authorization code flow\nlex: oauth authorization code grant\nlex: oauth2 pkce code verifier\nvec: how does the oauth 2.0 authorization code flow work for secure third-party authentication\nvec: what are the steps in the oauth authorization code grant and why is pkce recommended\nhyde: User clicks login, redirected to auth server with client_id and redirect_uri. User authenticates, gets authorization code. App exchanges code for tokens at token endpoint. PKCE adds code_verifier/code_challenge to prevent interception attacks—required for public clients."}
+{"input": "Redis caching strategies", "output": "lex: redis cache strategy pattern\nlex: redis cache aside through\nlex: redis ttl expiration caching\nvec: what are the common caching strategies when using redis for application performance\nvec: how do you implement cache-aside, write-through, and write-behind patterns with redis\nhyde: Cache-aside: app checks Redis first, fetches from DB on miss, writes to cache. Write-through: writes go to cache and DB together. Write-behind: writes to cache, async sync to DB. Set TTL with EXPIRE to prevent stale data. Use SETEX for atomic set-with-expiry."}
+{"input": "GraphQL vs REST", "output": "lex: graphql rest api comparison\nlex: graphql query flexibility\nlex: rest vs graphql tradeoffs\nvec: what are the main differences between graphql and rest api design approaches\nvec: when should you choose graphql over rest for your api architecture\nhyde: REST uses fixed endpoints returning predefined data shapes. GraphQL uses one endpoint where clients specify exactly what fields they need, reducing over-fetching. REST is simpler, better cached. GraphQL excels for mobile apps, complex data requirements, and avoiding multiple round trips."}
+{"input": "linux file permissions chmod", "output": "lex: linux chmod file permissions\nlex: unix rwx permission bits\nlex: chmod 755 644 meaning\nvec: how do linux file permissions work and how do you change them with chmod\nvec: what do the rwx permission bits mean for owner, group, and others\nhyde: Permissions are rwx for read, write, execute. Three groups: owner, group, others. chmod 755 means rwxr-xr-x (owner full, others read+execute). chmod 644 means rw-r--r-- (owner read+write, others read only). Use chmod +x to add execute permission."}
+{"input": "async await error handling", "output": "lex: async await try catch\nlex: javascript promise error handling\nlex: async function exception handling\nvec: how to properly handle errors in javascript async await functions\nvec: what happens when an async function throws and how do you catch those errors\nhyde: Wrap await calls in try-catch blocks: try { const data = await fetchData(); } catch (err) { console.error(err); }. Unhandled rejections in async functions become unhandled promise rejections. For multiple awaits, catch individually or use Promise.allSettled to handle partial failures."}
+{"input": "Elasticsearch query DSL", "output": "lex: elasticsearch query dsl\nlex: elasticsearch bool must should\nlex: es full text search query\nvec: how to write search queries using elasticsearch query dsl syntax\nvec: what are the common query types in elasticsearch like match, term, and bool queries\nhyde: Elasticsearch Query DSL uses JSON. Match query for full-text: {match: {title: 'search'}}. Term for exact: {term: {status: 'published'}}. Bool combines queries: {bool: {must: [...], should: [...], filter: [...], must_not: [...]}}. Filter context skips scoring for faster filtering."}
+{"input": "terraform state management", "output": "lex: terraform state file backend\nlex: terraform remote state s3\nlex: tfstate locking management\nvec: how to manage terraform state files and what are the best practices for team collaboration\nvec: why should you use remote state backends in terraform and how do you configure them\nhyde: Store state remotely in S3, GCS, or Terraform Cloud—never commit tfstate to git. Configure backend in terraform { backend \"s3\" { bucket = \"my-state\", key = \"prod.tfstate\", region = \"us-east-1\", dynamodb_table = \"tf-locks\" } }. DynamoDB provides state locking to prevent concurrent modifications."}
+{"input": "monorepo vs polyrepo", "output": "lex: monorepo polyrepo comparison\nlex: monorepo benefits drawbacks\nlex: single repo multiple repos\nvec: what are the tradeoffs between using a monorepo versus multiple repositories\nvec: when does a monorepo make sense and what tools help manage large monorepos\nhyde: Monorepos keep all code in one repository—easier atomic changes across packages, shared tooling, consistent versioning. Polyrepos give teams autonomy, simpler CI, clearer ownership. Use monorepos for tightly coupled code. Tools: Nx, Turborepo, Lerna, Bazel for build orchestration."}
+{"input": "prometheus alerting rules", "output": "lex: prometheus alerting rules config\nlex: prometheus alertmanager rules\nlex: promql alert expressions\nvec: how to write prometheus alerting rules to notify on metric thresholds\nvec: what is the syntax for prometheus alert rules and how do they integrate with alertmanager\nhyde: Define rules in YAML: groups: - name: example rules: - alert: HighErrorRate expr: rate(http_errors_total[5m]) > 0.1 for: 5m labels: severity: critical annotations: summary: High error rate. Prometheus evaluates rules periodically and sends firing alerts to Alertmanager for routing and deduplication."}
+{"input": "CSS flexbox centering", "output": "lex: css flexbox center align\nlex: flexbox justify-content align-items\nlex: css center div flexbox\nvec: how to center elements horizontally and vertically using css flexbox\nvec: what flexbox properties do you use to center content in a container\nhyde: On the container, set display: flex; justify-content: center; align-items: center;. justify-content handles the main axis (horizontal by default), align-items handles the cross axis. Add height: 100vh to center within the viewport. For a single item, margin: auto also works inside flex containers."}
+{"input": "database connection pooling", "output": "lex: database connection pool\nlex: connection pooling performance\nlex: db pool size configuration\nvec: what is database connection pooling and why does it improve application performance\nvec: how do you configure connection pool size for optimal database throughput\nhyde: Opening database connections is expensive. Connection pools maintain reusable connections. Set pool size based on: pool_size = (core_count * 2) + effective_spindle_count. Too small starves the app, too large overwhelms the database. Popular libraries: HikariCP for Java, pgbouncer for PostgreSQL."}
+{"input": "kafka consumer groups", "output": "lex: kafka consumer group offset\nlex: kafka partition consumer rebalance\nlex: kafka consumer group id\nvec: how do kafka consumer groups work for parallel message processing\nvec: what happens during consumer group rebalancing and how are partitions assigned\nhyde: Consumers with the same group.id share partitions—each partition is consumed by only one consumer in the group. Adding consumers triggers rebalancing. If consumers > partitions, some idle. Offsets track progress per partition. Use enable.auto.commit=false for exactly-once semantics with manual commits."}
+{"input": "vim search replace", "output": "lex: vim search replace substitute\nlex: vim sed command :%s\nlex: vim find replace regex\nvec: how to search and replace text in vim using the substitute command\nvec: what is the syntax for vim search and replace with regular expressions and flags\nhyde: Use :%s/old/new/g to replace all occurrences in the file. % means all lines, g means global (all matches per line). Add c for confirmation: :%s/old/new/gc. Use \\< and \\> for word boundaries. & in replacement refers to the matched text. Use :s for current line only."}
+{"input": "http status codes meaning", "output": "lex: http status codes list\nlex: http 200 400 500 codes\nlex: rest api status codes\nvec: what do the common http status codes mean and when should you use each\nvec: how do you choose the right http status code for api responses\nhyde: 200 OK success, 201 Created for POST, 204 No Content for DELETE. 400 Bad Request for invalid input, 401 Unauthorized for auth required, 403 Forbidden for insufficient permissions, 404 Not Found. 500 Internal Server Error for unexpected failures, 503 Service Unavailable for temporary issues."}
+{"input": "binary search algorithm", "output": "lex: binary search algorithm\nlex: binary search sorted array\nlex: binary search time complexity\nvec: how does the binary search algorithm work and what is its time complexity\nvec: how do you implement binary search to find an element in a sorted array\nhyde: Binary search halves the search space each iteration. Compare target with middle element: if smaller, search left half; if larger, search right. O(log n) time complexity. Requires sorted input. Watch for integer overflow in mid calculation: use low + (high - low) / 2 instead of (low + high) / 2."}
+{"input": "git rebase interactive", "output": "lex: git rebase interactive squash\nlex: git rebase -i edit commits\nlex: git squash commits rebase\nvec: how to use git interactive rebase to edit, squash, and reorder commits\nvec: what are the commands available in git rebase interactive mode\nhyde: Run git rebase -i HEAD~5 to edit the last 5 commits. In the editor, change 'pick' to: squash (s) to combine with previous, reword (r) to edit message, edit (e) to amend, drop (d) to remove. Save and follow prompts. Never rebase commits already pushed to shared branches."}
+{"input": "environment variables docker", "output": "lex: docker environment variables\nlex: docker env file compose\nlex: docker run -e env vars\nvec: how to pass environment variables to docker containers\nvec: what are the different ways to set environment variables in docker and docker compose\nhyde: Use -e flag: docker run -e DB_HOST=localhost myapp. In docker-compose.yml: environment: - DB_HOST=localhost or env_file: - .env. For secrets, prefer docker secrets or mount files. Variables in Dockerfile with ENV persist in the image; runtime -e overrides them."}
+{"input": "rate limiting algorithms", "output": "lex: rate limiting algorithm api\nlex: token bucket leaky bucket\nlex: rate limit sliding window\nvec: what algorithms are used for api rate limiting and how do they differ\nvec: how do token bucket and sliding window rate limiting algorithms work\nhyde: Token bucket: bucket fills at fixed rate, requests consume tokens, rejected when empty—allows bursts. Leaky bucket: requests queue, processed at fixed rate—smooths traffic. Sliding window: count requests in rolling time window. Fixed window has boundary issues; sliding window log is precise but memory-heavy."}
+{"input": "blue green deployment", "output": "lex: blue green deployment strategy\nlex: zero downtime deployment\nlex: blue green kubernetes rollout\nvec: what is blue green deployment and how does it enable zero downtime releases\nvec: how do you implement blue green deployments in kubernetes or cloud environments\nhyde: Blue-green runs two identical environments. Blue is live, green has the new version. Test green thoroughly, then switch the load balancer. Instant rollback by switching back to blue. In Kubernetes, use two deployments with a service selector update, or Argo Rollouts for automated blue-green."}
+{"input": "memory leak debugging", "output": "lex: memory leak debug profiler\nlex: memory leak detection tools\nlex: heap dump memory analysis\nvec: how to find and fix memory leaks in applications\nvec: what tools and techniques help identify memory leaks in different programming languages\nhyde: Use heap profilers: Chrome DevTools for JavaScript, VisualVM or MAT for Java, Valgrind for C/C++, tracemalloc for Python. Take heap snapshots before and after operations, compare retained objects. Common causes: forgotten event listeners, closures holding references, unbounded caches, circular references."}
+{"input": "Stripe webhook verification", "output": "lex: stripe webhook signature verify\nlex: stripe webhook endpoint secret\nlex: stripe event verification\nvec: how to verify stripe webhook signatures to ensure events are authentic\nvec: what is the correct way to handle and validate incoming stripe webhook events\nhyde: Stripe signs webhooks with your endpoint secret. Verify using stripe.webhooks.constructEvent(body, sig, endpointSecret). Use the raw request body, not parsed JSON. Return 200 quickly, process async. Handle event types like checkout.session.completed. Store endpoint secret securely, rotate if compromised."}
+{"input": "React context vs Redux", "output": "lex: react context redux comparison\nlex: useContext vs redux state\nlex: react state management choice\nvec: when should you use react context versus redux for state management\nvec: what are the tradeoffs between react context api and redux for global state\nhyde: Context is built-in, simple for low-frequency updates like themes and auth. Redux adds boilerplate but provides devtools, middleware, time-travel debugging, predictable updates. Context re-renders all consumers on any change; Redux allows granular subscriptions. Use Context for simple cases, Redux for complex state logic."}
+{"input": "DNS records explained", "output": "lex: dns records types a cname mx\nlex: dns configuration records\nlex: domain name system records\nvec: what are the different types of dns records and what does each one do\nvec: how do you configure dns records for a domain including a, cname, mx, and txt records\nhyde: A record maps domain to IPv4 address. AAAA for IPv6. CNAME aliases one domain to another (can't be on root domain). MX for mail servers with priority. TXT for verification and SPF/DKIM. NS delegates to nameservers. TTL controls caching duration. Changes propagate based on previous TTL."}
+{"input": "tmux session management", "output": "lex: tmux session window pane\nlex: tmux attach detach session\nlex: tmux commands shortcuts\nvec: how to create and manage tmux sessions for persistent terminal workflows\nvec: what are the essential tmux commands for session, window, and pane management\nhyde: Start session: tmux new -s name. Detach: Ctrl-b d. Reattach: tmux attach -t name. New window: Ctrl-b c. Split pane: Ctrl-b % (vertical), Ctrl-b \" (horizontal). Navigate panes: Ctrl-b arrow. List sessions: tmux ls. Kill session: tmux kill-session -t name. Sessions persist after disconnect."}
+{"input": "utf-8 encoding explained", "output": "lex: utf-8 unicode encoding\nlex: utf8 character encoding bytes\nlex: unicode utf-8 ascii difference\nvec: how does utf-8 encoding work and why is it the standard for text\nvec: what is the relationship between unicode and utf-8 and how are characters encoded as bytes\nhyde: UTF-8 encodes Unicode code points as 1-4 bytes. ASCII characters (0-127) use 1 byte, compatible with ASCII. Higher code points use more bytes with leading bits indicating length. UTF-8 is self-synchronizing and space-efficient for Latin text. Always specify encoding explicitly when reading/writing files."}
+{"input": "microservices communication patterns", "output": "lex: microservices communication patterns\nlex: sync async microservice calls\nlex: event driven microservices\nvec: what are the common communication patterns between microservices\nvec: when should microservices use synchronous rest calls versus asynchronous messaging\nhyde: Sync (REST/gRPC): simple, immediate response, but creates coupling and cascade failures. Async (message queues, events): decoupled, resilient, eventual consistency. Use sync for queries needing immediate response. Use async for commands, notifications, cross-service workflows. Event sourcing and CQRS for complex domains."}
+{"input": "shell script best practices", "output": "lex: bash script best practices\nlex: shell script error handling\nlex: bash scripting guidelines\nvec: what are the best practices for writing reliable and maintainable shell scripts\nvec: how do you handle errors and edge cases properly in bash scripts\nhyde: Start with #!/usr/bin/env bash and set -euo pipefail. Use shellcheck for linting. Quote variables: \"$var\". Use [[ ]] for tests. Handle errors with trap. Use functions for reusability. Avoid parsing ls output—use globs. Prefer printf over echo. Use local variables in functions. Add -- before filenames from user input."}
+{"input": "load balancer health checks", "output": "lex: load balancer health check\nlex: health check endpoint liveness\nlex: lb health probe configuration\nvec: how do load balancer health checks work and why are they important\nvec: what should a health check endpoint return and how do you configure health check intervals\nhyde: Load balancers probe backend instances to route traffic only to healthy ones. Health endpoint should check critical dependencies (database, cache) and return 200 if healthy, 503 if not. Configure interval (10-30s), timeout (5s), and threshold (2-3 failures). Include /health and /ready endpoints for Kubernetes liveness and readiness."}
+{"input": "certificate ssl tls renewal", "output": "lex: ssl tls certificate renewal\nlex: lets encrypt certbot renew\nlex: https certificate expiration\nvec: how to renew ssl tls certificates before they expire\nvec: what is the process for automated certificate renewal with lets encrypt and certbot\nhyde: Let's Encrypt certificates expire in 90 days. Certbot auto-renews via cron or systemd timer: certbot renew runs twice daily, renews within 30 days of expiry. Test with --dry-run. For other CAs, set calendar reminders. Check expiration: openssl s_client -connect domain:443 | openssl x509 -noout -dates."}
+{"input": "python decorators explained", "output": "lex: python decorator function\nlex: python @ decorator syntax\nlex: python wrapper decorator\nvec: how do python decorators work and what is the syntax for creating them\nvec: what are common use cases for decorators in python like logging, caching, and authentication\nhyde: Decorators wrap functions to extend behavior. @decorator before def is syntactic sugar for func = decorator(func). A decorator is a function taking a function and returning a new function. Use functools.wraps to preserve metadata. Common uses: @lru_cache for memoization, @login_required for auth, timing/logging wrappers."}
+{"input": "cap theorem database", "output": "lex: cap theorem distributed database\nlex: consistency availability partition tolerance\nlex: cap theorem tradeoffs\nvec: what is the cap theorem and how does it apply to distributed database design\nvec: how do different databases choose between consistency and availability during network partitions\nhyde: CAP theorem: distributed systems can guarantee only 2 of 3—Consistency (all nodes see same data), Availability (requests get responses), Partition tolerance (survives network splits). During partitions, choose CP (reject requests for consistency, like MongoDB) or AP (serve potentially stale data, like Cassandra). PACELC extends CAP for normal operation tradeoffs."}
+{"input": "garbage collection tuning", "output": "lex: garbage collection gc tuning\nlex: jvm gc heap memory\nlex: gc pause time optimization\nvec: how to tune garbage collection for better application performance\nvec: what gc algorithms are available and how do you choose gc settings for low latency\nhyde: For JVM, G1GC is default, good balance of throughput and pause times. ZGC and Shenandoah offer sub-millisecond pauses for low-latency needs. Tune heap size: -Xms and -Xmx same to avoid resizing. Monitor with gc logs: -Xlog:gc*. Reduce allocation rate by reusing objects and avoiding unnecessary autoboxing."}
+{"input": "feature flags implementation", "output": "lex: feature flags toggles\nlex: feature flag implementation\nlex: gradual rollout feature flags\nvec: how to implement feature flags for gradual rollouts and a/b testing\nvec: what are the best practices for managing feature flags in production\nhyde: Feature flags decouple deployment from release. Simple: if (featureEnabled('new-checkout')) { ... }. Store flags in config, database, or services like LaunchDarkly. Use for gradual rollout (1% -> 10% -> 100%), A/B tests, kill switches. Clean up old flags to prevent technical debt. Log flag evaluations for debugging."}
+{"input": "apache kafka partitions", "output": "lex: kafka partitions topics\nlex: kafka partition key ordering\nlex: kafka partition count scaling\nvec: how do kafka partitions work and how do they affect scalability and message ordering\nvec: how do you choose the right number of partitions for a kafka topic\nhyde: Partitions enable parallelism—each partition is consumed by one consumer in a group. Messages with same key go to same partition, preserving order per key. More partitions = more throughput but more overhead. Start with partitions = max(expected throughput / partition throughput, consumer count). Can't reduce partitions, only increase."}
+{"input": "cron job syntax", "output": "lex: cron job syntax schedule\nlex: crontab expression format\nlex: cron schedule examples\nvec: how to write cron expressions to schedule jobs at specific times\nvec: what does each field in a crontab entry mean and what are common scheduling patterns\nhyde: Cron format: minute hour day-of-month month day-of-week command. */5 * * * * runs every 5 minutes. 0 2 * * * runs daily at 2 AM. 0 0 * * 0 runs weekly on Sunday. Use crontab -e to edit. Tools like crontab.guru help build expressions. Consider timezone—cron uses system time."}
+{"input": "GPG key signing", "output": "lex: gpg key sign verify\nlex: gpg signature git commits\nlex: pgp key signing encryption\nvec: how to use gpg keys for signing and verifying files and git commits\nvec: what is the process for creating gpg keys and configuring git to sign commits\nhyde: Generate key: gpg --full-generate-key. List keys: gpg --list-keys. Sign file: gpg --sign file.txt. Verify: gpg --verify file.txt.gpg. For git: git config --global user.signingkey KEYID, git config --global commit.gpgsign true. Export public key for GitHub: gpg --armor --export KEYID."}
+{"input": "api versioning strategies", "output": "lex: api versioning strategy\nlex: rest api version url header\nlex: api backward compatibility\nvec: what are the different strategies for versioning rest apis\nvec: how do you maintain backward compatibility when evolving an api\nhyde: URL versioning (/v1/users) is explicit, easy to route. Header versioning (Accept: application/vnd.api+json;version=1) keeps URLs clean. Query param (?version=1) is simple but pollutes URLs. Prefer additive changes—new fields don't break clients. Deprecate gracefully with sunset headers and migration guides."}
+{"input": "mutex vs semaphore", "output": "lex: mutex semaphore difference\nlex: mutex lock synchronization\nlex: semaphore counting binary\nvec: what is the difference between a mutex and a semaphore in concurrent programming\nvec: when should you use a mutex versus a semaphore for thread synchronization\nhyde: Mutex is a binary lock owned by one thread—used for mutual exclusion protecting shared resources. Semaphore is a counter allowing N concurrent accesses—used for limiting concurrency (connection pools, rate limiting). Mutex has ownership (same thread must unlock), semaphore doesn't. Use mutex for critical sections, semaphore for resource counting."}
+{"input": "json schema validation", "output": "lex: json schema validation\nlex: jsonschema validator python\nlex: json schema types required\nvec: how to use json schema to validate the structure of json data\nvec: what are the common json schema keywords for defining types, required fields, and constraints\nhyde: JSON Schema defines expected structure. Key properties: type (string, number, object, array), properties for object fields, required array for mandatory fields, items for array elements. Validators: ajv (JS), jsonschema (Python). Use for API request validation, config file validation, documentation generation."}
+{"input": "CI CD pipeline stages", "output": "lex: ci cd pipeline stages\nlex: continuous integration deployment\nlex: build test deploy pipeline\nvec: what are the typical stages in a ci cd pipeline\nvec: how do you design a continuous integration and deployment pipeline for reliable releases\nhyde: Typical stages: 1) Source—trigger on commit, 2) Build—compile, bundle, create artifacts, 3) Test—unit, integration, e2e tests, 4) Security scan—SAST, dependency audit, 5) Deploy to staging, 6) Acceptance tests, 7) Deploy to production. Use parallelization for speed. Gate deployments on test pass. Implement rollback mechanisms."}
+{"input": "event sourcing pattern", "output": "lex: event sourcing pattern\nlex: event store append only log\nlex: cqrs event sourcing\nvec: what is event sourcing and how does it differ from traditional crud data storage\nvec: how do you implement event sourcing and what are its benefits and challenges\nhyde: Event sourcing stores state changes as immutable events rather than current state. Account balance is sum of all Deposit and Withdrawal events. Benefits: full audit trail, time travel, replay for debugging. Challenges: eventual consistency, event schema evolution, increased complexity. Often paired with CQRS—separate read models built from event stream."}
+{"input": "IPv4 vs IPv6", "output": "lex: ipv4 ipv6 difference\nlex: ipv6 address format\nlex: ipv4 exhaustion ipv6 transition\nvec: what are the key differences between ipv4 and ipv6 addressing\nvec: why is ipv6 necessary and how does the transition from ipv4 work\nhyde: IPv4 uses 32-bit addresses (4 billion), exhausted in 2011. IPv6 uses 128-bit addresses (340 undecillion), formatted as eight hex groups: 2001:0db8::1. IPv6 eliminates NAT need, has built-in IPsec. Transition via dual-stack (both protocols) or tunneling. Check IPv6 support: curl -6 ipv6.google.com."}
+{"input": "dependency injection benefits", "output": "lex: dependency injection di pattern\nlex: di inversion of control ioc\nlex: dependency injection testing\nvec: what is dependency injection and why does it improve code maintainability\nvec: how does dependency injection make unit testing easier\nhyde: Dependency injection provides dependencies from outside rather than creating them internally. Class receives DatabaseService via constructor instead of instantiating it. Benefits: loose coupling, easy testing with mocks, flexible configuration. Instead of new EmailService(), inject interface IEmailService—swap implementations without changing consumer code."}
+{"input": "S3 bucket policy", "output": "lex: s3 bucket policy permissions\nlex: aws s3 iam policy json\nlex: s3 bucket access control\nvec: how to write an s3 bucket policy to control access permissions\nvec: what is the difference between s3 bucket policies and iam policies for access control\nhyde: S3 bucket policies are resource-based JSON policies attached to buckets. Grant public read: {\"Statement\":[{\"Effect\":\"Allow\",\"Principal\":\"*\",\"Action\":\"s3:GetObject\",\"Resource\":\"arn:aws:s3:::bucket/*\"}]}. IAM policies attach to users/roles. Use bucket policies for cross-account access, IAM for user-specific permissions. Block public access settings override policies."}
+{"input": "idempotency api design", "output": "lex: idempotency api design\nlex: idempotent request key\nlex: api retry safety idempotency\nvec: what is idempotency in api design and why is it important for reliability\nvec: how do you implement idempotent endpoints to handle duplicate requests safely\nhyde: Idempotent operations produce the same result regardless of how many times called. GET, PUT, DELETE are naturally idempotent. POST needs idempotency keys: client sends unique key, server stores result, returns cached result on retry. Store keys with TTL (24h). Critical for payment APIs—prevents double charges on network retry."}
+{"input": "awk command examples", "output": "lex: awk command examples\nlex: awk print column field\nlex: awk text processing\nvec: how to use awk for text processing and extracting columns from files\nvec: what are common awk patterns and commands for parsing structured text\nhyde: awk processes text line by line, splitting into fields. Print second column: awk '{print $2}' file. Custom delimiter: awk -F',' '{print $1}'. Pattern match: awk '/error/ {print}'. Sum column: awk '{sum+=$3} END {print sum}'. Variables: awk -v threshold=100 '$3 > threshold'. Built-in vars: NF (fields), NR (line number)."}
+{"input": "database sharding strategies", "output": "lex: database sharding horizontal\nlex: shard key partition strategy\nlex: database horizontal scaling\nvec: what is database sharding and what strategies exist for partitioning data\nvec: how do you choose a shard key and what are the tradeoffs of different sharding approaches\nhyde: Sharding distributes data across multiple databases. Strategies: range-based (user IDs 1-1M on shard 1), hash-based (consistent hashing), directory-based (lookup table). Choose shard key with high cardinality, even distribution, query locality. Avoid hot spots—don't shard by timestamp. Cross-shard queries are expensive. Consider sharding only after vertical scaling exhausted."}
+{"input": "jq json parsing", "output": "lex: jq json parsing command\nlex: jq filter select query\nlex: jq command line json\nvec: how to use jq to parse and transform json data from the command line\nvec: what are the common jq filters for extracting and manipulating json fields\nhyde: jq is a command-line JSON processor. Extract field: jq '.name' file.json. Array element: jq '.[0]'. Nested: jq '.users[].email'. Filter: jq '.items[] | select(.price > 100)'. Transform: jq '{name: .title, count: .items | length}'. Raw output: jq -r. Pipe curl output: curl api | jq '.data'."}
+{"input": "compile time vs runtime errors", "output": "lex: compile time runtime error difference\nlex: static dynamic type checking\nlex: compilation errors vs exceptions\nvec: what is the difference between compile time and runtime errors in programming\nvec: why are compile time errors generally preferable to runtime errors for code reliability\nhyde: Compile time errors occur during compilation before code runs—syntax errors, type mismatches in statically typed languages. Runtime errors occur during execution—null pointer, division by zero, file not found. Compile time errors are caught early, cheaper to fix. Static typing and linters catch more at compile time. TypeScript catches errors that JavaScript defers to runtime."}
+{"input": "content delivery network cdn", "output": "lex: cdn content delivery network\nlex: cdn caching edge servers\nlex: cloudflare cdn setup\nvec: how does a content delivery network cdn improve website performance\nvec: what content should you serve through a cdn and how do you configure cache headers\nhyde: CDN caches content at edge servers geographically close to users, reducing latency. Serve static assets (images, CSS, JS) through CDN. Set Cache-Control headers: max-age=31536000 for versioned assets, shorter for dynamic content. Configure origin pulls, purge cache on deploys. Popular CDNs: Cloudflare, CloudFront, Fastly, Akamai."}
+{"input": "circuit breaker pattern", "output": "lex: circuit breaker pattern\nlex: circuit breaker resilience\nlex: hystrix resilience4j circuit\nvec: what is the circuit breaker pattern and how does it improve system resilience\nvec: how do you implement circuit breakers to prevent cascade failures in distributed systems\nhyde: Circuit breaker prevents repeated calls to failing services. States: Closed (normal), Open (failing, reject calls immediately), Half-Open (test recovery). After N failures, opens circuit. After timeout, allows test request. If succeeds, closes. Prevents cascade failures, provides fallbacks. Libraries: resilience4j (Java), polly (.NET), opossum (Node.js)."}
+{"input": "mac address vs ip address", "output": "lex: mac address ip address difference\nlex: mac address layer 2 hardware\nlex: ip vs mac network address\nvec: what is the difference between a mac address and an ip address in networking\nvec: how do mac addresses and ip addresses work together for network communication\nhyde: MAC address is hardware identifier burned into NIC, 48 bits (AA:BB:CC:DD:EE:FF), used in Layer 2 (local network). IP address is logical, assigned by network, used in Layer 3 (routing). ARP maps IP to MAC on local network. IP gets packets between networks, MAC delivers within a network segment. MAC is permanent, IP changes with network."}
+{"input": "unit test vs integration test", "output": "lex: unit test integration test difference\nlex: testing pyramid unit integration e2e\nlex: unit test isolation mocking\nvec: what is the difference between unit tests and integration tests\nvec: how should you balance unit tests and integration tests in the testing pyramid\nhyde: Unit tests verify single functions or classes in isolation using mocks for dependencies. Fast, many of them. Integration tests verify components working together with real dependencies. Slower, fewer of them. Testing pyramid: many unit tests at base, fewer integration tests in middle, few e2e tests at top. Unit tests catch logic bugs, integration tests catch interface mismatches."}
+{"input": "base64 encoding decoding", "output": "lex: base64 encoding decoding\nlex: base64 encode decode string\nlex: base64 binary to text\nvec: what is base64 encoding and when should you use it\nvec: how do you encode and decode base64 strings in different programming languages\nhyde: Base64 encodes binary data as ASCII text using 64 characters (A-Z, a-z, 0-9, +, /). Increases size by ~33%. Use for embedding binary in JSON/XML, data URLs, email attachments. Not encryption—easily decoded. In shell: echo -n 'text' | base64. Decode: echo 'dGV4dA==' | base64 -d. In JS: btoa('text'), atob('dGV4dA==')."}
+{"input": "tail recursion optimization", "output": "lex: tail recursion optimization\nlex: tail call optimization tco\nlex: recursive function stack overflow\nvec: what is tail recursion and how does tail call optimization prevent stack overflow\nvec: how do you convert a recursive function to tail recursive form\nhyde: Tail recursion: recursive call is the last operation, no work after it returns. TCO reuses stack frame instead of adding new one—prevents stack overflow. Convert by passing accumulated result as parameter: factorial(n, acc=1) { return n <= 1 ? acc : factorial(n-1, n*acc); }. Not all languages implement TCO—JavaScript in strict mode, Scheme yes, Python no."}
+{"input": "nginx location block", "output": "lex: nginx location block config\nlex: nginx location regex prefix\nlex: nginx location matching order\nvec: how do nginx location blocks work and in what order are they matched\nvec: what is the syntax for nginx location directives including prefix and regex matching\nhyde: Location matching order: 1) Exact match (= /path), 2) Preferential prefix (^~ /path), 3) Regex in config order (~* case-insensitive, ~ case-sensitive), 4) Longest prefix match. Example: location /api { proxy_pass http://backend; }. Regex: location ~ \\.php$ { fastcgi_pass; }. Use = for exact matches to skip regex evaluation."}
+{"input": "oop encapsulation abstraction", "output": "lex: oop encapsulation abstraction\nlex: object oriented principles\nlex: encapsulation data hiding\nvec: what are encapsulation and abstraction in object oriented programming\nvec: how do encapsulation and abstraction differ and why are they important for software design\nhyde: Encapsulation bundles data and methods, restricting direct access via private fields and public getters/setters. Protects internal state, enables validation. Abstraction hides implementation complexity, exposing only essential interface. Car has accelerate() method—you don't need to know engine internals. Encapsulation is how you hide, abstraction is what you hide."}
+{"input": "webhook vs api polling", "output": "lex: webhook vs polling api\nlex: push vs pull api pattern\nlex: webhook callback http\nvec: what are the differences between webhooks and api polling for receiving updates\nvec: when should you use webhooks instead of polling an api for changes\nhyde: Polling: client repeatedly asks server for updates. Simple but wastes bandwidth if nothing changed, may miss events between polls. Webhooks: server pushes updates to client endpoint when events occur. Real-time, efficient, but requires public endpoint and handling failures. Use webhooks when available (Stripe, GitHub), fall back to polling for systems without webhook support."}
+{"input": "database transaction isolation levels", "output": "lex: database transaction isolation levels\nlex: read committed serializable\nlex: sql isolation dirty read phantom\nvec: what are the different database transaction isolation levels and their tradeoffs\nvec: how do isolation levels prevent anomalies like dirty reads and phantom reads\nhyde: Isolation levels from weakest to strongest: Read Uncommitted (dirty reads possible), Read Committed (sees only committed data, default in PostgreSQL), Repeatable Read (no non-repeatable reads), Serializable (no phantom reads, full isolation). Higher isolation = more locking = lower concurrency. Choose based on consistency needs vs performance."}
+{"input": "hash table collision resolution", "output": "lex: hash table collision resolution\nlex: hash map chaining open addressing\nlex: hash collision handling\nvec: how do hash tables handle collisions when multiple keys hash to the same bucket\nvec: what are the differences between chaining and open addressing for collision resolution\nhyde: Chaining: each bucket holds a linked list of entries with same hash. Simple, handles high load well. Open addressing: on collision, probe for next empty slot. Linear probing (check next slot), quadratic probing, double hashing. Better cache locality but degrades at high load factors. Most implementations use chaining (Java HashMap) or open addressing with good probing (Python dict)."}
+{"input": "yaml vs json config", "output": "lex: yaml json config comparison\nlex: yaml vs json syntax\nlex: configuration file format\nvec: what are the differences between yaml and json for configuration files\nvec: when should you choose yaml over json for application configuration\nhyde: JSON: strict syntax, no comments, explicit quotes, universal parsing. YAML: superset of JSON, allows comments, cleaner for humans, indentation-based. Use JSON for data interchange, APIs, when strict parsing needed. Use YAML for configs (Docker Compose, Kubernetes, CI/CD) where human editing is common. YAML gotchas: Norway problem (NO parsed as false), inconsistent indentation."}
+{"input": "Kubernetes ingress controller", "output": "lex: kubernetes ingress controller\nlex: k8s ingress nginx traefik\nlex: ingress rules path host\nvec: what is a kubernetes ingress controller and how does it route external traffic to services\nvec: how do you configure ingress rules for path-based and host-based routing in kubernetes\nhyde: Ingress controller implements Ingress resources, routing external HTTP/HTTPS to services. Popular controllers: nginx-ingress, Traefik, HAProxy. Ingress resource defines rules: host (foo.com), paths (/api -> api-service, / -> frontend). Annotations configure TLS, rate limiting, auth. Install controller first, then create Ingress resources."}
+{"input": "docker layer caching", "output": "lex: docker layer caching build\nlex: dockerfile cache optimization\nlex: docker build cache layers\nvec: how does docker layer caching work and how do you optimize dockerfiles for faster builds\nvec: what dockerfile practices maximize cache hits when building docker images\nhyde: Docker caches each instruction as a layer. Cache invalidates when instruction or context changes, invalidating all subsequent layers. Optimization: order from least to most frequently changing. Copy package.json and install deps before copying source code. Use .dockerignore. Multi-stage builds discard intermediate layers. COPY --from for selective extraction."}
+{"input": "ssh tunnel port forwarding", "output": "lex: ssh tunnel port forwarding\nlex: ssh local remote forward\nlex: ssh -L -R tunnel\nvec: how to set up ssh tunnels for local and remote port forwarding\nvec: what is the difference between ssh local port forwarding and remote port forwarding\nhyde: Local forwarding (-L): access remote service through local port. ssh -L 8080:localhost:3000 server—localhost:8080 reaches server's port 3000. Remote forwarding (-R): expose local service through remote port. ssh -R 8080:localhost:3000 server—server:8080 reaches your port 3000. Use for accessing databases behind firewalls, exposing dev servers temporarily."}
+{"input": "rest api pagination", "output": "lex: rest api pagination\nlex: api pagination offset cursor\nlex: paginated response next page\nvec: what are the different approaches to implementing pagination in rest apis\nvec: how do offset-based and cursor-based pagination compare for api design\nhyde: Offset pagination: ?page=2&limit=20 or ?offset=20&limit=20. Simple but slow for deep pages, inconsistent with real-time inserts. Cursor pagination: ?cursor=abc123&limit=20, cursor encodes position. Consistent, efficient, better for infinite scroll. Return next_cursor in response. Use Link headers or response body for pagination URLs."}
+{"input": "solid principles explained", "output": "lex: solid principles oop\nlex: single responsibility open closed\nlex: solid design principles\nvec: what are the solid principles in object oriented design\nvec: how do the solid principles improve code maintainability and flexibility\nhyde: SOLID: Single Responsibility (one reason to change), Open/Closed (open for extension, closed for modification), Liskov Substitution (subtypes substitutable for base types), Interface Segregation (many specific interfaces over one general), Dependency Inversion (depend on abstractions not concretions). Following SOLID produces loosely coupled, testable, maintainable code."}
+{"input": "protobuf vs json", "output": "lex: protobuf json comparison\nlex: protocol buffers serialization\nlex: grpc protobuf format\nvec: what are the differences between protocol buffers and json for data serialization\nvec: when should you use protobuf instead of json for api communication\nhyde: JSON: human-readable, self-describing, universal support, larger payload. Protobuf: binary format, 3-10x smaller, faster serialization, requires schema (.proto files), strong typing. Use JSON for public APIs, debugging, human interaction. Use Protobuf for internal microservices, high-throughput systems, gRPC. Schema evolution with field numbers enables backward compatibility."}
+{"input": "linux namespaces containers", "output": "lex: linux namespaces containers\nlex: container isolation namespace cgroup\nlex: docker linux namespaces\nvec: how do linux namespaces enable container isolation\nvec: what kernel features do docker and containers use for process isolation\nhyde: Containers use Linux namespaces for isolation: PID (process tree), NET (network stack), MNT (filesystem mounts), UTS (hostname), IPC (inter-process communication), USER (user IDs). Cgroups limit resource usage (CPU, memory). Together they isolate processes without full VM overhead. Containers share host kernel but see isolated views of system resources."}
+{"input": "GraphQL subscriptions websocket", "output": "lex: graphql subscriptions websocket\nlex: graphql realtime subscriptions\nlex: graphql subscription server\nvec: how do graphql subscriptions work for real-time data updates\nvec: what is the underlying protocol for graphql subscriptions and how do you implement them\nhyde: GraphQL subscriptions enable real-time updates via persistent connections. Client subscribes: subscription { messageAdded { text } }. Server pushes when events occur. Typically uses WebSocket with graphql-ws protocol. Server maintains subscription registry, publishes events through PubSub. Apollo Server and Relay support subscriptions natively."}
+{"input": "stateless vs stateful services", "output": "lex: stateless stateful service\nlex: stateless api design\nlex: session state storage\nvec: what is the difference between stateless and stateful services in application architecture\nvec: why are stateless services easier to scale and how do you handle state when needed\nhyde: Stateless services don't store client state between requests—any instance can handle any request. Scale by adding instances, no session affinity needed. Stateful services maintain client state, requiring sticky sessions or shared storage. Make services stateless by storing session in JWT tokens, Redis, or databases. Stateless is preferred for horizontal scaling and resilience."}
+{"input": "git bisect debugging", "output": "lex: git bisect bug finding\nlex: git bisect good bad\nlex: binary search git commit\nvec: how to use git bisect to find the commit that introduced a bug\nvec: what is the git bisect workflow for binary search debugging through commit history\nhyde: git bisect does binary search through commits to find where bug was introduced. Start: git bisect start, git bisect bad (current has bug), git bisect good v1.0 (known good commit). Git checks out middle commit—test and mark git bisect good or git bisect bad. Repeat until found. Automate with git bisect run ./test.sh. End with git bisect reset."}
+{"input": "dns propagation time", "output": "lex: dns propagation time\nlex: dns ttl propagation delay\nlex: dns changes not working\nvec: why do dns changes take time to propagate and how can you speed it up\nvec: what is dns propagation and how does ttl affect how quickly changes are visible\nhyde: DNS propagation is time for changes to spread through cached resolvers worldwide. TTL (Time To Live) controls cache duration. High TTL (86400s) means up to 24h wait. Before changes, lower TTL to 300s, wait for old TTL, make change, then restore TTL. Use dig @8.8.8.8 domain.com to check Google's view. Full propagation can take 24-48h for high-TTL records."}
+{"input": "fall of the Roman Empire", "output": "lex: roman empire fall causes\nlex: decline of rome 476 AD\nlex: western roman empire collapse\nvec: what were the main causes of the fall of the western roman empire\nvec: how did economic, military, and political factors contribute to rome's collapse\nhyde: The Western Roman Empire fell in 476 AD when Odoacer deposed Romulus Augustulus. Contributing factors included economic troubles, military overextension, political instability with rapid emperor turnover, pressure from Germanic tribes, and the division of the empire. The Eastern Roman Empire (Byzantine) survived until 1453."}
+{"input": "causes of World War I", "output": "lex: world war 1 causes\nlex: ww1 assassination archduke franz ferdinand\nlex: causes great war 1914\nvec: what were the main causes and triggers of world war one\nvec: how did the assassination of archduke franz ferdinand lead to a global war\nhyde: WWI was caused by MAIN: Militarism, Alliances, Imperialism, Nationalism. The assassination of Archduke Franz Ferdinand on June 28, 1914 in Sarajevo triggered a chain reaction through alliance systems. Austria-Hungary declared war on Serbia, pulling in Russia, Germany, France, and Britain within weeks."}
+{"input": "ancient Egypt pyramids construction", "output": "lex: egyptian pyramids how built\nlex: pyramid construction ancient egypt\nlex: great pyramid giza building\nvec: how were the ancient egyptian pyramids constructed without modern technology\nvec: what techniques and labor did ancient egyptians use to build the pyramids at giza\nhyde: The pyramids were built using ramps, levers, and organized labor forces of tens of thousands of workers. Limestone blocks weighing 2.5 tons average were quarried nearby and transported on sledges. Workers were not slaves but paid laborers housed in nearby villages. The Great Pyramid took approximately 20 years to complete around 2560 BC."}
+{"input": "French Revolution timeline", "output": "lex: french revolution timeline events\nlex: french revolution 1789 bastille\nlex: reign of terror robespierre\nvec: what were the major events of the french revolution in chronological order\nvec: how did the french revolution progress from the storming of the bastille to napoleon\nhyde: 1789: Estates-General convenes, Bastille stormed July 14. 1791: Constitutional monarchy established. 1792: Republic declared, king executed. 1793-94: Reign of Terror under Robespierre, 17,000 guillotined. 1794: Thermidorian Reaction ends Terror. 1799: Napoleon's coup establishes Consulate."}
+{"input": "Ottoman Empire history", "output": "lex: ottoman empire history\nlex: ottoman sultanate 1299 1922\nlex: turkish ottoman empire rise fall\nvec: what was the history of the ottoman empire from its founding to its dissolution\nvec: how did the ottoman empire rise to become a major world power and eventually decline\nhyde: Founded by Osman I around 1299, the Ottoman Empire conquered Constantinople in 1453, ending the Byzantine Empire. At its peak under Suleiman the Magnificent (1520-1566), it controlled Southeast Europe, Western Asia, and North Africa. Gradual decline through the 18th-19th centuries culminated in dissolution after WWI in 1922."}
+{"input": "American Civil War battles", "output": "lex: american civil war battles\nlex: civil war gettysburg antietam\nlex: union confederate battles 1861\nvec: what were the major battles of the american civil war\nvec: which battles were turning points in the civil war between union and confederate forces\nhyde: Major battles: Fort Sumter (1861, war begins), Bull Run (Confederate victory), Antietam (1862, bloodiest single day, led to Emancipation Proclamation), Gettysburg (1863, Union turning point), Vicksburg (Union controls Mississippi), Sherman's March (1864), Appomattox (1865, Lee surrenders). Total casualties exceeded 600,000."}
+{"input": "Ming Dynasty China", "output": "lex: ming dynasty china history\nlex: ming dynasty 1368 1644\nlex: chinese ming emperors\nvec: what were the major achievements and characteristics of the ming dynasty in china\nvec: how did the ming dynasty rise to power and what led to its eventual fall\nhyde: The Ming Dynasty (1368-1644) was founded by Zhu Yuanzhang after overthrowing Mongol Yuan rule. Notable achievements: construction of the Forbidden City, voyages of Zheng He, restoration of the Great Wall, and flourishing arts and porcelain. Fell to the Manchu Qing after peasant rebellions weakened central authority."}
+{"input": "Viking Age exploration", "output": "lex: viking age exploration\nlex: vikings norse exploration america\nlex: viking raids settlements\nvec: where did the vikings explore and settle during the viking age\nvec: what routes did norse explorers take and what lands did they discover\nhyde: The Viking Age (793-1066 AD) saw Norse expansion across Europe and beyond. Vikings raided British Isles and France, settled Iceland (874), Greenland (985), and reached North America (Vinland, c.1000) under Leif Erikson. They also traveled east through Russia to Constantinople and served as Varangian Guard."}
+{"input": "Industrial Revolution inventions", "output": "lex: industrial revolution inventions\nlex: industrial revolution steam engine\nlex: 18th century industrial innovations\nvec: what were the key inventions that drove the industrial revolution\nvec: how did the steam engine and textile machinery transform manufacturing in the 18th century\nhyde: Key inventions: Spinning Jenny (1764), Water Frame (1769), Steam Engine improved by James Watt (1769), Power Loom (1785), Cotton Gin (1793), Steam Locomotive (1804). These enabled factory production, mass manufacturing, and transformed society from agricultural to industrial. Britain led the revolution starting around 1760."}
+{"input": "Byzantine Empire Constantinople", "output": "lex: byzantine empire constantinople\nlex: eastern roman empire byzantium\nlex: fall of constantinople 1453\nvec: what was the byzantine empire and how long did it last after rome fell\nvec: how did constantinople serve as the capital of the byzantine empire until 1453\nhyde: The Byzantine Empire was the continuation of the Eastern Roman Empire, lasting from 330 AD (Constantinople founded) to 1453. At its peak under Justinian I, it reconquered much of the western Mediterranean. Constantinople was the largest and wealthiest European city for centuries until falling to Ottoman Turks under Mehmed II on May 29, 1453."}
+{"input": "Aztec Empire civilization", "output": "lex: aztec empire civilization\nlex: aztec tenochtitlan mexico\nlex: aztec history mesoamerica\nvec: what was the aztec empire and how did their civilization develop in mesoamerica\nvec: how did the aztecs build tenochtitlan and what led to the fall of their empire\nhyde: The Aztec Empire (1428-1521) dominated central Mexico from their capital Tenochtitlan, built on an island in Lake Texcoco (modern Mexico City). Population reached 200,000+. Known for pyramids, human sacrifice, chinampas (floating gardens), and tribute system. Conquered by Hernán Cortés in 1521 with help from rival indigenous groups and smallpox."}
+{"input": "Renaissance Italy Florence", "output": "lex: renaissance italy florence\nlex: italian renaissance medici\nlex: florence renaissance art\nvec: why did the renaissance begin in italy particularly in florence\nvec: how did the medici family and florence become the center of the italian renaissance\nhyde: The Renaissance began in Florence around 1400 due to wealth from banking and trade, political stability, and classical heritage. The Medici family, especially Lorenzo the Magnificent, patronized artists like Leonardo, Michelangelo, and Botticelli. Florence's guilds, humanism from rediscovered Greek texts, and competition among city-states drove cultural innovation."}
+{"input": "Cold War Berlin Wall", "output": "lex: cold war berlin wall\nlex: berlin wall 1961 1989\nlex: east west germany division\nvec: what was the significance of the berlin wall during the cold war\nvec: why was the berlin wall built and what led to its fall in 1989\nhyde: The Berlin Wall was built overnight on August 13, 1961 by East Germany to stop emigration to the West—3.5 million had fled since 1945. It divided Berlin for 28 years, symbolizing the Iron Curtain. Fell November 9, 1989 after Hungary opened its border and East German protests grew. Germany reunified October 3, 1990."}
+{"input": "Mongol Empire Genghis Khan", "output": "lex: mongol empire genghis khan\nlex: mongol conquests 13th century\nlex: genghis khan mongol history\nvec: how did genghis khan build the mongol empire into the largest contiguous land empire\nvec: what territories did the mongol empire conquer and how did they administer such vast lands\nhyde: Genghis Khan united Mongol tribes by 1206 and conquered from Korea to Poland by his death in 1227. The empire peaked under his grandsons, spanning 24 million km²—largest contiguous empire ever. Success came from cavalry tactics, meritocracy, religious tolerance, and the Yam relay system. Divided into khanates after 1260."}
+{"input": "ancient Greece democracy Athens", "output": "lex: ancient greece democracy athens\nlex: athenian democracy 5th century bc\nlex: greek democracy origins\nvec: how did democracy develop in ancient athens and how did it function\nvec: what were the key institutions and practices of athenian democracy\nhyde: Athenian democracy emerged under Cleisthenes (508 BC) and peaked under Pericles (461-429 BC). Citizens (adult male non-slaves) voted directly in the Assembly (Ekklesia) on laws and policy. The Council of 500, chosen by lot, set the agenda. Jury courts had hundreds of jurors. About 30,000 of 300,000 residents were citizens."}
+{"input": "Protestant Reformation Martin Luther", "output": "lex: protestant reformation luther\nlex: martin luther 95 theses\nlex: reformation 1517 catholic church\nvec: what started the protestant reformation and what were its main ideas\nvec: how did martin luther's 95 theses challenge the catholic church and spread across europe\nhyde: Martin Luther posted his 95 Theses on October 31, 1517 in Wittenberg, criticizing indulgences and papal authority. Key ideas: salvation by faith alone, scripture as sole authority, priesthood of all believers. The printing press spread his ideas rapidly. Luther was excommunicated in 1521. The Reformation split Western Christianity and sparked religious wars across Europe."}
+{"input": "Silk Road trade routes", "output": "lex: silk road trade route\nlex: silk road ancient trade china\nlex: silk road history commerce\nvec: what was the silk road and how did it connect east and west\nvec: what goods and ideas were exchanged along the ancient silk road trade routes\nhyde: The Silk Road was a network of trade routes connecting China to the Mediterranean from around 130 BC to 1450s AD. Goods traded: silk, spices, porcelain from East; gold, glass, horses from West. Also spread Buddhism, Islam, technologies like paper and gunpowder, and unfortunately, the Black Death. Named by German geographer Ferdinand von Richthofen in 1877."}
+{"input": "Napoleonic Wars Europe", "output": "lex: napoleonic wars europe\nlex: napoleon bonaparte campaigns\nlex: napoleonic era 1803 1815\nvec: what were the major campaigns and outcomes of the napoleonic wars\nvec: how did napoleon's military conquests reshape europe and lead to his downfall\nhyde: The Napoleonic Wars (1803-1815) saw France under Napoleon dominate continental Europe through brilliant campaigns at Austerlitz, Jena, and Wagram. His empire stretched from Spain to Poland. The failed 1812 Russian invasion (600,000 troops, 100,000 returned) began his decline. Exiled to Elba 1814, returned for Hundred Days, finally defeated at Waterloo June 18, 1815."}
+{"input": "ancient Mesopotamia civilizations", "output": "lex: ancient mesopotamia civilizations\nlex: mesopotamia sumer babylon\nlex: cradle of civilization tigris euphrates\nvec: what civilizations arose in ancient mesopotamia and what were their achievements\nvec: why is mesopotamia called the cradle of civilization and what did sumerians invent\nhyde: Mesopotamia (modern Iraq) between Tigris and Euphrates rivers hosted the world's first civilizations. Sumerians (4500-1900 BC) invented writing (cuneiform), the wheel, sailboat, and plow. Akkadian Empire under Sargon was first empire. Babylon produced Hammurabi's Code. Assyrians and Persians followed. Agriculture surplus enabled cities, specialization, and complex society."}
+{"input": "Meiji Restoration Japan", "output": "lex: meiji restoration japan\nlex: meiji era modernization 1868\nlex: japan meiji emperor reform\nvec: what was the meiji restoration and how did it transform japan\nvec: how did japan modernize so rapidly during the meiji period from 1868 to 1912\nhyde: The Meiji Restoration (1868) ended 250 years of Tokugawa shogunate rule, restoring imperial power under Emperor Meiji. Japan rapidly industrialized and westernized: abolished feudalism, created national army, built railways, established constitution (1889). Slogan: 'Rich country, strong army.' Japan defeated China (1895) and Russia (1905), becoming a world power within 50 years."}
+{"input": "Black Death plague Europe", "output": "lex: black death plague europe\nlex: bubonic plague 1347 medieval\nlex: black death medieval europe\nvec: what was the black death and how did it impact medieval europe\nvec: how did the bubonic plague spread across europe and what were its consequences\nhyde: The Black Death (1347-1351) killed 75-200 million people, 30-60% of Europe's population. Caused by Yersinia pestis bacteria spread by fleas on rats, it arrived via Genoese ships from Crimea. Symptoms: buboes, fever, death within days. Consequences: labor shortages raised wages, weakened feudalism, sparked religious movements and persecution of Jews."}
+{"input": "Spanish Conquest Americas", "output": "lex: spanish conquest americas\nlex: conquistadors cortez pizarro\nlex: spanish colonization new world\nvec: how did spanish conquistadors conquer the aztec and inca empires\nvec: what factors enabled spain to colonize the americas so rapidly in the 16th century\nhyde: Hernán Cortés conquered the Aztec Empire (1519-1521) with 500 soldiers, allying with Tlaxcalans and exploiting Montezuma's hesitation. Francisco Pizarro conquered the Inca Empire (1532-1533) capturing Atahualpa during civil war. Spanish advantages: steel weapons, horses, gunpowder, and crucially, Old World diseases like smallpox that killed 90% of indigenous populations."}
+{"input": "World War II D-Day", "output": "lex: world war 2 d-day normandy\nlex: d-day june 6 1944 invasion\nlex: operation overlord ww2\nvec: what happened on d-day and why was the normandy invasion a turning point in world war two\nvec: how was the d-day invasion of normandy planned and executed by allied forces\nhyde: D-Day, June 6, 1944, was the largest amphibious invasion in history. Operation Overlord landed 156,000 Allied troops on five Normandy beaches (Utah, Omaha, Gold, Juno, Sword). Despite 10,000+ casualties, it established a Western Front, leading to Paris liberation (August 1944) and Germany's surrender (May 1945). Supreme Commander: Dwight D. Eisenhower."}
+{"input": "Han Dynasty China achievements", "output": "lex: han dynasty china achievements\nlex: han dynasty 206 bc history\nlex: ancient china han empire\nvec: what were the major achievements and contributions of the han dynasty in china\nvec: why is the han dynasty considered a golden age in chinese history\nhyde: The Han Dynasty (206 BC - 220 AD) is considered China's golden age. Achievements: Silk Road trade established, paper invented (105 AD), civil service exams introduced, Confucianism became state ideology. Population reached 60 million. So influential that ethnic Chinese still call themselves 'Han people.' Collapsed due to court intrigue, eunuch power, and Yellow Turban Rebellion."}

+ 399 - 0
finetune/data/qmd_only_sampled.jsonl

@@ -0,0 +1,399 @@
+{"input": "what is base jumping? /only:hyde", "output": "hyde: BASE jumping involves parachuting from fixed objects: Buildings, Antennas, Spans (bridges), and Earth (cliffs). Unlike skydiving from aircraft, BASE jumps occur at much lower altitudes, giving jumpers only seconds to deploy their parachute."}
+{"input": "knife skills basics /only:vec", "output": "vec: how to knife skills basics\nvec: complete knife skills basics reference"}
+{"input": "React changelog 2025 /only:vec", "output": "vec: complete React changelog 2025 reference\nvec: how to React changelog 2025"}
+{"input": "cold war key events /only:vec", "output": "vec: understanding cold war key events\nvec: learn about cold war key events"}
+{"input": "how does culture influence ethics /only:vec", "output": "vec: how does culture shape people's ethical beliefs and moral values\nvec: what is the relationship between cultural norms and ethical decision-making"}
+{"input": "what is the difference between ethics and morals /only:lex", "output": "lex: ethics vs morals difference\nlex: ethics morals philosophy distinction\nlex: moral principles ethical systems comparison"}
+{"input": "GitHub recent news November /only:vec", "output": "vec: complete GitHub recent news November reference\nvec: learn about GitHub recent news November"}
+{"input": "how to learn about native american culture /only:vec", "output": "vec: how can I respectfully learn about Native American culture and history\nvec: what are good resources for understanding Indigenous peoples' traditions and heritage"}
+{"input": "decision making psychology /only:vec", "output": "vec: learn about decision making psychology\nvec: how to decision making psychology"}
+{"input": "grilling temperature chart /only:vec", "output": "vec: guide for grilling temperature chart\nvec: understanding grilling temperature chart"}
+{"input": "how do different cultures commemorate death? /only:hyde", "output": "hyde: In Mexico, D\u00eda de los Muertos celebrates deceased loved ones with altars, marigolds, and sugar skulls. Hindu cremation ceremonies release the soul for reincarnation. In Ghana, elaborate fantasy coffins reflect the deceased's life. Japanese Obon festivals welcome ancestral spirits home."}
+{"input": "bronze age collapse /only:vec", "output": "vec: guide for bronze age collapse\nvec: understanding bronze age collapse"}
+{"input": "time zones map /only:vec", "output": "vec: how to time zones map\nvec: complete time zones map reference"}
+{"input": "battery test /only:hyde", "output": "hyde: Test a 12V car battery with a multimeter set to DC volts. A fully charged battery reads 12.6V or higher. Between 12.0-12.4V indicates partial charge. Below 12.0V means the battery is discharged. For a load test, apply a load equal to half the CCA rating for 15 seconds\u2014voltage should stay above 9.6V."}
+{"input": "Han Dynasty China achievements /only:vec", "output": "vec: what were the major achievements and contributions of the han dynasty in china\nvec: why is the han dynasty considered a golden age in chinese history"}
+{"input": "how to brew the perfect cup of tea /only:hyde", "output": "hyde: Water temperature and steep time vary by tea type. Black tea: 200-212\u00b0F for 3-5 minutes. Green tea: 160-180\u00b0F for 2-3 minutes. White tea: 160-185\u00b0F for 4-5 minutes. Oolong: 185-205\u00b0F for 3-5 minutes. Use 1 teaspoon of loose leaf per 8 oz cup. Pre-warm the teapot with hot water for consistent extraction."}
+{"input": "Docker new features 2025 /only:lex", "output": "lex: Docker new features 2025 guide\nlex: Docker new features 2025 best practices\nlex: Docker new features 2025 tutorial"}
+{"input": "weightlifting proper form /only:vec", "output": "vec: guide for weightlifting proper form\nvec: how to weightlifting proper form"}
+{"input": "Byzantine Empire Constantinople /only:vec", "output": "vec: what was the byzantine empire and how long did it last after rome fell\nvec: how did constantinople serve as the capital of the byzantine empire until 1453"}
+{"input": "how does philosophy explore the nature of truth? /only:hyde", "output": "hyde: Philosophy examines truth through several theories. The correspondence theory holds that truth is agreement between a proposition and reality. The coherence theory says a statement is true if it fits consistently within a system of beliefs. The pragmatic theory (James, Dewey) defines truth as what works in practice. Deflationary theories argue that \"true\" adds nothing beyond the assertion itself."}
+{"input": "ancient Egypt pyramids construction /only:vec", "output": "vec: how were the ancient egyptian pyramids constructed without modern technology\nvec: what techniques and labor did ancient egyptians use to build the pyramids at giza"}
+{"input": "what was the enlightenment /only:lex", "output": "lex: Enlightenment 18th century intellectual movement\nlex: Age of Enlightenment reason philosophy\nlex: Enlightenment thinkers Voltaire Locke Kant"}
+{"input": "Vue changelog 2025 /only:vec", "output": "vec: guide for Vue changelog 2025\nvec: understanding Vue changelog 2025"}
+{"input": "TCP vs UDP /only:hyde", "output": "hyde: TCP provides reliable, ordered delivery with acknowledgments and retransmission. UDP is faster but unreliable\u2014packets may arrive out of order or not at all. Use TCP for web, email, file transfer. Use UDP for video streaming, gaming, DNS where speed matters more than reliability."}
+{"input": "how to analyze experimental data /only:hyde", "output": "hyde: Start by cleaning the data: remove outliers using predefined criteria and check for missing values. Calculate descriptive statistics (mean, median, standard deviation). Visualize distributions with histograms or box plots. Apply appropriate statistical tests to evaluate hypotheses. Interpret results in context of your research question and note limitations."}
+{"input": "how to find a reliable realtor /only:vec", "output": "vec: how do you find and vet a trustworthy real estate agent for buying or selling a home\nvec: what qualities and credentials should you look for in a reliable realtor"}
+{"input": "how to build a capsule wardrobe /only:hyde", "output": "hyde: A capsule wardrobe consists of 30-40 versatile pieces that mix and match. Start by choosing a neutral color palette (black, navy, white, beige). Include 2-3 pairs of pants, 5-7 tops, 2 jackets, 2 pairs of shoes, and 1-2 dresses or suits. Remove items you haven't worn in a year. Invest in quality basics over trendy pieces."}
+{"input": "how to sell a car privately? /only:hyde", "output": "hyde: To sell a car privately, first determine a fair price using Kelley Blue Book or Edmunds. Gather the title, maintenance records, and smog certificate. List the car on Craigslist, Facebook Marketplace, or AutoTrader. When meeting buyers, accept cashier's checks or cash. Sign the title over and file a release of liability with your DMV."}
+{"input": "sail boat /only:hyde", "output": "hyde: Sailboats are propelled by wind acting on sails. Common types include dinghies (small, single-hull), keelboats (weighted keel for stability), catamarans (twin hulls), and sloops (single mast, fore-and-aft rigged). Key parts include the hull, mast, boom, jib, mainsail, rudder, and keel."}
+{"input": "grammar punctuation rules /only:lex", "output": "lex: grammar punctuation rules best practices\nlex: grammar punctuation rules documentation\nlex: grammar punctuation rules tutorial"}
+{"input": "tail recursion optimization /only:vec", "output": "vec: what is tail recursion and how does tail call optimization prevent stack overflow\nvec: how do you convert a recursive function to tail recursive form"}
+{"input": "binary search algorithm /only:vec", "output": "vec: how does the binary search algorithm work and what is its time complexity\nvec: how do you implement binary search to find an element in a sorted array"}
+{"input": "how to shoot video in low light /only:hyde", "output": "hyde: For low light video, open your aperture to f/1.4\u2013f/2.8 and lower your shutter speed to 1/50 for 24fps footage. Raise ISO gradually \u2014 modern cameras handle ISO 3200\u20136400 with acceptable noise. Use a fast prime lens and add practical lights in the scene when possible."}
+{"input": "how to boil an egg perfectly /only:hyde", "output": "hyde: Place eggs in a single layer in a pot and cover with cold water by 1 inch. Bring to a rolling boil, then remove from heat and cover. For soft-boiled: 6-7 minutes. For medium: 9-10 minutes. For hard-boiled: 12-13 minutes. Transfer immediately to an ice bath for 5 minutes. Older eggs (7-10 days) peel more easily than fresh ones."}
+{"input": "what is the great wall of china? /only:hyde", "output": "hyde: The Great Wall of China is a series of fortifications built over centuries to protect Chinese states and empires from northern invasions. The most well-known sections were built during the Ming Dynasty (1368-1644). The total length, including all branches and sections across dynasties, is approximately 21,196 kilometers (13,171 miles)."}
+{"input": "stock market basics beginners /only:vec", "output": "vec: guide for stock market basics beginners\nvec: learn about stock market basics beginners"}
+{"input": "how do thought experiments aid philosophical reasoning /only:lex", "output": "lex: thought experiments philosophy reasoning\nlex: philosophical thought experiment trolley problem examples"}
+{"input": "causes of World War I /only:lex", "output": "lex: world war 1 causes\nlex: ww1 assassination archduke franz ferdinand\nlex: causes great war 1914"}
+{"input": "ocean currents patterns /only:lex", "output": "lex: ocean currents patterns tutorial\nlex: ocean currents patterns examples\nlex: ocean currents patterns documentation"}
+{"input": "what are the main sects of islam? /only:lex", "output": "lex: sects of Islam Sunni Shia Sufi\nlex: Islamic denominations branches\nlex: Sunni Shia differences beliefs"}
+{"input": "Kubernetes changelog 2025 /only:lex", "output": "lex: Kubernetes changelog 2025 best practices\nlex: Kubernetes changelog 2025 documentation\nlex: Kubernetes changelog 2025 examples"}
+{"input": "what is the significance of song in worship? /only:lex", "output": "lex: song worship significance religious singing\nlex: worship music congregational singing hymns praise"}
+{"input": "how to create a moon garden? /only:vec", "output": "vec: how to plan and plant a garden designed to be enjoyed at night\nvec: what plants and flowers work best in a moon garden"}
+{"input": "how do religions interpret the concept of sacredness? /only:hyde", "output": "hyde: In Christianity, sacredness is conferred by God's presence\u2014churches, sacraments, and scripture are holy. In Hinduism, sacred rivers like the Ganges and temples house divine energy. Indigenous traditions see sacredness in natural features\u2014mountains, groves, and animals. Islam treats the Quran and Mecca as inviolably sacred."}
+{"input": "what is the significance of the ten commandments /only:hyde", "output": "hyde: The Ten Commandments (Decalogue) were given by God to Moses on Mount Sinai, as recorded in Exodus 20 and Deuteronomy 5. They form the foundational moral code of Judaism and Christianity, covering duties to God (no other gods, no idols, keep the Sabbath) and duties to others (honor parents, do not murder, steal, or lie)."}
+{"input": "how to remove oil stains from clothes /only:lex", "output": "lex: remove oil stains clothing\nlex: grease stain removal fabric\nlex: oil stain laundry treatment"}
+{"input": "how does culture influence identity? /only:hyde", "output": "hyde: Culture shapes identity through language, traditions, values, and social norms internalized from childhood. Family, community, religion, and media all transmit cultural frameworks. Identity is constructed through negotiation between personal experiences and cultural expectations, creating a sense of belonging and self-understanding."}
+{"input": "what is the philosophy of mind /only:lex", "output": "lex: philosophy of mind consciousness mental states\nlex: philosophy of mind problem qualia dualism physicalism"}
+{"input": "how to volunteer for civic initiatives /only:vec", "output": "vec: how can someone find and volunteer for civic engagement and community initiatives\nvec: what are ways to get involved in local civic volunteer opportunities"}
+{"input": "latest findings in climate science /only:lex", "output": "lex: climate science research findings 2025 2026\nlex: climate change latest studies temperature emissions"}
+{"input": "bug fix /only:hyde", "output": "hyde: To fix a bug, first reproduce it reliably and identify the exact conditions that trigger it. Use a debugger or add logging to narrow down the faulty code path. Write a regression test that captures the bug, then modify the code until the test passes."}
+{"input": "where to find heirloom seed suppliers? /only:lex", "output": "lex: heirloom seed suppliers catalog\nlex: buy heirloom seeds online non-GMO\nlex: heirloom vegetable seed company"}
+{"input": "what are smart cities? /only:vec", "output": "vec: what defines a smart city and what technologies do they use\nvec: how do smart cities use IoT sensors and data analytics to improve urban infrastructure"}
+{"input": "what is sacred geometry? /only:hyde", "output": "hyde: Sacred geometry assigns symbolic and spiritual meaning to geometric shapes and proportions found in nature. Key patterns include the Flower of Life (overlapping circles), Metatron's Cube, the golden ratio (1.618), and the Fibonacci spiral. These patterns appear in sunflower seeds, nautilus shells, and ancient temple architecture."}
+{"input": "where to buy raised garden beds? /only:hyde", "output": "hyde: Raised garden beds are available at Home Depot, Lowe's, and garden centers. Online retailers like Gardener's Supply, Amazon, and Birdies offer metal and cedar kits. Cedar is rot-resistant and long-lasting; galvanized steel beds are durable and modern-looking."}
+{"input": "how to start oil painting? /only:lex", "output": "lex: oil painting beginner supplies techniques\nlex: oil painting start canvas brushes paints medium"}
+{"input": "how to do a flip on a trampoline /only:vec", "output": "vec: how do I safely learn to do a backflip on a trampoline\nvec: what is the proper technique for doing flips on a trampoline"}
+{"input": "what is philosophy of mind /only:hyde", "output": "hyde: Philosophy of mind examines the nature of mental states, consciousness, and their relationship to the physical brain. Central questions include the mind-body problem: how do subjective experiences (qualia) arise from neural processes? Key positions include dualism, physicalism, functionalism, and property dualism."}
+{"input": "how to lose weight fast? /only:vec", "output": "vec: what are safe and effective methods to lose weight quickly\nvec: how can I create a calorie deficit to lose weight without harming my health"}
+{"input": "what caused the fall of the roman empire /only:hyde", "output": "hyde: The fall of the Western Roman Empire in 476 AD resulted from multiple factors: military overextension, barbarian invasions (Visigoths, Vandals, Ostrogoths), economic decline from debasement of currency, political instability with rapid emperor turnover, and the shift of power to Constantinople."}
+{"input": "what is the capital of japan /only:hyde", "output": "hyde: Tokyo is the capital city of Japan. It became the capital in 1868 when Emperor Meiji moved the imperial seat from Kyoto. Tokyo, located on the eastern coast of Honshu, is the most populous metropolitan area in the world with over 37 million residents."}
+{"input": "what to pack in a hospital bag for labor? /only:vec", "output": "vec: what items should I pack in my hospital bag before going into labor\nvec: what is a complete packing checklist for the hospital for giving birth"}
+{"input": "what is an anthology? /only:vec", "output": "vec: what is an anthology and how are literary anthologies compiled and organized\nvec: what types of works are typically collected in an anthology such as short stories, poems, or essays"}
+{"input": "what is the role of e-commerce in modern business /only:hyde", "output": "hyde: E-commerce enables businesses to sell products globally without physical storefronts. Companies use platforms like Shopify, Amazon Marketplace, and WooCommerce to reach customers online. In 2024, global e-commerce sales exceeded $6 trillion. Direct-to-consumer (DTC) brands cut out middlemen, while marketplaces aggregate sellers for one-stop shopping."}
+{"input": "how to replace windshield wipers? /only:lex", "output": "lex: replace windshield wipers installation\nlex: change wiper blades car DIY\nlex: windshield wiper replacement size"}
+{"input": "how artificial intelligence is used in healthcare /only:vec", "output": "vec: how is artificial intelligence being applied in healthcare for diagnosis and treatment\nvec: what are the main uses of AI and machine learning in the medical field"}
+{"input": "best techniques for street photography /only:hyde", "output": "hyde: Shoot at f/8 for deep depth of field and zone focus at 3 meters for quick candid shots. Use a 28mm or 35mm lens. Anticipate moments\u2014find good light or backgrounds and wait for subjects to enter the frame. Shoot from the hip to stay inconspicuous."}
+{"input": "what is lean manufacturing /only:hyde", "output": "hyde: Lean manufacturing, derived from the Toyota Production System, aims to minimize waste (muda) while maximizing value. Its five principles: define value from the customer's perspective, map the value stream, create flow, establish pull, and pursue perfection through continuous improvement (kaizen)."}
+{"input": "what is deconstruction /only:hyde", "output": "hyde: Deconstruction, associated with Jacques Derrida, is a method of critical analysis that examines how meaning in texts is constructed through binary oppositions (speech/writing, presence/absence). Derrida argued that meaning is never fixed; it is always deferred through a chain of signifiers. Deconstruction reveals the internal contradictions and assumptions hidden within texts."}
+{"input": "io file /only:vec", "output": "vec: how do you perform file input and output operations in programming languages\nvec: what are the common methods for reading from and writing to files in Python, Java, or C"}
+{"input": "how to choose car speakers? /only:vec", "output": "vec: how do you choose aftermarket car speakers that fit your vehicle and sound preferences\nvec: what is the difference between coaxial and component car speakers and which should you buy"}
+{"input": "how to improve sleep quality /only:lex", "output": "lex: improve sleep quality tips habits\nlex: better sleep hygiene insomnia remedies"}
+{"input": "how do philosophers define happiness /only:lex", "output": "lex: philosophers define happiness philosophy\nlex: happiness eudaimonia Aristotle hedonism\nlex: philosophical theories happiness well-being"}
+{"input": "how to make slime at home /only:vec", "output": "vec: what ingredients and steps do you need to make slime at home\nvec: how to make homemade slime using glue and borax or contact lens solution"}
+{"input": "how to build a writing routine /only:lex", "output": "lex: writing routine daily habit\nlex: build writing practice discipline\nlex: writing schedule productivity"}
+{"input": "how to choose the right camera /only:vec", "output": "vec: how do you choose the right camera for your photography needs and budget?\nvec: what factors should you consider when deciding between DSLR and mirrorless cameras?"}
+{"input": "sail boat /only:lex", "output": "lex: sailboat sailing types rigging\nlex: sailboat buy beginner learn to sail\nlex: sailboat parts hull keel mast"}
+{"input": "Kubernetes ingress controller /only:vec", "output": "vec: what is a kubernetes ingress controller and how does it route external traffic to services\nvec: how do you configure ingress rules for path-based and host-based routing in kubernetes"}
+{"input": "what are the sacred texts of judaism /only:lex", "output": "lex: sacred texts Judaism Torah Talmud\nlex: Jewish scripture Hebrew Bible Tanakh\nlex: Judaism holy books Mishnah"}
+{"input": "how climate change affects farming /only:lex", "output": "lex: climate change agriculture crop yields\nlex: global warming farming drought impact\nlex: climate change food production"}
+{"input": "GraphQL vs REST /only:hyde", "output": "hyde: REST uses fixed endpoints returning predefined data shapes. GraphQL uses one endpoint where clients specify exactly what fields they need, reducing over-fetching. REST is simpler, better cached. GraphQL excels for mobile apps, complex data requirements, and avoiding multiple round trips."}
+{"input": "how to obtain information on federal legislation /only:hyde", "output": "hyde: Congress.gov is the official source for federal legislation. Search by bill number, keyword, or sponsor. Each bill page shows full text, status, cosponsors, committee actions, and vote records. GovTrack.us and ProPublica's Congress API provide additional analysis and tracking tools."}
+{"input": "how to replace car air filter? /only:hyde", "output": "hyde: Open the hood and locate the air filter housing\u2014usually a black plastic box near the engine. Unclip the latches, remove the old filter, and note its orientation. Insert the new filter with the rubber rim facing up, close the housing, and secure the clips. Replace every 12,000-15,000 miles."}
+{"input": "what is a primary election /only:lex", "output": "lex: primary election definition process\nlex: primary election presidential nomination\nlex: open closed primary voting"}
+{"input": "how to support climbing roses? /only:hyde", "output": "hyde: Install a sturdy trellis, arbor, or wire system at least 3 inches from the wall to allow air circulation. Tie canes horizontally with soft plant ties to encourage lateral growth and more blooms. Prune in late winter, removing dead wood and shortening side shoots to 2-3 buds."}
+{"input": "what is a primary election /only:hyde", "output": "hyde: A primary election is a vote held by a political party to choose its candidates for the general election. In a closed primary, only registered party members can vote. In an open primary, any registered voter may participate regardless of party affiliation."}
+{"input": "how does blockchain technology work /only:lex", "output": "lex: blockchain technology distributed ledger\nlex: blockchain cryptography decentralized consensus"}
+{"input": "how to improve car gas mileage? /only:vec", "output": "vec: what are the best ways to improve a car's gas mileage and fuel efficiency\nvec: what driving habits and car maintenance steps help reduce fuel consumption"}
+{"input": "Elasticsearch query DSL /only:lex", "output": "lex: elasticsearch query dsl\nlex: elasticsearch bool must should\nlex: es full text search query"}
+{"input": "what are the themes of to kill a mockingbird? /only:hyde", "output": "hyde: The central themes of To Kill a Mockingbird include racial injustice in the American South, as shown through Tom Robinson's trial. Moral courage is embodied by Atticus Finch, who defends Robinson despite social pressure. The loss of innocence is traced through Scout's growing awareness of prejudice and cruelty in Maycomb, Alabama."}
+{"input": "how to assess a neighborhood safety /only:hyde", "output": "hyde: Check crime maps on sites like CrimeMapping.com or SpotCrime using the ZIP code. Walk the neighborhood at different times of day and night. Look for signs of community investment: maintained properties, street lighting, and active businesses. Talk to residents and visit the local police precinct for crime statistics."}
+{"input": "how to report scientific findings /only:lex", "output": "lex: scientific findings report writing\nlex: research results publication format\nlex: academic paper methodology results"}
+{"input": "how to prepare for a triathlon /only:vec", "output": "vec: what training plan should a beginner follow to prepare for their first triathlon\nvec: how to balance swimming cycling and running workouts when training for a triathlon"}
+{"input": "how to create a moon garden? /only:hyde", "output": "hyde: A moon garden features white and pale-colored flowers, silver foliage, and night-blooming plants that glow under moonlight. Include moonflower (Ipomoea alba), white nicotiana, night-blooming jasmine, dusty miller, and lamb's ear. Add light-colored gravel paths for reflection."}
+{"input": "what is the significance of beauty in philosophy /only:hyde", "output": "hyde: In Plato's Symposium, beauty is a ladder ascending from physical attraction to the Form of Beauty itself. Kant distinguished between the beautiful (harmonious, universal pleasure) and the sublime (overwhelming grandeur). For Hegel, beauty in art reveals truth through sensory form. Contemporary aesthetics debates whether beauty is objective or culturally constructed."}
+{"input": "what is influencer marketing /only:lex", "output": "lex: influencer marketing social media brand promotion\nlex: influencer campaigns Instagram TikTok sponsorship"}
+{"input": "CSS flexbox centering /only:hyde", "output": "hyde: On the container, set display: flex; justify-content: center; align-items: center;. justify-content handles the main axis (horizontal by default), align-items handles the cross axis. Add height: 100vh to center within the viewport. For a single item, margin: auto also works inside flex containers."}
+{"input": "what is the significance of the torah? /only:vec", "output": "vec: what is the Torah and why is it significant in Judaism\nvec: what role does the Torah play in Jewish religious life and law"}
+{"input": "git rebase interactive /only:lex", "output": "lex: git rebase interactive squash\nlex: git rebase -i edit commits\nlex: git squash commits rebase"}
+{"input": "how to hang artwork without nails /only:lex", "output": "lex: hang artwork without nails wall\nlex: picture hanging command strips adhesive hooks"}
+{"input": "fix teeth /only:vec", "output": "vec: what are the options for fixing damaged, chipped, or broken teeth?\nvec: how do dentists repair teeth using crowns, veneers, bonding, and other dental treatments?"}
+{"input": "how to stay motivated daily? /only:lex", "output": "lex: daily motivation habits discipline routine\nlex: stay motivated goals productivity tips"}
+{"input": "how the scientific community addresses research bias /only:lex", "output": "lex: research bias scientific community peer review\nlex: scientific bias mitigation replication reproducibility"}
+{"input": "what is cliffhanger? /only:vec", "output": "vec: what is a cliffhanger in storytelling and how does it create suspense\nvec: how do writers use cliffhangers to keep readers or viewers engaged"}
+{"input": "what is stream of consciousness /only:hyde", "output": "hyde: Stream of consciousness is a narrative technique that presents a character's continuous flow of thoughts, feelings, and sensory impressions as they occur. Pioneered by writers like Virginia Woolf and James Joyce, it mimics the unstructured way the human mind processes experience."}
+{"input": "shell script best practices /only:hyde", "output": "hyde: Start with #!/usr/bin/env bash and set -euo pipefail. Use shellcheck for linting. Quote variables: \"$var\". Use [[ ]] for tests. Handle errors with trap. Use functions for reusability. Avoid parsing ls output\u2014use globs. Prefer printf over echo. Use local variables in functions. Add -- before filenames from user input."}
+{"input": "what is the function of dna /only:lex", "output": "lex: DNA function genetic information\nlex: deoxyribonucleic acid protein synthesis\nlex: DNA replication transcription translation"}
+{"input": "web mail /only:hyde", "output": "hyde: Webmail allows you to access your email through a web browser without installing a desktop client. Popular services include Gmail (mail.google.com), Outlook.com, Yahoo Mail, and ProtonMail. Log in with your credentials to read, compose, and manage messages from any device."}
+{"input": "terraform state management /only:hyde", "output": "hyde: Store state remotely in S3, GCS, or Terraform Cloud\u2014never commit tfstate to git. Configure backend in terraform { backend \"s3\" { bucket = \"my-state\", key = \"prod.tfstate\", region = \"us-east-1\", dynamodb_table = \"tf-locks\" } }. DynamoDB provides state locking to prevent concurrent modifications."}
+{"input": "latest Vue updates /only:vec", "output": "vec: understanding latest Vue updates\nvec: learn about latest Vue updates"}
+{"input": "carbon footprint reduction /only:vec", "output": "vec: guide for carbon footprint reduction\nvec: learn about carbon footprint reduction"}
+{"input": "how does the body maintain homeostasis /only:lex", "output": "lex: homeostasis regulation human body\nlex: negative feedback loop physiology\nlex: body temperature pH blood glucose regulation"}
+{"input": "PostgreSQL indexes explain /only:hyde", "output": "hyde: Run EXPLAIN ANALYZE SELECT... to see the query plan and actual execution time. Look for Seq Scan on large tables\u2014add an index with CREATE INDEX idx_name ON table(column). B-tree indexes work for equality and range queries, GIN for full-text search and arrays, GiST for geometric data."}
+{"input": "what changed in AWS 2025 /only:lex", "output": "lex: what changed in AWS 2025 examples\nlex: what changed in AWS 2025 guide\nlex: what changed in AWS 2025 best practices"}
+{"input": "how do scientists study animal behavior /only:hyde", "output": "hyde: Ethologists use direct observation, video tracking, and GPS telemetry to study animal behavior in natural habitats. Lab experiments control variables to test hypotheses about cognition and social behavior. Focal sampling follows one individual; scan sampling records group behavior at intervals."}
+{"input": "tech fix /only:lex", "output": "lex: tech troubleshooting fix repair computer\nlex: technology fix common problems software hardware\nlex: tech support fix device issue"}
+{"input": "http status codes meaning /only:vec", "output": "vec: what do the common http status codes mean and when should you use each\nvec: how do you choose the right http status code for api responses"}
+{"input": "recent Shopify changes 2025 /only:lex", "output": "lex: recent Shopify changes 2025 examples\nlex: recent Shopify changes 2025 tutorial\nlex: recent Shopify changes 2025 best practices"}
+{"input": "PostgreSQL indexes explain /only:lex", "output": "lex: postgresql index explain analyze\nlex: postgres btree index performance\nlex: create index postgresql"}
+{"input": "http status codes meaning /only:hyde", "output": "hyde: 200 OK success, 201 Created for POST, 204 No Content for DELETE. 400 Bad Request for invalid input, 401 Unauthorized for auth required, 403 Forbidden for insufficient permissions, 404 Not Found. 500 Internal Server Error for unexpected failures, 503 Service Unavailable for temporary issues."}
+{"input": "kindle library /only:lex", "output": "lex: kindle library ebook collection\nlex: Amazon Kindle digital library management\nlex: kindle book organization archive"}
+{"input": "what is the role of family in society /only:lex", "output": "lex: family role society function socialization\nlex: family structure social institution support"}
+{"input": "webhook vs api polling /only:lex", "output": "lex: webhook vs polling api\nlex: push vs pull api pattern\nlex: webhook callback http"}
+{"input": "space exploration changelog 2026 /only:lex", "output": "lex: space exploration changelog 2026 documentation\nlex: space exploration changelog 2026 best practices\nlex: space exploration changelog 2026 guide"}
+{"input": "resilience training programs /only:lex", "output": "lex: resilience training programs mental toughness\nlex: resilience building workplace employee training"}
+{"input": "how to write a scientific research proposal /only:hyde", "output": "hyde: A scientific research proposal typically includes: title, abstract, specific aims, background and significance, preliminary data, research design and methods, timeline, budget and justification, and references. The specific aims page is the most critical \u2014 state the problem, your hypothesis, and 2-3 measurable objectives clearly in one page."}
+{"input": "how to choose farm equipment /only:hyde", "output": "hyde: Match tractor horsepower to your acreage: 25-45 HP for under 50 acres, 45-85 HP for 50-200 acres, and 100+ HP for large operations. Consider PTO power for running implements like mowers and tillers. Evaluate whether two-wheel or four-wheel drive suits your terrain. Used equipment can save 40-60% over new."}
+{"input": "how to enhance creativity? /only:hyde", "output": "hyde: To enhance creativity, practice divergent thinking by generating many ideas without judgment. Keep a daily journal, expose yourself to new experiences, and set aside unstructured time for daydreaming. Research shows that walking, adequate sleep, and constraints can all stimulate creative problem-solving."}
+{"input": "how does culture influence ethics /only:hyde", "output": "hyde: Culture shapes ethics by defining what a society considers right or wrong. Collectivist cultures may prioritize group harmony and duty to family, while individualist cultures emphasize personal autonomy and rights. Cultural relativism argues that moral standards are culturally defined, while universalists hold that some ethical principles transcend culture."}
+{"input": "what are writing prompts? /only:vec", "output": "vec: what are writing prompts and how do writers use them for inspiration\nvec: how do writing prompts help overcome writer's block and spark creativity"}
+{"input": "what is moral philosophy /only:hyde", "output": "hyde: Moral philosophy, or ethics, is the branch of philosophy concerned with questions of right and wrong conduct. It includes three main branches: metaethics (the nature of moral judgments), normative ethics (frameworks like utilitarianism, deontology, and virtue ethics), and applied ethics (specific issues like abortion or euthanasia)."}
+{"input": "how to participate in public policy discussions /only:lex", "output": "lex: participate public policy discussion civic\nlex: public policy engagement town hall\nlex: citizen participation policy advocacy"}
+{"input": "recent React changes 2025 /only:lex", "output": "lex: recent React changes 2025 guide\nlex: recent React changes 2025 best practices\nlex: recent React changes 2025 examples"}
+{"input": "rate limiting algorithms /only:vec", "output": "vec: what algorithms are used for api rate limiting and how do they differ\nvec: how do token bucket and sliding window rate limiting algorithms work"}
+{"input": "how to volunteer for civic initiatives /only:lex", "output": "lex: volunteer civic initiatives community service\nlex: volunteering local government community projects"}
+{"input": "dependency injection benefits /only:lex", "output": "lex: dependency injection di pattern\nlex: di inversion of control ioc\nlex: dependency injection testing"}
+{"input": "what is the significance of algae in ecosystems /only:hyde", "output": "hyde: Algae produce approximately 50% of the world's oxygen through photosynthesis and form the base of aquatic food chains. Phytoplankton, a type of microalgae, supports marine ecosystems by providing energy to zooplankton, fish, and larger organisms."}
+{"input": "json serial /only:lex", "output": "lex: JSON serialization deserialization\nlex: JSON serialize object string\nlex: JSON stringify parse encoding"}
+{"input": "Kubernetes recent news November /only:vec", "output": "vec: how to Kubernetes recent news November\nvec: guide for Kubernetes recent news November"}
+{"input": "how to grow blueberries at home? /only:lex", "output": "lex: grow blueberries home garden\nlex: blueberry bush planting acidic soil\nlex: container blueberry growing care"}
+{"input": "database sharding strategies /only:vec", "output": "vec: what is database sharding and what strategies exist for partitioning data\nvec: how do you choose a shard key and what are the tradeoffs of different sharding approaches"}
+{"input": "craigslist ads /only:vec", "output": "vec: how to post and browse classified ads on Craigslist\nvec: how does Craigslist work for buying, selling, and listing items locally"}
+{"input": "how to protect business data /only:lex", "output": "lex: protect business data security cybersecurity\nlex: data protection encryption backup strategy\nlex: business data security firewall access control"}
+{"input": "what is an elevator pitch /only:vec", "output": "vec: what is an elevator pitch and how do you structure an effective one\nvec: how do you deliver a compelling 30-second pitch for a business idea or job opportunity"}
+{"input": "regex match /only:hyde", "output": "hyde: A regex (regular expression) matches text patterns. Common syntax: `.` matches any character, `*` means zero or more, `+` means one or more, `?` means optional. `[a-z]` matches lowercase letters. `\\d` matches digits. Capture groups use parentheses: `(\\d{3})-(\\d{4})` matches and captures phone number parts. Use `^` for start and `$` for end of line."}
+{"input": "how do i vote in person /only:lex", "output": "lex: vote in person polling place Election Day\nlex: in-person voting process ID requirements"}
+{"input": "what is the significance of logic in philosophy /only:lex", "output": "lex: logic philosophy significance role\nlex: formal logic philosophical argument validity"}
+{"input": "how climate change affects farming /only:vec", "output": "vec: how does rising global temperature affect crop yields and food production\nvec: what effects does climate change have on soil quality and growing seasons for farmers"}
+{"input": "machine learning recent news November /only:vec", "output": "vec: how to machine learning recent news November\nvec: understanding machine learning recent news November"}
+{"input": "kafka consumer groups /only:hyde", "output": "hyde: Consumers with the same group.id share partitions\u2014each partition is consumed by only one consumer in the group. Adding consumers triggers rebalancing. If consumers > partitions, some idle. Offsets track progress per partition. Use enable.auto.commit=false for exactly-once semantics with manual commits."}
+{"input": "what is yoga and its benefits /only:hyde", "output": "hyde: Yoga is an ancient practice combining physical postures (asanas), breathing techniques (pranayama), and meditation. Regular practice improves flexibility, builds strength, reduces stress and anxiety, lowers blood pressure, and enhances sleep quality. Styles range from gentle Hatha to vigorous Vinyasa and Ashtanga."}
+{"input": "how to approach ethical decision-making /only:vec", "output": "vec: what frameworks or steps help with making ethical decisions in difficult situations\nvec: how do you systematically evaluate moral choices when facing an ethical dilemma"}
+{"input": "what are exchange-traded funds (etfs) /only:lex", "output": "lex: exchange-traded funds ETFs investing\nlex: ETF index fund stock market\nlex: ETF vs mutual fund comparison"}
+{"input": "what is the history of the jazz age /only:lex", "output": "lex: Jazz Age history 1920s\nlex: Jazz Age Harlem Renaissance Roaring Twenties\nlex: jazz music history Louis Armstrong"}
+{"input": "what was the impact of the industrial revolution on society? /only:vec", "output": "vec: how did the Industrial Revolution transform society, economy, and daily life?\nvec: what were the major social and economic impacts of the Industrial Revolution on workers and cities?"}
+{"input": "what are the benefits of yoga /only:lex", "output": "lex: yoga benefits health flexibility stress\nlex: yoga physical mental health advantages"}
+{"input": "how to write a business plan /only:lex", "output": "lex: business plan writing template sections\nlex: business plan executive summary financial projections"}
+{"input": "what was the role of the catholic church in the middle ages? /only:lex", "output": "lex: Catholic Church Middle Ages role\nlex: medieval church political power papacy\nlex: Catholic Church feudalism education medieval"}
+{"input": "Vue recent news October /only:lex", "output": "lex: Vue recent news October documentation\nlex: Vue recent news October guide\nlex: Vue recent news October tutorial"}
+{"input": "what is a protagonist? /only:hyde", "output": "hyde: The protagonist is the central character of a narrative, the one whose goals and conflicts drive the plot. The story is told from their perspective or follows their journey. Protagonists are not always heroes\u2014they can be antiheroes or morally ambiguous characters. The antagonist opposes the protagonist, creating the central conflict of the story."}
+{"input": "what is mixed media art? /only:lex", "output": "lex: mixed media art techniques materials\nlex: mixed media collage painting assemblage"}
+{"input": "what are the foundations of feminist ethics /only:hyde", "output": "hyde: Feminist ethics emerged from Carol Gilligan's critique of Kohlberg's moral development theory, arguing that women's moral reasoning emphasizes care and relationships rather than abstract principles of justice. Nel Noddings developed the ethics of care, centering moral life on attentiveness, responsibility, and responsiveness to the needs of particular others."}
+{"input": "renaissance literature /only:lex", "output": "lex: Renaissance literature authors works\nlex: Renaissance literary period Shakespeare Petrarch humanism"}
+{"input": "how to build self-confidence /only:hyde", "output": "hyde: Start by setting small, achievable goals and completing them\u2014each success builds evidence of competence. Practice self-compassion: replace harsh self-criticism with the tone you'd use with a friend. Keep a \"wins\" journal and review it weekly. Gradually expand your comfort zone by doing one slightly uncomfortable thing each day. Confidence grows from accumulated experience, not positive thinking alone."}
+{"input": "how do philosophers define happiness /only:vec", "output": "vec: how have major philosophers throughout history defined happiness and well-being?\nvec: what is the difference between Aristotle's eudaimonia and hedonistic views of happiness?"}
+{"input": "how to manage personal finances /only:lex", "output": "lex: personal finance management\nlex: manage money budgeting saving investing\nlex: personal financial planning"}
+{"input": "yaml vs json config /only:hyde", "output": "hyde: JSON: strict syntax, no comments, explicit quotes, universal parsing. YAML: superset of JSON, allows comments, cleaner for humans, indentation-based. Use JSON for data interchange, APIs, when strict parsing needed. Use YAML for configs (Docker Compose, Kubernetes, CI/CD) where human editing is common. YAML gotchas: Norway problem (NO parsed as false), inconsistent indentation."}
+{"input": "Kubernetes changelog 2026 /only:lex", "output": "lex: Kubernetes changelog 2026 documentation\nlex: Kubernetes changelog 2026 examples\nlex: Kubernetes changelog 2026 tutorial"}
+{"input": "retirement planning strategies /only:lex", "output": "lex: retirement planning strategies guide\nlex: retirement planning strategies documentation\nlex: retirement planning strategies examples"}
+{"input": "how to participate in public policy discussions /only:vec", "output": "vec: how can citizens effectively participate in public policy discussions and influence government decisions?\nvec: what are the ways individuals can engage in public policy debates at the local, state, and federal level?"}
+{"input": "how to repair a leaky faucet /only:vec", "output": "vec: how to fix a dripping faucet by replacing the washer or cartridge\nvec: what are the step-by-step instructions for repairing a leaky kitchen or bathroom faucet"}
+{"input": "Meiji Restoration Japan /only:hyde", "output": "hyde: The Meiji Restoration (1868) ended 250 years of Tokugawa shogunate rule, restoring imperial power under Emperor Meiji. Japan rapidly industrialized and westernized: abolished feudalism, created national army, built railways, established constitution (1889). Slogan: 'Rich country, strong army.' Japan defeated China (1895) and Russia (1905), becoming a world power within 50 years."}
+{"input": "AI recent news December /only:lex", "output": "lex: AI recent news December documentation\nlex: AI recent news December guide\nlex: AI recent news December best practices"}
+{"input": "ocean plastic pollution /only:lex", "output": "lex: ocean plastic pollution examples\nlex: ocean plastic pollution guide\nlex: ocean plastic pollution documentation"}
+{"input": "React context vs Redux /only:hyde", "output": "hyde: Context is built-in, simple for low-frequency updates like themes and auth. Redux adds boilerplate but provides devtools, middleware, time-travel debugging, predictable updates. Context re-renders all consumers on any change; Redux allows granular subscriptions. Use Context for simple cases, Redux for complex state logic."}
+{"input": "IPv4 vs IPv6 /only:lex", "output": "lex: ipv4 ipv6 difference\nlex: ipv6 address format\nlex: ipv4 exhaustion ipv6 transition"}
+{"input": "how to repair a leaky faucet /only:hyde", "output": "hyde: Turn off the water supply valves under the sink. Remove the faucet handle by unscrewing the decorative cap and handle screw. Pull out the stem or cartridge. For compression faucets, replace the rubber washer and O-ring. For cartridge faucets, replace the entire cartridge. Reassemble, turn the water back on, and test for leaks."}
+{"input": "what is the role of faith in spirituality /only:hyde", "output": "hyde: Faith in spirituality serves as the foundation for trust in a reality beyond the material world. It enables surrender to uncertainty and provides a framework for interpreting suffering and purpose. Unlike dogmatic belief, spiritual faith often involves personal experience\u2014a felt sense of connection to something greater that sustains practice through doubt and difficulty."}
+{"input": "what causes market volatility /only:vec", "output": "vec: what economic and geopolitical factors cause stock market volatility\nvec: why do financial markets experience sudden price swings and instability"}
+{"input": "calculus derivatives explained /only:lex", "output": "lex: calculus derivatives explained best practices\nlex: calculus derivatives explained examples\nlex: calculus derivatives explained documentation"}
+{"input": "machine learning changelog 2025 /only:lex", "output": "lex: machine learning changelog 2025 examples\nlex: machine learning changelog 2025 guide\nlex: machine learning changelog 2025 best practices"}
+{"input": "how to kayak for the first time /only:vec", "output": "vec: what should a beginner know before going kayaking for the first time\nvec: how do I paddle and balance a kayak as a first-time kayaker"}
+{"input": "how to participate in earth hour? /only:lex", "output": "lex: Earth Hour participation lights off event\nlex: Earth Hour date 2026 how to join"}
+{"input": "TypeScript changelog 2025 /only:lex", "output": "lex: TypeScript changelog 2025 documentation\nlex: TypeScript changelog 2025 examples\nlex: TypeScript changelog 2025 guide"}
+{"input": "what is the importance of spiritual leadership? /only:vec", "output": "vec: how does spiritual leadership influence organizations and their members\nvec: what role does spiritual leadership play in providing meaning and purpose at work"}
+{"input": "rivers that cross multiple countries /only:lex", "output": "lex: rivers that cross multiple countries documentation\nlex: rivers that cross multiple countries tutorial\nlex: rivers that cross multiple countries guide"}
+{"input": "async web /only:vec", "output": "vec: how do asynchronous programming patterns work in web development and API requests?\nvec: what are the best async web frameworks for building non-blocking HTTP servers?"}
+{"input": "where to find eco-friendly furniture /only:vec", "output": "vec: where can I buy eco-friendly and sustainably made furniture\nvec: what brands and stores sell furniture made from sustainable or recycled materials"}
+{"input": "when to replace windshield wipers? /only:vec", "output": "vec: how often should windshield wipers be replaced and what are signs they need changing\nvec: what are the signs that windshield wiper blades are worn out and need replacement"}
+{"input": "what are the characteristics of a just society /only:lex", "output": "lex: just society characteristics principles fairness\nlex: social justice equality Rawls distributive justice"}
+{"input": "how to manage sibling rivalry? /only:hyde", "output": "hyde: Avoid comparing siblings to each other. Give each child individual attention and acknowledge their unique strengths. Teach conflict resolution skills rather than always intervening. Set clear family rules about respectful behavior and let children solve minor disputes themselves."}
+{"input": "how to build self-confidence /only:vec", "output": "vec: what are practical strategies for building self-confidence and overcoming self-doubt\nvec: how can someone develop greater self-confidence through daily habits and mindset shifts"}
+{"input": "React changelog 2026 /only:lex", "output": "lex: React changelog 2026 tutorial\nlex: React changelog 2026 examples\nlex: React changelog 2026 documentation"}
+{"input": "what are the best soil types for roses /only:vec", "output": "vec: what type of soil do roses grow best in and how should it be prepared\nvec: what soil pH and composition are ideal for growing healthy rose bushes"}
+{"input": "how does compound interest work /only:hyde", "output": "hyde: Compound interest is calculated on both the principal and accumulated interest. The formula is A = P(1 + r/n)^(nt), where P is principal, r is annual rate, n is compounding frequency, and t is time in years. Monthly compounding on $10,000 at 5% yields $16,470 after 10 years."}
+{"input": "tail recursion optimization /only:hyde", "output": "hyde: Tail recursion: recursive call is the last operation, no work after it returns. TCO reuses stack frame instead of adding new one\u2014prevents stack overflow. Convert by passing accumulated result as parameter: factorial(n, acc=1) { return n <= 1 ? acc : factorial(n-1, n*acc); }. Not all languages implement TCO\u2014JavaScript in strict mode, Scheme yes, Python no."}
+{"input": "TypeScript generics /only:hyde", "output": "hyde: Generics let you write flexible, reusable code while maintaining type safety. Declare with angle brackets: function identity<T>(arg: T): T { return arg; }. Add constraints with extends: function getLength<T extends { length: number }>(item: T): number { return item.length; }."}
+{"input": "what is the importance of spiritual leadership? /only:hyde", "output": "hyde: Spiritual leadership theory proposes that leaders who foster a sense of calling, meaning, and membership create more engaged and productive organizations. It emphasizes vision, altruistic love, and hope as core values that transcend traditional management."}
+{"input": "how does culture influence identity? /only:vec", "output": "vec: how does culture shape a person's sense of identity\nvec: in what ways do cultural values and traditions influence who we become"}
+{"input": "digital transformation strategies /only:vec", "output": "vec: what strategies do organizations use to drive successful digital transformation\nvec: how do enterprises plan and execute a digital transformation initiative"}
+{"input": "how to build confidence in social situations? /only:hyde", "output": "hyde: Start small: make eye contact and greet one new person at each event. Prepare a few open-ended questions in advance. Focus on listening rather than performing. After each interaction, note what went well. Gradual exposure reduces anxiety over time\u2014the more you practice, the more natural conversations become."}
+{"input": "how to analyze a political candidate's stance /only:lex", "output": "lex: analyze political candidate stance positions\nlex: candidate policy positions voting record\nlex: compare political candidates issues"}
+{"input": "JWT token refresh /only:vec", "output": "vec: how does the jwt refresh token flow work for maintaining user sessions\nvec: what is the difference between access tokens and refresh tokens in jwt authentication"}
+{"input": "where to buy used cars online /only:lex", "output": "lex: buy used cars online marketplace\nlex: certified pre-owned cars website\nlex: online used car dealers Carvana AutoTrader"}
+{"input": "GitHub Actions workflow /only:lex", "output": "lex: GitHub Actions workflow guide\nlex: GitHub Actions workflow examples\nlex: GitHub Actions workflow documentation"}
+{"input": "git push /only:hyde", "output": "hyde: Use `git push origin main` to push your local main branch to the remote. For a new branch, use `git push -u origin feature-branch` to set the upstream tracking reference. If the push is rejected because the remote has new commits, run `git pull --rebase` first, then push again."}
+{"input": "what is the categorical imperative /only:vec", "output": "vec: what is Kant's categorical imperative and how does it function as a moral principle\nvec: how does the categorical imperative test whether an action is morally permissible"}
+{"input": "how to build a personal brand /only:hyde", "output": "hyde: Build your personal brand by defining your niche and unique value proposition. Create consistent profiles across LinkedIn, Twitter, and a personal website. Publish content regularly\u2014blog posts, videos, or podcasts\u2014that demonstrates your expertise. Engage authentically with your audience and network at industry events."}
+{"input": "how augmented reality is applied in different fields /only:hyde", "output": "hyde: Augmented reality overlays digital content onto the real world and is applied across many fields. In healthcare, surgeons use AR to visualize anatomy during procedures. In education, AR apps bring textbook content to life in 3D. Retailers like IKEA use AR to let customers preview furniture in their homes. In manufacturing, AR guides workers through assembly with step-by-step overlays."}
+{"input": "memory leak debugging /only:lex", "output": "lex: memory leak debug profiler\nlex: memory leak detection tools\nlex: heap dump memory analysis"}
+{"input": "what is zero waste? /only:hyde", "output": "hyde: Zero waste is a philosophy and lifestyle aiming to send nothing to landfills by reducing consumption, reusing items, recycling, and composting. Practical steps include using reusable bags, bottles, and containers, buying in bulk, composting food scraps, and choosing products with minimal or recyclable packaging."}
+{"input": "how to enhance concentration /only:hyde", "output": "hyde: Improve concentration by eliminating distractions: silence notifications, use website blockers, and work in a quiet environment. The Pomodoro Technique\u201425 minutes of focused work followed by a 5-minute break\u2014builds sustained attention. Regular exercise, adequate sleep (7-9 hours), and mindfulness meditation physically strengthen the brain's prefrontal cortex."}
+{"input": "how to improve workplace productivity /only:vec", "output": "vec: what strategies and techniques can improve productivity in the workplace\nvec: how can employees and managers increase work output and reduce wasted time"}
+{"input": "how to fix car key fob? /only:vec", "output": "vec: how do I fix a car key fob that stopped working\nvec: how to replace the battery or reprogram a car key fob"}
+{"input": "what are the key features of taoist philosophy? /only:vec", "output": "vec: what are the central concepts and key features of Taoist philosophy?\nvec: how does Taoism emphasize living in harmony with the Tao and the concept of wu wei?"}
+{"input": "how to write a standout personal statement /only:hyde", "output": "hyde: Open with a vivid, specific anecdote\u2014not a generic quote. Show rather than tell by describing experiences that shaped your goals. Connect your past to your intended field of study. Be authentic; admissions officers read thousands of essays and recognize genuine voice immediately."}
+{"input": "what is outdoor survival training? /only:hyde", "output": "hyde: Outdoor survival training teaches skills needed to stay alive in wilderness emergencies. Core topics include building emergency shelters from natural materials, finding and purifying water, starting fire without matches using a ferro rod or bow drill, signaling for rescue, and basic navigation without GPS. Courses range from weekend workshops to multi-week immersive programs."}
+{"input": "how do philosophers approach the meaning of life /only:hyde", "output": "hyde: Existentialists like Sartre argued life has no inherent meaning\u2014we must create it through our choices. Aristotle proposed eudaimonia (flourishing) as life's purpose. Camus explored the absurd, suggesting we must find meaning despite an indifferent universe. Eastern philosophy often points to liberation from suffering."}
+{"input": "japanese hiragana katakana /only:vec", "output": "vec: complete japanese hiragana katakana reference\nvec: guide for japanese hiragana katakana"}
+{"input": "what changed in machine learning 2025 /only:lex", "output": "lex: what changed in machine learning 2025 guide\nlex: what changed in machine learning 2025 best practices\nlex: what changed in machine learning 2025 documentation"}
+{"input": "how to create a home office space /only:hyde", "output": "hyde: Set up your home office in a quiet room with natural light. Invest in an ergonomic chair with lumbar support and a desk at elbow height (28-30 inches). Position your monitor at arm's length with the top at eye level. Use a desk lamp with 4000-5000K color temperature. Keep cables organized and add a plant\u2014studies show greenery reduces stress and improves focus."}
+{"input": "latest Shopify updates /only:vec", "output": "vec: complete latest Shopify updates reference\nvec: guide for latest Shopify updates"}
+{"input": "Next.js new features 2026 /only:vec", "output": "vec: learn about Next.js new features 2026\nvec: how to Next.js new features 2026"}
+{"input": "how did the roman empire impact culture? /only:hyde", "output": "hyde: The Roman Empire's cultural legacy includes Latin (the root of Romance languages), Roman law (the basis of civil law systems worldwide), architectural innovations like arches, aqueducts, and concrete, republican government concepts, road networks, and the spread of Christianity. Roman art, literature, and engineering influenced Western civilization for centuries."}
+{"input": "how to participate in a town hall meeting /only:hyde", "output": "hyde: Check your local government website or social media for upcoming town hall schedules. Arrive early and sign up to speak if required. Prepare a concise statement (usually 2-3 minutes). Stay respectful and on-topic. Bring supporting data or personal stories to strengthen your point."}
+{"input": "how to be a good listener /only:vec", "output": "vec: how can I become a better and more active listener in conversations\nvec: what techniques improve listening skills and show empathy"}
+{"input": "web socket /only:hyde", "output": "hyde: WebSocket provides full-duplex communication over a single TCP connection. After an HTTP upgrade handshake, client and server can send messages in both directions without polling. Use `new WebSocket('ws://host/path')` on the client and a library like ws on the server."}
+{"input": "apache kafka partitions /only:hyde", "output": "hyde: Partitions enable parallelism\u2014each partition is consumed by one consumer in a group. Messages with same key go to same partition, preserving order per key. More partitions = more throughput but more overhead. Start with partitions = max(expected throughput / partition throughput, consumer count). Can't reduce partitions, only increase."}
+{"input": "inflation effects on savings /only:vec", "output": "vec: guide for inflation effects on savings\nvec: complete inflation effects on savings reference"}
+{"input": "nginx location block /only:vec", "output": "vec: how do nginx location blocks work and in what order are they matched\nvec: what is the syntax for nginx location directives including prefix and regex matching"}
+{"input": "IPv4 vs IPv6 /only:vec", "output": "vec: what are the key differences between ipv4 and ipv6 addressing\nvec: why is ipv6 necessary and how does the transition from ipv4 work"}
+{"input": "how to raise startup capital /only:hyde", "output": "hyde: Startup capital can come from bootstrapping, friends and family, angel investors, venture capital firms, crowdfunding platforms like Kickstarter, or government grants. Prepare a pitch deck with your business model, market size, traction metrics, and financial projections before approaching investors."}
+{"input": "tectonic plate boundaries /only:lex", "output": "lex: tectonic plate boundaries examples\nlex: tectonic plate boundaries documentation\nlex: tectonic plate boundaries best practices"}
+{"input": "surfing wave types /only:lex", "output": "lex: surfing wave types tutorial\nlex: surfing wave types examples\nlex: surfing wave types documentation"}
+{"input": "how to use a light meter /only:lex", "output": "lex: light meter photography exposure reading\nlex: incident reflected light meter settings"}
+{"input": "what is literary parody? /only:hyde", "output": "hyde: Literary parody imitates the style, conventions, or content of a specific work or genre for comedic or critical effect. It exaggerates distinctive features to expose flaws or absurdities. Examples include Don Quixote (parodying chivalric romances), Northanger Abbey (Gothic novels), and The Hitchhiker's Guide to the Galaxy (science fiction tropes)."}
+{"input": "how to install peel and stick wallpaper /only:lex", "output": "lex: peel and stick wallpaper installation\nlex: self-adhesive wallpaper apply walls"}
+{"input": "how to meditate for beginners /only:vec", "output": "vec: how do beginners start a daily meditation practice from scratch\nvec: what are simple meditation techniques for people who have never meditated before"}
+{"input": "renaissance sculpture techniques /only:lex", "output": "lex: renaissance sculpture techniques documentation\nlex: renaissance sculpture techniques examples\nlex: renaissance sculpture techniques best practices"}
+{"input": "how to save money effectively /only:vec", "output": "vec: what are effective strategies and habits for saving money consistently\nvec: how can I create a budget and save more money each month"}
+{"input": "GraphQL subscriptions websocket /only:vec", "output": "vec: how do graphql subscriptions work for real-time data updates\nvec: what is the underlying protocol for graphql subscriptions and how do you implement them"}
+{"input": "what is the significance of algae in ecosystems /only:lex", "output": "lex: algae ecosystem role food chain\nlex: algae oxygen production aquatic ecosystems\nlex: algae photosynthesis carbon cycle"}
+{"input": "React recent news November /only:lex", "output": "lex: React recent news November best practices\nlex: React recent news November examples\nlex: React recent news November guide"}
+{"input": "sailing adventures /only:lex", "output": "lex: sailing adventure trips voyages\nlex: sailing vacation destinations cruises\nlex: ocean sailing expedition"}
+{"input": "Elasticsearch query DSL /only:lex", "output": "lex: elasticsearch query dsl\nlex: elasticsearch bool must should\nlex: es full text search query"}
+{"input": "what are the elements of short stories? /only:hyde", "output": "hyde: The essential elements of a short story are plot (the sequence of events), character (the people involved), setting (time and place), conflict (the central struggle), theme (the underlying message), and point of view (the narrative perspective). Short stories typically focus on a single incident."}
+{"input": "Docker changelog 2026 /only:vec", "output": "vec: understanding Docker changelog 2026\nvec: complete Docker changelog 2026 reference"}
+{"input": "what is the role of sacred music in worship? /only:vec", "output": "vec: what role does sacred music play in religious worship services across different faiths\nvec: how do hymns, chants, and liturgical music enhance the experience of communal worship"}
+{"input": "hair cut /only:vec", "output": "vec: what are the popular haircut styles and how to choose the right one\nvec: how to communicate what haircut you want to a stylist or barber"}
+{"input": "Han Dynasty China achievements /only:lex", "output": "lex: han dynasty china achievements\nlex: han dynasty 206 bc history\nlex: ancient china han empire"}
+{"input": "how to increase productivity at work? /only:lex", "output": "lex: productivity work increase tips\nlex: workplace productivity time management techniques"}
+{"input": "what is the significance of the alhambra? /only:vec", "output": "vec: why is the Alhambra in Granada, Spain considered a masterpiece of Islamic architecture?\nvec: what is the cultural and historical significance of the Alhambra palace?"}
+{"input": "what is bioethics /only:lex", "output": "lex: bioethics definition medical ethics biology\nlex: bioethics issues euthanasia cloning genetic engineering"}
+{"input": "how to build a successful brand /only:lex", "output": "lex: brand building strategy identity positioning\nlex: brand identity logo messaging target audience"}
+{"input": "stellar cartography /only:vec", "output": "vec: what is stellar cartography and how do astronomers map the positions and movements of stars?\nvec: what tools and surveys are used to create detailed maps of stars in the galaxy?"}
+{"input": "what are the key principles of confucianism? /only:hyde", "output": "hyde: The key principles of Confucianism include Ren (benevolence/humaneness), Li (ritual propriety), Xiao (filial piety), Yi (righteousness), and Zhi (wisdom). The Five Relationships define social bonds: ruler-subject, parent-child, husband-wife, elder-younger sibling, and friend-friend. Each relationship carries reciprocal obligations."}
+{"input": "what changed in GitHub 2026 /only:lex", "output": "lex: what changed in GitHub 2026 tutorial\nlex: what changed in GitHub 2026 guide\nlex: what changed in GitHub 2026 documentation"}
+{"input": "when to introduce solid foods to a baby? /only:hyde", "output": "hyde: Most pediatricians recommend introducing solid foods around 6 months of age. Signs of readiness include sitting up with support, showing interest in food, and loss of the tongue-thrust reflex. Start with single-ingredient purees like sweet potato, avocado, or iron-fortified cereal, one new food every 3-5 days."}
+{"input": "how to mix modern and vintage decor /only:vec", "output": "vec: how do you blend vintage furniture and antique pieces with modern interior design elements\nvec: what are effective ways to combine mid-century or antique decor with contemporary minimalist style"}
+{"input": "latest climate tech updates /only:vec", "output": "vec: understanding latest climate tech updates\nvec: complete latest climate tech updates reference"}
+{"input": "SQL injection prevention /only:vec", "output": "vec: how to prevent sql injection attacks in web applications\nvec: why are parameterized queries and prepared statements important for database security"}
+{"input": "how to use a ring light /only:hyde", "output": "hyde: Place the ring light directly in front of your face at eye level, with the camera positioned in the center of the ring. Keep the light 12-24 inches from your face for an even, shadow-free glow. Adjust brightness to avoid overexposure. The circular catchlights in the eyes are a signature look."}
+{"input": "how to increase home resale value /only:lex", "output": "lex: increase home resale value renovations\nlex: home improvement ROI property value"}
+{"input": "how to set financial goals /only:lex", "output": "lex: set financial goals planning budget\nlex: financial goal setting SMART savings\nlex: personal finance goals short long term"}
+{"input": "GitHub new features 2025 /only:lex", "output": "lex: GitHub new features 2025 guide\nlex: GitHub new features 2025 tutorial\nlex: GitHub new features 2025 examples"}
+{"input": "how to handle inflation impact /only:vec", "output": "vec: how can individuals protect their finances and manage the impact of high inflation\nvec: what financial strategies help people cope with rising prices and reduced purchasing power"}
+{"input": "Python new features 2026 /only:vec", "output": "vec: guide for Python new features 2026\nvec: complete Python new features 2026 reference"}
+{"input": "how to manage anxiety naturally /only:hyde", "output": "hyde: Natural anxiety management includes regular aerobic exercise (30 minutes, 5 days a week), diaphragmatic breathing, progressive muscle relaxation, and limiting caffeine and alcohol. Cognitive behavioral techniques like thought journaling help identify and challenge anxious thinking patterns. Herbal supplements such as chamomile and ashwagandha show some evidence of benefit."}
+{"input": "how to talk to kids about bullying? /only:lex", "output": "lex: talk children bullying conversation advice\nlex: kids bullying prevention parent discussion"}
+{"input": "what is impact investing? /only:hyde", "output": "hyde: Impact investing directs capital toward companies and projects that generate measurable social or environmental benefits alongside financial returns. Unlike ESG screening, which excludes harmful sectors, impact investing actively targets positive outcomes \u2014 such as affordable housing, renewable energy, or microfinance. The Global Impact Investing Network (GIIN) estimates the market at over $1 trillion."}
+{"input": "what is competitive analysis /only:vec", "output": "vec: what is competitive analysis in business and how do companies use it to inform strategy\nvec: what frameworks and methods are used to conduct a competitive analysis of rival companies"}
+{"input": "latest updates on the ukraine conflict /only:vec", "output": "vec: what are the most recent developments in the Russia-Ukraine war as of 2025-2026?\nvec: what is the current status of the Ukraine conflict including ceasefire talks and territorial changes?"}
+{"input": "what is the role of research institutions /only:lex", "output": "lex: research institutions universities role science\nlex: research institutions funding labs innovation"}
+{"input": "how to enhance positive social impact? /only:lex", "output": "lex: enhance social impact community\nlex: positive social impact strategies nonprofit\nlex: social change community engagement"}
+{"input": "what is the significance of pilgrimage in religion? /only:hyde", "output": "hyde: Pilgrimage holds deep significance across religions. Muslims perform Hajj to Mecca as one of the Five Pillars. Christians journey to Jerusalem, Rome, and Santiago de Compostela. Hindus bathe in the Ganges at Varanasi. The physical journey symbolizes an inner spiritual transformation\u2014leaving ordinary life, enduring hardship, and arriving at a sacred place of renewal and encounter with the divine."}
+{"input": "how to stay updated on global affairs /only:lex", "output": "lex: global affairs news sources current events\nlex: world news reliable sources daily updates"}
+{"input": "where to buy affordable art prints /only:hyde", "output": "hyde: Affordable art prints are available on Society6, Redbubble, and Etsy, where independent artists sell prints starting at $15\u2013$30. IKEA offers framed prints under $20. For museum-quality reproductions, check Artsy or Saatchi Art's prints section. King & McGaw specializes in licensed fine art reproductions at mid-range prices."}
+{"input": "building resilience /only:hyde", "output": "hyde: Building resilience involves developing a growth mindset, maintaining social connections, and practicing self-care. Reframe setbacks as learning opportunities. Cultivate problem-solving skills rather than ruminating on what went wrong. Regular exercise, adequate sleep, and mindfulness strengthen your capacity to recover from stress. Resilient people accept what they cannot control and focus energy on what they can."}
+{"input": "what is the significance of community in spirituality? /only:vec", "output": "vec: why is community considered important in spiritual and religious practice?\nvec: how does belonging to a spiritual community enhance personal faith and practice?"}
+{"input": "what is the significance of the hajj in islam? /only:lex", "output": "lex: Hajj Islam pilgrimage Mecca significance\nlex: Hajj pillar Islam Kaaba rituals"}
+{"input": "what is the significance of community in ethics /only:vec", "output": "vec: what role does community play in ethical theory and moral life\nvec: how does communitarian philosophy view the relationship between community and ethics"}
+{"input": "how to reduce stress /only:hyde", "output": "hyde: Regular physical activity releases endorphins that naturally reduce stress. Practice deep breathing: inhale for 4 counts, hold for 4, exhale for 6. Other effective strategies include progressive muscle relaxation, journaling, limiting caffeine, and maintaining a consistent sleep schedule of 7-9 hours."}
+{"input": "how to improve sleep quality /only:hyde", "output": "hyde: Maintain a consistent sleep schedule, even on weekends. Keep your bedroom cool (65-68\u00b0F), dark, and quiet. Avoid screens for 30 minutes before bed. Limit caffeine after noon. Regular exercise improves sleep, but finish workouts at least 3 hours before bedtime."}
+{"input": "ancient Greece democracy Athens /only:lex", "output": "lex: ancient greece democracy athens\nlex: athenian democracy 5th century bc\nlex: greek democracy origins"}
+{"input": "solid principles explained /only:hyde", "output": "hyde: SOLID: Single Responsibility (one reason to change), Open/Closed (open for extension, closed for modification), Liskov Substitution (subtypes substitutable for base types), Interface Segregation (many specific interfaces over one general), Dependency Inversion (depend on abstractions not concretions). Following SOLID produces loosely coupled, testable, maintainable code."}
+{"input": "TypeScript changelog 2026 /only:vec", "output": "vec: understanding TypeScript changelog 2026\nvec: how to TypeScript changelog 2026"}
+{"input": "mac address vs ip address /only:vec", "output": "vec: what is the difference between a mac address and an ip address in networking\nvec: how do mac addresses and ip addresses work together for network communication"}
+{"input": "protobuf vs json /only:hyde", "output": "hyde: JSON: human-readable, self-describing, universal support, larger payload. Protobuf: binary format, 3-10x smaller, faster serialization, requires schema (.proto files), strong typing. Use JSON for public APIs, debugging, human interaction. Use Protobuf for internal microservices, high-throughput systems, gRPC. Schema evolution with field numbers enables backward compatibility."}
+{"input": "how to find emotional support /only:hyde", "output": "hyde: Find emotional support through multiple channels: talk to a trusted friend or family member. Contact a therapist through Psychology Today's directory or your insurance provider. Call the 988 Suicide and Crisis Lifeline (dial 988) for immediate help. Join support groups through NAMI or local community centers. Online therapy platforms like BetterHelp and Talkspace offer accessible counseling."}
+{"input": "how to plant a wildflower meadow? /only:vec", "output": "vec: how do I plant and establish a wildflower meadow in my yard\nvec: what steps are needed to create a wildflower meadow from seed"}
+{"input": "how to succeed in a digital marketing career? /only:vec", "output": "vec: what skills and experience do you need to build a successful digital marketing career\nvec: how to get started in digital marketing and advance to senior roles"}
+{"input": "what is the difference between realism and idealism /only:lex", "output": "lex: realism idealism philosophy difference\nlex: realism vs idealism metaphysics epistemology\nlex: philosophical realism idealism comparison"}
+{"input": "ai-driven analytics /only:hyde", "output": "hyde: AI-driven analytics uses machine learning algorithms to automatically detect patterns, anomalies, and trends in large datasets. Unlike traditional BI tools, AI analytics can generate predictive forecasts, perform natural language queries, and surface insights without manual configuration."}
+{"input": "how does the social contract theory explain governance /only:vec", "output": "vec: how does social contract theory explain the legitimacy of government\nvec: what did Hobbes, Locke, and Rousseau argue about the social contract and governance"}
+{"input": "how to grow tomatoes at home? /only:lex", "output": "lex: grow tomatoes home garden\nlex: tomato plant care watering sunlight\nlex: container tomatoes growing tips"}
+{"input": "what is the significance of archetypes? /only:lex", "output": "lex: archetypes Carl Jung collective unconscious\nlex: archetypes significance literature psychology"}
+{"input": "machine learning recent news November /only:lex", "output": "lex: machine learning recent news November tutorial\nlex: machine learning recent news November guide\nlex: machine learning recent news November examples"}
+{"input": "Shopify recent news October /only:vec", "output": "vec: learn about Shopify recent news October\nvec: complete Shopify recent news October reference"}
+{"input": "AWS latest version release /only:vec", "output": "vec: complete AWS latest version release reference\nvec: understanding AWS latest version release"}
+{"input": "budget backpacking europe /only:lex", "output": "lex: budget backpacking europe documentation\nlex: budget backpacking europe guide\nlex: budget backpacking europe examples"}
+{"input": "what are the elements of classical music? /only:hyde", "output": "hyde: Classical music is built on melody (a sequence of notes forming a theme), harmony (chords supporting the melody), rhythm (the timing and pattern of notes), dynamics (volume changes), and form (the structure, such as sonata, rondo, or theme and variations)."}
+{"input": "electronics soldering guide /only:vec", "output": "vec: learn about electronics soldering guide\nvec: guide for electronics soldering guide"}
+{"input": "balance sheet basics /only:lex", "output": "lex: balance sheet basics guide\nlex: balance sheet basics tutorial\nlex: balance sheet basics examples"}
+{"input": "soccer formations tactics /only:vec", "output": "vec: complete soccer formations tactics reference\nvec: understanding soccer formations tactics"}
+{"input": "how to improve interpersonal skills /only:vec", "output": "vec: what are effective ways to improve interpersonal and communication skills?\nvec: how can someone develop better listening, empathy, and social skills in personal and professional settings?"}
+{"input": "enum class /only:lex", "output": "lex: enum class C++ Java strongly typed\nlex: enum class Python enumeration members\nlex: enum class scoped enumeration"}
+{"input": "how to prepare for a long hike /only:hyde", "output": "hyde: Train by walking with a loaded pack for progressively longer distances over 4-6 weeks. Pack the ten essentials: navigation, sun protection, insulation, illumination, first aid, fire, tools, nutrition, hydration, and shelter. Check the weather forecast and file a trip plan with someone you trust."}
+{"input": "latest findings in climate science /only:vec", "output": "vec: what are the most recent scientific findings about climate change in 2025-2026\nvec: what do the latest climate science studies reveal about global warming trends"}
+{"input": "python decorators explained /only:lex", "output": "lex: python decorator function\nlex: python @ decorator syntax\nlex: python wrapper decorator"}
+{"input": "awk command examples /only:vec", "output": "vec: how to use awk for text processing and extracting columns from files\nvec: what are common awk patterns and commands for parsing structured text"}
+{"input": "what are the building blocks of life /only:hyde", "output": "hyde: The building blocks of life are four types of organic molecules: proteins (made from amino acids), nucleic acids (DNA and RNA from nucleotides), carbohydrates (sugars and polysaccharides), and lipids (fats and phospholipids). These molecules self-assemble into cells, the basic unit of all living organisms."}
+{"input": "largest countries by area /only:vec", "output": "vec: understanding largest countries by area\nvec: complete largest countries by area reference"}
+{"input": "where to find budget travel tips /only:hyde", "output": "hyde: To travel on a budget, book flights midweek, use fare comparison tools like Google Flights or Skyscanner, stay in hostels or use house-sitting platforms, and eat at local markets instead of tourist restaurants."}
+{"input": "how to choose a daycare? /only:lex", "output": "lex: daycare choose selection criteria childcare\nlex: daycare center evaluation safety ratio"}
+{"input": "how to make homemade pizza /only:lex", "output": "lex: homemade pizza dough recipe\nlex: pizza from scratch oven toppings\nlex: make pizza dough sauce crust"}
+{"input": "mandarin tones guide /only:lex", "output": "lex: mandarin tones guide guide\nlex: mandarin tones guide best practices\nlex: mandarin tones guide examples"}
+{"input": "what is the concept of original sin /only:hyde", "output": "hyde: Original sin is the Christian doctrine that humanity inherited a sinful nature from Adam and Eve's disobedience in the Garden of Eden. Augustine of Hippo formalized the teaching, arguing that all humans are born in a state of sin, redeemable only through divine grace."}
+{"input": "art class /only:vec", "output": "vec: where can I find art classes for beginners to learn painting or drawing\nvec: what types of art classes are available online and in person for adults"}
+{"input": "what is the veil of ignorance /only:hyde", "output": "hyde: The veil of ignorance is a thought experiment by John Rawls in A Theory of Justice (1971). It asks people to choose principles of justice from an \"original position\" where they don't know their own race, gender, wealth, or abilities. Rawls argues this produces fair, impartial rules."}
+{"input": "thailand /only:hyde", "output": "hyde: Thailand is a Southeast Asian country known for tropical beaches, ornate temples, and rich cuisine. Bangkok is the capital. Popular destinations include Chiang Mai, Phuket, and the islands of Koh Samui and Phi Phi. Thai food staples include pad thai, green curry, and tom yum soup."}
+{"input": "how to make scientific presentations engaging /only:vec", "output": "vec: how can scientists make their research presentations more engaging and accessible\nvec: what techniques improve the delivery and visual design of scientific talks"}
+{"input": "spice combinations guide /only:lex", "output": "lex: spice combinations guide documentation\nlex: spice combinations guide tutorial\nlex: spice combinations guide examples"}
+{"input": "what is the function of dialogue? /only:vec", "output": "vec: what purpose does dialogue serve in communication and storytelling\nvec: how does dialogue function in literature and everyday interaction"}
+{"input": "how do philosophical arguments work /only:lex", "output": "lex: philosophical arguments logic premises conclusion\nlex: philosophical reasoning deductive inductive"}
+{"input": "what is the ethics of war /only:hyde", "output": "hyde: Just war theory establishes criteria for morally permissible warfare. Jus ad bellum (right to go to war) requires just cause, legitimate authority, right intention, last resort, proportionality, and reasonable chance of success. Jus in bello (right conduct in war) requires distinction between combatants and civilians and proportional use of force."}
+{"input": "what are creative portrait ideas? /only:lex", "output": "lex: creative portrait photography ideas techniques\nlex: portrait photo ideas poses lighting creative"}
+{"input": "how to lose weight fast? /only:hyde", "output": "hyde: Safe weight loss is 1-2 pounds per week through a calorie deficit of 500-1000 calories daily. Combine a protein-rich diet with strength training and cardio. Avoid crash diets\u2014they cause muscle loss and metabolic slowdown. Drink water, sleep 7-9 hours, and track food intake for accountability."}
+{"input": "how to choose the right camera /only:hyde", "output": "hyde: Decide what you'll shoot most: landscapes, portraits, video, or street photography. Mirrorless cameras are lighter with faster autofocus, while DSLRs offer longer battery life and more lens options. Key specs to compare: sensor size (full-frame vs APS-C), megapixels, autofocus points, and video capabilities. Budget $500-1000 for a capable starter body."}
+{"input": "how to encourage siblings to get along? /only:hyde", "output": "hyde: Give each child one-on-one time to reduce competition for attention. Avoid comparing siblings or labeling them (\"the smart one\"). Teach conflict resolution: help them express feelings with \"I\" statements and find compromises. Praise cooperation when you see it. Set clear family rules about physical aggression and name-calling."}
+{"input": "Renaissance Italy Florence /only:hyde", "output": "hyde: The Renaissance began in Florence around 1400 due to wealth from banking and trade, political stability, and classical heritage. The Medici family, especially Lorenzo the Magnificent, patronized artists like Leonardo, Michelangelo, and Botticelli. Florence's guilds, humanism from rediscovered Greek texts, and competition among city-states drove cultural innovation."}
+{"input": "how to evaluate scientific claims critically /only:lex", "output": "lex: evaluate scientific claims critical thinking\nlex: scientific literacy evidence evaluation peer review"}
+{"input": "tech fix /only:vec", "output": "vec: how to troubleshoot and fix common technology problems with computers and devices\nvec: what are basic tech fixes for common software and hardware issues"}
+{"input": "latest uses of bioinformatics in research /only:lex", "output": "lex: bioinformatics research applications 2025 2026\nlex: bioinformatics genomics proteomics computational biology"}
+{"input": "yoga poses beginners /only:vec", "output": "vec: learn about yoga poses beginners\nvec: guide for yoga poses beginners"}
+{"input": "where to find heirloom seed suppliers? /only:hyde", "output": "hyde: Top heirloom seed suppliers include Baker Creek Heirloom Seeds, Seed Savers Exchange, and Johnny's Selected Seeds. Baker Creek offers over 1,800 open-pollinated varieties with free shipping. Seed Savers Exchange is a nonprofit dedicated to preserving rare heirloom varieties through their seed bank and catalog."}
+{"input": "what is the composition of the earth's atmosphere /only:hyde", "output": "hyde: Earth's atmosphere is composed of 78.09% nitrogen (N\u2082), 20.95% oxygen (O\u2082), 0.93% argon (Ar), and 0.04% carbon dioxide (CO\u2082). Trace gases include neon, helium, methane, krypton, and water vapor (0-4% depending on humidity). The atmosphere extends roughly 480 km above the surface and is divided into five layers: troposphere, stratosphere, mesosphere, thermosphere, and exosphere."}
+{"input": "event sourcing pattern /only:vec", "output": "vec: what is event sourcing and how does it differ from traditional crud data storage\nvec: how do you implement event sourcing and what are its benefits and challenges"}
+{"input": "Spanish Conquest Americas /only:vec", "output": "vec: how did spanish conquistadors conquer the aztec and inca empires\nvec: what factors enabled spain to colonize the americas so rapidly in the 16th century"}
+{"input": "http client /only:vec", "output": "vec: how to make HTTP requests using an HTTP client library\nvec: which HTTP client libraries are available for making API calls in different languages"}
+{"input": "what are the sacred texts of judaism /only:vec", "output": "vec: what are the main sacred texts and scriptures in the Jewish religious tradition\nvec: what is the Torah and what other texts are considered holy in Judaism"}
+{"input": "endangered species list /only:vec", "output": "vec: learn about endangered species list\nvec: guide for endangered species list"}
+{"input": "how are glaciers formed /only:lex", "output": "lex: glacier formation process ice\nlex: glaciers formed snow compaction accumulation"}
+{"input": "what is content marketing /only:vec", "output": "vec: what is content marketing and how does it attract customers\nvec: how do businesses use content marketing to drive traffic and build trust"}
+{"input": "what is cycling commute? /only:hyde", "output": "hyde: Cycling commute refers to using a bicycle as your primary transportation to and from work. Bike commuters typically ride 3-15 miles each way, saving on fuel costs while getting daily exercise. Many cities now have protected bike lanes and bike-share programs."}
+{"input": "what is the importance of spiritual leadership? /only:lex", "output": "lex: spiritual leadership organizations values\nlex: spiritual leadership workplace meaning purpose"}
+{"input": "what is interfaith dialogue? /only:hyde", "output": "hyde: Interfaith dialogue is the cooperative interaction between people of different religious traditions, aimed at mutual understanding rather than conversion. Organizations like the Parliament of the World's Religions bring together leaders from Christianity, Islam, Judaism, Hinduism, Buddhism, and others to discuss shared values and address social issues."}
+{"input": "what is the role of enzymes in digestion /only:vec", "output": "vec: how do enzymes help break down food during the digestive process\nvec: what role do specific enzymes like amylase and protease play in digestion"}
+{"input": "Aztec Empire civilization /only:lex", "output": "lex: aztec empire civilization\nlex: aztec tenochtitlan mexico\nlex: aztec history mesoamerica"}
+{"input": "where to find landscaping stones? /only:hyde", "output": "hyde: Landscaping stones can be purchased from home improvement stores like Home Depot and Lowe's, local stone yards, and quarries. For bulk orders, landscape supply companies deliver directly. River rock, flagstone, and pea gravel are popular choices for garden paths and borders."}
+{"input": "how to stay informed about politics /only:hyde", "output": "hyde: Read multiple news sources across the political spectrum: AP News and Reuters for wire reporting, then compare coverage from different outlets. Subscribe to newsletters like The Morning (NYT) or Axios AM. Follow legislative trackers like Congress.gov. Attend local government meetings and candidate forums."}
+{"input": "latest GitHub updates /only:lex", "output": "lex: latest GitHub updates guide\nlex: latest GitHub updates documentation\nlex: latest GitHub updates best practices"}
+{"input": "how tourism affects local cultures /only:vec", "output": "vec: what are the positive and negative effects of tourism on local cultural traditions and communities\nvec: how does mass tourism change the customs, language, and daily life of host communities"}
+{"input": "how to find a reliable realtor /only:lex", "output": "lex: find reliable realtor real estate agent\nlex: choosing trustworthy real estate agent"}
+{"input": "monorepo vs polyrepo /only:vec", "output": "vec: what are the tradeoffs between using a monorepo versus multiple repositories\nvec: when does a monorepo make sense and what tools help manage large monorepos"}
+{"input": "habit formation science /only:lex", "output": "lex: habit formation science examples\nlex: habit formation science tutorial\nlex: habit formation science documentation"}
+{"input": "how to conserve energy in the office? /only:hyde", "output": "hyde: Switch to LED lighting and install occupancy sensors in conference rooms and restrooms. Set computers to sleep mode after 10 minutes of inactivity. Use smart power strips to eliminate phantom loads. Set thermostats to 68\u00b0F in winter and 76\u00b0F in summer. These measures typically reduce office energy use by 20-30%."}
+{"input": "what is a mathematical model /only:hyde", "output": "hyde: A mathematical model uses equations and variables to represent a real-world system. For example, the SIR model uses differential equations to predict infectious disease spread: dS/dt = -\u03b2SI, dI/dt = \u03b2SI - \u03b3I, dR/dt = \u03b3I. Models are validated by comparing predictions against observed data and refined iteratively."}
+{"input": "unit test vs integration test /only:lex", "output": "lex: unit test integration test difference\nlex: testing pyramid unit integration e2e\nlex: unit test isolation mocking"}
+{"input": "what changed in Python 2026 /only:vec", "output": "vec: guide for what changed in Python 2026\nvec: learn about what changed in Python 2026"}
+{"input": "how do philosophers explore the nature of reality /only:vec", "output": "vec: how have philosophers historically explored and debated the nature of reality and existence?\nvec: what are the main metaphysical positions on whether reality is fundamentally material, mental, or something else?"}
+{"input": "what are the teachings of the baha'i faith? /only:vec", "output": "vec: what are the core beliefs and teachings of the Baha'i faith\nvec: what did Baha'u'llah teach about unity, equality, and world peace"}
+{"input": "what is compositional balance? /only:hyde", "output": "hyde: Compositional balance refers to the distribution of visual weight within an image or artwork. Symmetrical balance places equal elements on both sides of a central axis, while asymmetrical balance uses contrasting elements \u2014 such as a large shape offset by a smaller, brighter one \u2014 to create dynamic equilibrium."}
+{"input": "how does the body maintain homeostasis /only:vec", "output": "vec: what mechanisms does the human body use to maintain internal stability\nvec: how do feedback loops help regulate body temperature and blood sugar levels"}
+{"input": "database transaction isolation levels /only:hyde", "output": "hyde: Isolation levels from weakest to strongest: Read Uncommitted (dirty reads possible), Read Committed (sees only committed data, default in PostgreSQL), Repeatable Read (no non-repeatable reads), Serializable (no phantom reads, full isolation). Higher isolation = more locking = lower concurrency. Choose based on consistency needs vs performance."}
+{"input": "what to pack in a hospital bag for labor? /only:hyde", "output": "hyde: Hospital bag essentials for labor: ID and insurance card, birth plan, comfortable robe or gown, slippers, toiletries, phone charger, going-home outfit for you and baby, car seat, nursing bra, newborn diapers, snacks, and a pillow from home."}
+{"input": "how to learn about native american culture /only:hyde", "output": "hyde: Visit the National Museum of the American Indian (Smithsonian) or local tribal cultural centers. Read works by Native authors like Joy Harjo, Tommy Orange, and Robin Wall Kimmerer. Attend powwows and cultural events when open to the public. Learn which tribal nations are indigenous to your area."}
+{"input": "what is burnout? /only:lex", "output": "lex: burnout syndrome workplace exhaustion\nlex: burnout symptoms causes recovery"}
+{"input": "dependency injection benefits /only:hyde", "output": "hyde: Dependency injection provides dependencies from outside rather than creating them internally. Class receives DatabaseService via constructor instead of instantiating it. Benefits: loose coupling, easy testing with mocks, flexible configuration. Instead of new EmailService(), inject interface IEmailService\u2014swap implementations without changing consumer code."}
+{"input": "what is the role of media in politics /only:vec", "output": "vec: what role does the media play in shaping political discourse and public opinion\nvec: how does news coverage and media bias influence political outcomes and democracy"}
+{"input": "what are plasmids /only:lex", "output": "lex: plasmid DNA circular extrachromosomal\nlex: plasmid bacteria gene transfer cloning\nlex: plasmid vector molecular biology"}
+{"input": "how to engage in civil political discussions /only:hyde", "output": "hyde: Start by listening to understand, not to rebut. Ask questions like \"What experiences led you to that view?\" Avoid personal attacks and generalizations. Find common ground before addressing differences. Use \"I\" statements instead of \"you always\" accusations. Accept that changing minds takes time and repeated respectful engagement."}
+{"input": "regex lookahead lookbehind /only:hyde", "output": "hyde: Lookahead (?=pattern) matches a position followed by pattern without consuming it. Negative lookahead (?!pattern) matches where pattern doesn't follow. Lookbehind (?<=pattern) matches a position preceded by pattern. Example: \\d+(?= dollars) matches numbers followed by 'dollars'."}
+{"input": "how to diversify investment portfolio /only:hyde", "output": "hyde: Diversify across asset classes: stocks, bonds, real estate, and commodities. Within stocks, spread across sectors (tech, healthcare, energy) and geographies (US, international, emerging markets). Use index funds or ETFs for broad exposure. A common allocation is 60% stocks, 30% bonds, 10% alternatives, adjusted by age and risk tolerance."}
+{"input": "recent GitHub changes 2026 /only:lex", "output": "lex: recent GitHub changes 2026 tutorial\nlex: recent GitHub changes 2026 examples\nlex: recent GitHub changes 2026 guide"}
+{"input": "Sentry error tracking /only:vec", "output": "vec: understanding Sentry error tracking\nvec: learn about Sentry error tracking"}
+{"input": "what is the principle of utility? /only:vec", "output": "vec: what is the principle of utility in utilitarian ethics as defined by Bentham and Mill\nvec: how does the utilitarian principle of utility evaluate actions based on their consequences for overall happiness"}
+{"input": "portrait photography tips /only:vec", "output": "vec: what are the best tips for taking professional-quality portrait photographs?\nvec: how should you set up lighting, posing, and camera settings for portrait photography?"}
+{"input": "what are the core practices of the bah\u00e1'\u00ed faith? /only:lex", "output": "lex: Bah\u00e1'\u00ed faith core practices worship\nlex: Bah\u00e1'\u00ed religion prayer fasting principles"}
+{"input": "how to find emotional support /only:vec", "output": "vec: where can someone find emotional support during difficult times or mental health challenges\nvec: what resources are available for people seeking emotional support and counseling"}
+{"input": "soccer training drills /only:vec", "output": "vec: what are effective soccer training drills for improving skills and fitness\nvec: which soccer drills help players improve dribbling, passing, and shooting"}
+{"input": "how to participate in a protest /only:hyde", "output": "hyde: Know your rights: the First Amendment protects peaceful assembly on public property. Bring water, snacks, a phone charger, and ID. Write an emergency contact number on your arm. Stay with a buddy and agree on a meeting point. Wear comfortable shoes and weather-appropriate clothing. If tear gas is used, move upwind. Document police interactions by filming at a safe distance."}
+{"input": "what is the importance of peer review /only:lex", "output": "lex: peer review importance scientific publishing\nlex: peer review process academic research"}
+{"input": "idempotency api design /only:hyde", "output": "hyde: Idempotent operations produce the same result regardless of how many times called. GET, PUT, DELETE are naturally idempotent. POST needs idempotency keys: client sends unique key, server stores result, returns cached result on retry. Store keys with TTL (24h). Critical for payment APIs\u2014prevents double charges on network retry."}
+{"input": "AWS Lambda functions setup /only:lex", "output": "lex: AWS Lambda functions setup documentation\nlex: AWS Lambda functions setup examples\nlex: AWS Lambda functions setup tutorial"}
+{"input": "how to negotiate a business deal /only:hyde", "output": "hyde: Prepare by researching the other party's priorities and constraints. Define your BATNA (best alternative to a negotiated agreement) and walk-away point. Open with an ambitious but defensible anchor. Listen more than you talk. Focus on interests, not positions, to find creative win-win solutions."}
+{"input": "how do ethical theories apply to social issues /only:vec", "output": "vec: how are ethical theories like utilitarianism and deontology applied to real-world social issues?\nvec: what ethical frameworks do philosophers use to analyze problems like poverty, inequality, and healthcare?"}
+{"input": "S3 bucket policy /only:hyde", "output": "hyde: S3 bucket policies are resource-based JSON policies attached to buckets. Grant public read: {\"Statement\":[{\"Effect\":\"Allow\",\"Principal\":\"*\",\"Action\":\"s3:GetObject\",\"Resource\":\"arn:aws:s3:::bucket/*\"}]}. IAM policies attach to users/roles. Use bucket policies for cross-account access, IAM for user-specific permissions. Block public access settings override policies."}
+{"input": "what is virtue signaling? /only:vec", "output": "vec: what does virtue signaling mean and how is the term used in political and social discourse?\nvec: how do people use virtue signaling to publicly express moral values without substantive action?"}
+{"input": "what is the significance of the sacred tree in various faiths? /only:hyde", "output": "hyde: Sacred trees appear across religions: the Bodhi tree where Buddha attained enlightenment, the Tree of Life in Genesis, Yggdrasil in Norse mythology connecting the nine worlds, and the banyan in Hinduism symbolizing eternal life. Trees represent growth, connection between earth and heaven, and renewal."}
+{"input": "list sort /only:lex", "output": "lex: sort list programming algorithm\nlex: list sort Python Java ascending descending\nlex: array sorting methods comparison"}
+{"input": "what makes a good thriller novel? /only:lex", "output": "lex: thriller novel elements writing techniques\nlex: good thriller pacing suspense plot twists"}
+{"input": "what is the significance of community in spirituality? /only:hyde", "output": "hyde: Spiritual communities provide shared worship, accountability, and mutual support that deepen individual faith. In Christianity, the church body gathers for fellowship; in Buddhism, the sangha is one of the Three Jewels; in Judaism, a minyan of ten is required for communal prayer. Communal practice reinforces commitment and provides belonging."}
+{"input": "latest Python updates /only:vec", "output": "vec: how to latest Python updates\nvec: complete latest Python updates reference"}
+{"input": "how to pursue a career in scientific research /only:lex", "output": "lex: scientific research career path academia\nlex: career scientist PhD research position"}
+{"input": "where to buy organic seeds? /only:lex", "output": "lex: buy organic seeds online garden\nlex: organic seed suppliers heirloom non-GMO"}
+{"input": "industrial revolution inventions /only:vec", "output": "vec: how to industrial revolution inventions\nvec: guide for industrial revolution inventions"}
+{"input": "what is an elevator pitch /only:hyde", "output": "hyde: An elevator pitch is a concise, 30-60 second summary of who you are and what you offer. Structure it as: hook (attention-grabbing opening), problem you solve, your solution, and a call to action. Practice until it sounds conversational, not rehearsed."}
+{"input": "how to meditate for beginners /only:hyde", "output": "hyde: Sit comfortably with your back straight. Close your eyes and focus on your breath\u2014notice each inhale and exhale. When thoughts arise, gently return attention to your breathing without judgment. Start with 5 minutes daily and gradually increase. Consistency matters more than duration."}
+{"input": "where to find datasets for scientific research /only:hyde", "output": "hyde: Public research datasets are available from repositories such as Kaggle, the UCI Machine Learning Repository, NASA's Open Data Portal, NOAA Climate Data, and institutional data archives like Harvard Dataverse and Zenodo."}

+ 4444 - 0
finetune/data/qmd_only_variants.jsonl

@@ -0,0 +1,4444 @@
+{"input": "how tourism affects local cultures /only:lex", "output": "lex: tourism impact local culture\nlex: cultural effects mass tourism communities\nlex: tourist influence indigenous traditions"}
+{"input": "how tourism affects local cultures /only:vec", "output": "vec: what are the positive and negative effects of tourism on local cultural traditions and communities\nvec: how does mass tourism change the customs, language, and daily life of host communities"}
+{"input": "how tourism affects local cultures /only:hyde", "output": "hyde: Tourism often leads to cultural commodification, where traditional dances, crafts, and rituals are adapted to meet tourist expectations. In Bali, temple ceremonies have been shortened and repackaged as entertainment, diluting their spiritual significance for locals."}
+{"input": "how to ferment foods at home /only:lex", "output": "lex: home fermentation vegetables guide\nlex: lacto fermentation salt brine method\nlex: homemade sauerkraut kimchi ferment"}
+{"input": "how to ferment foods at home /only:vec", "output": "vec: what is the step-by-step process for fermenting vegetables at home using salt brine\nvec: how do you safely ferment foods like sauerkraut and kimchi in your kitchen"}
+{"input": "how to ferment foods at home /only:hyde", "output": "hyde: To ferment vegetables at home, submerge them in a 2-3% salt brine in a mason jar. Keep at room temperature (65-75\u00b0F) for 3-7 days, burping the jar daily to release CO2. Taste after day 3 and refrigerate once the tanginess is to your liking."}
+{"input": "how to mix modern and vintage decor /only:lex", "output": "lex: modern vintage decor mix interior design\nlex: combining antique furniture contemporary style"}
+{"input": "how to mix modern and vintage decor /only:vec", "output": "vec: how do you blend vintage furniture and antique pieces with modern interior design elements\nvec: what are effective ways to combine mid-century or antique decor with contemporary minimalist style"}
+{"input": "how to mix modern and vintage decor /only:hyde", "output": "hyde: Pair a vintage wooden dresser with a sleek modern mirror. Use neutral wall colors as a backdrop and let one statement antique piece anchor each room. Mix textures\u2014a velvet mid-century sofa with clean-lined metal side tables creates visual contrast without clashing."}
+{"input": "how to perform a scientific experiment /only:lex", "output": "lex: scientific experiment steps procedure\nlex: scientific method hypothesis variables control\nlex: lab experiment design methodology"}
+{"input": "how to perform a scientific experiment /only:vec", "output": "vec: what are the steps to design and carry out a controlled scientific experiment\nvec: how do you formulate a hypothesis, set up controls, and collect data in a scientific experiment"}
+{"input": "how to perform a scientific experiment /only:hyde", "output": "hyde: Step 1: Define your research question. Step 2: Formulate a testable hypothesis. Step 3: Identify independent, dependent, and controlled variables. Step 4: Design your procedure with a control group. Step 5: Collect and record data systematically. Step 6: Analyze results and draw conclusions."}
+{"input": "web mail /only:lex", "output": "lex: webmail client email browser\nlex: web-based email service provider\nlex: online email login inbox access"}
+{"input": "web mail /only:vec", "output": "vec: how to access and use web-based email services like Gmail, Outlook, or Yahoo Mail through a browser\nvec: what are the most popular webmail providers and how do their features compare"}
+{"input": "web mail /only:hyde", "output": "hyde: Webmail allows you to access your email through a web browser without installing a desktop client. Popular services include Gmail (mail.google.com), Outlook.com, Yahoo Mail, and ProtonMail. Log in with your credentials to read, compose, and manage messages from any device."}
+{"input": "what does the quran cover /only:lex", "output": "lex: quran topics contents themes\nlex: quran teachings subjects covered"}
+{"input": "what does the quran cover /only:vec", "output": "vec: what are the main topics and themes discussed in the Quran\nvec: what subjects does the Quran address including theology, law, morality, and prophetic stories"}
+{"input": "what does the quran cover /only:hyde", "output": "hyde: The Quran covers topics including monotheism (tawhid), the Day of Judgment, stories of prophets from Adam to Muhammad, ethical conduct, family law, dietary rules, charity (zakat), prayer, and the relationship between God and humanity. It contains 114 surahs organized roughly by length."}
+{"input": "web config /only:lex", "output": "lex: web.config file IIS ASP.NET\nlex: web server configuration settings\nlex: web.config XML settings authentication"}
+{"input": "web config /only:vec", "output": "vec: how to configure a web.config file for IIS and ASP.NET applications\nvec: what settings and sections are available in a web.config file for web server configuration"}
+{"input": "web config /only:hyde", "output": "hyde: The web.config file is an XML configuration file used by IIS and ASP.NET. It controls settings such as authentication, authorization, custom errors, connection strings, and HTTP handlers. Place it in the root of your application directory. Example: <configuration><system.web><compilation debug=\"true\"/></system.web></configuration>"}
+{"input": "how to choose farm equipment /only:lex", "output": "lex: farm equipment selection tractor implements\nlex: agricultural machinery buying guide\nlex: choosing tractor size horsepower acreage"}
+{"input": "how to choose farm equipment /only:vec", "output": "vec: what factors should you consider when selecting farm equipment like tractors and implements for your land\nvec: how do you match the right agricultural machinery to your farm size, crop type, and budget"}
+{"input": "how to choose farm equipment /only:hyde", "output": "hyde: Match tractor horsepower to your acreage: 25-45 HP for under 50 acres, 45-85 HP for 50-200 acres, and 100+ HP for large operations. Consider PTO power for running implements like mowers and tillers. Evaluate whether two-wheel or four-wheel drive suits your terrain. Used equipment can save 40-60% over new."}
+{"input": "how do thought experiments aid philosophical reasoning /only:lex", "output": "lex: thought experiments philosophy reasoning\nlex: philosophical thought experiment trolley problem examples"}
+{"input": "how do thought experiments aid philosophical reasoning /only:vec", "output": "vec: how do philosophers use thought experiments like the trolley problem to test moral and logical intuitions\nvec: what role do hypothetical scenarios play in advancing philosophical arguments and theories"}
+{"input": "how do thought experiments aid philosophical reasoning /only:hyde", "output": "hyde: Thought experiments isolate specific variables in complex problems by constructing hypothetical scenarios. Judith Jarvis Thomson's violinist argument tests bodily autonomy intuitions, while the trolley problem probes deontological vs. consequentialist reasoning. They help philosophers identify hidden assumptions and clarify conceptual boundaries."}
+{"input": "what is the significance of logic in philosophy /only:lex", "output": "lex: logic philosophy significance role\nlex: formal logic philosophical argument validity"}
+{"input": "what is the significance of logic in philosophy /only:vec", "output": "vec: why is logic considered foundational to philosophical inquiry and argumentation\nvec: how does formal and informal logic help philosophers evaluate the validity of arguments"}
+{"input": "what is the significance of logic in philosophy /only:hyde", "output": "hyde: Logic provides the structural framework for all philosophical reasoning. Aristotle's syllogistic logic established rules for valid deduction. Modern formal logic, including propositional and predicate calculus, allows philosophers to precisely evaluate argument validity, identify fallacies, and construct rigorous proofs."}
+{"input": "how to train for a 5k run /only:lex", "output": "lex: 5k run training plan beginner\nlex: couch to 5k running program schedule"}
+{"input": "how to train for a 5k run /only:vec", "output": "vec: what is a good beginner training plan to prepare for running a 5k race\nvec: how many weeks does it take to train for a 5k and what should each week look like"}
+{"input": "how to train for a 5k run /only:hyde", "output": "hyde: An 8-week 5K training plan for beginners: Weeks 1-2, alternate 1 min running and 2 min walking for 20 minutes, 3 days per week. Weeks 3-4, run 3 min, walk 1 min. Weeks 5-6, run 5 min, walk 1 min. Weeks 7-8, run continuously for 25-30 minutes. Include rest days between runs."}
+{"input": "how to engage with political dialogues /only:lex", "output": "lex: political dialogue conversation civil discourse\nlex: discussing politics constructively disagreement"}
+{"input": "how to engage with political dialogues /only:vec", "output": "vec: how can you have productive political conversations with people who hold different views\nvec: what techniques help maintain respectful and constructive political dialogue across ideological divides"}
+{"input": "how to engage with political dialogues /only:hyde", "output": "hyde: Start by listening actively and asking clarifying questions rather than immediately countering. Use \"I\" statements instead of accusations. Acknowledge shared values before addressing disagreements. Avoid strawmanning\u2014restate the other person's position accurately before responding. Focus on specific policies rather than party labels."}
+{"input": "what is competitive analysis /only:lex", "output": "lex: competitive analysis business strategy\nlex: competitor analysis market research framework"}
+{"input": "what is competitive analysis /only:vec", "output": "vec: what is competitive analysis in business and how do companies use it to inform strategy\nvec: what frameworks and methods are used to conduct a competitive analysis of rival companies"}
+{"input": "what is competitive analysis /only:hyde", "output": "hyde: Competitive analysis is the process of identifying competitors and evaluating their strategies, strengths, and weaknesses relative to your own. Key frameworks include Porter's Five Forces, SWOT analysis, and competitor profiling. Analyze pricing, product features, market share, marketing channels, and customer reviews."}
+{"input": "how does the united nations operate /only:lex", "output": "lex: united nations structure operations governance\nlex: UN general assembly security council agencies"}
+{"input": "how does the united nations operate /only:vec", "output": "vec: how is the United Nations structured and what are the roles of its main bodies like the General Assembly and Security Council\nvec: how does the UN make decisions, enforce resolutions, and coordinate international action"}
+{"input": "how does the united nations operate /only:hyde", "output": "hyde: The UN operates through six principal organs: the General Assembly (all 193 members, one vote each), the Security Council (15 members, 5 permanent with veto power), the Secretariat, the International Court of Justice, ECOSOC, and the Trusteeship Council. Resolutions require majority votes; Security Council decisions need 9 of 15 votes with no P5 veto."}
+{"input": "what are the crusades? /only:lex", "output": "lex: crusades medieval holy wars Jerusalem\nlex: crusades history 1096 Christian Muslim"}
+{"input": "what are the crusades? /only:vec", "output": "vec: what were the Crusades and why did European Christians launch military campaigns to the Holy Land\nvec: what were the major Crusades, their outcomes, and their lasting impact on Europe and the Middle East"}
+{"input": "what are the crusades? /only:hyde", "output": "hyde: The Crusades were a series of religious wars between 1096 and 1291, initiated by the Latin Church to recapture the Holy Land from Muslim rule. The First Crusade (1096-1099) captured Jerusalem. Subsequent crusades had mixed results, and the last Crusader stronghold at Acre fell in 1291."}
+{"input": "what is a literary theme? /only:lex", "output": "lex: literary theme definition examples\nlex: theme in literature central idea meaning"}
+{"input": "what is a literary theme? /only:vec", "output": "vec: what is a literary theme and how does it differ from the subject or plot of a story\nvec: how do authors develop and convey themes throughout a work of literature"}
+{"input": "what is a literary theme? /only:hyde", "output": "hyde: A literary theme is the underlying message or central idea explored in a work of fiction. Unlike the subject (what the story is about), the theme is what the story says about that subject. For example, a novel's subject might be war, while its theme could be \"war dehumanizes both victors and victims.\""}
+{"input": "what is the ethical significance of consent /only:lex", "output": "lex: consent ethics moral significance\nlex: informed consent autonomy medical ethics"}
+{"input": "what is the ethical significance of consent /only:vec", "output": "vec: why is consent considered ethically important in medical, legal, and interpersonal contexts\nvec: how does the concept of informed consent protect individual autonomy and human dignity"}
+{"input": "what is the ethical significance of consent /only:hyde", "output": "hyde: Consent is ethically significant because it respects individual autonomy\u2014the right of persons to make decisions about their own bodies and lives. In medical ethics, informed consent requires that patients understand the risks, benefits, and alternatives before agreeing to treatment. Without valid consent, actions become coercive regardless of their intent."}
+{"input": "paint mix /only:lex", "output": "lex: paint color mixing guide ratios\nlex: acrylic oil paint mixing technique\nlex: paint color chart combinations blending"}
+{"input": "paint mix /only:vec", "output": "vec: how do you mix paint colors to achieve specific shades and hues\nvec: what are the basic color mixing ratios and techniques for acrylic and oil paints"}
+{"input": "paint mix /only:hyde", "output": "hyde: Start with the three primary colors: red, blue, and yellow. Mix red and blue for purple, blue and yellow for green, red and yellow for orange. Add white to lighten (tint) and black to darken (shade). Mix small amounts gradually\u2014it takes less dark paint to shift a light color than the reverse."}
+{"input": "how to conserve energy in the office? /only:lex", "output": "lex: office energy conservation tips\nlex: reduce electricity workplace energy saving"}
+{"input": "how to conserve energy in the office? /only:vec", "output": "vec: what are practical ways to reduce energy consumption in an office or workplace\nvec: how can offices save electricity through lighting, HVAC, and equipment management"}
+{"input": "how to conserve energy in the office? /only:hyde", "output": "hyde: Switch to LED lighting and install occupancy sensors in conference rooms and restrooms. Set computers to sleep mode after 10 minutes of inactivity. Use smart power strips to eliminate phantom loads. Set thermostats to 68\u00b0F in winter and 76\u00b0F in summer. These measures typically reduce office energy use by 20-30%."}
+{"input": "how to test soil ph? /only:lex", "output": "lex: soil pH test kit method\nlex: test soil acidity alkalinity garden"}
+{"input": "how to test soil ph? /only:vec", "output": "vec: how do you test the pH level of garden soil using a home test kit or meter\nvec: what methods are available for measuring soil pH and interpreting the results for gardening"}
+{"input": "how to test soil ph? /only:hyde", "output": "hyde: Insert a soil pH meter probe 4-6 inches into moist soil for a quick reading. For more accuracy, use a chemical test kit: mix one part soil with one part distilled water, let settle, then add the indicator solution. Compare the color to the chart. Most garden plants prefer pH 6.0-7.0."}
+{"input": "navigating sustainable building certifications /only:lex", "output": "lex: sustainable building certification LEED BREEAM\nlex: green building standards certification process"}
+{"input": "navigating sustainable building certifications /only:vec", "output": "vec: what are the main sustainable building certifications like LEED, BREEAM, and WELL, and how do you achieve them\nvec: how do you navigate the requirements and application process for green building certifications"}
+{"input": "navigating sustainable building certifications /only:hyde", "output": "hyde: LEED (Leadership in Energy and Environmental Design) awards points across categories: energy, water, materials, indoor quality, and site selection. Projects need 40-49 points for Certified, 50-59 for Silver, 60-79 for Gold, and 80+ for Platinum. BREEAM is more common in Europe and uses a percentage-based scoring system."}
+{"input": "what is the role of religious leaders? /only:lex", "output": "lex: religious leaders role function community\nlex: clergy priests imams rabbis duties responsibilities"}
+{"input": "what is the role of religious leaders? /only:vec", "output": "vec: what roles do religious leaders like priests, imams, and rabbis play in their communities\nvec: how do religious leaders guide spiritual practice, provide counsel, and serve their congregations"}
+{"input": "what is the role of religious leaders? /only:hyde", "output": "hyde: Religious leaders serve as spiritual guides, interpreters of sacred texts, and community organizers. A parish priest administers sacraments, leads worship, and provides pastoral care. An imam leads prayers, delivers Friday sermons (khutbah), and offers religious guidance. Rabbis teach Torah, arbitrate Jewish law, and counsel congregants."}
+{"input": "how to maintain a balanced diet /only:lex", "output": "lex: balanced diet nutrition food groups\nlex: healthy eating meal plan macronutrients"}
+{"input": "how to maintain a balanced diet /only:vec", "output": "vec: how do you maintain a balanced diet with the right proportions of proteins, carbohydrates, fats, and vitamins\nvec: what does a daily balanced meal plan look like for an average adult"}
+{"input": "how to maintain a balanced diet /only:hyde", "output": "hyde: A balanced diet includes roughly 45-65% carbohydrates, 20-35% fats, and 10-35% protein. Fill half your plate with fruits and vegetables, a quarter with whole grains, and a quarter with lean protein. Aim for 25-30g of fiber daily. Limit added sugars to under 25g and sodium to under 2300mg per day."}
+{"input": "what is moral philosophy /only:lex", "output": "lex: moral philosophy ethics definition branches\nlex: ethics normative metaethics applied"}
+{"input": "what is moral philosophy /only:vec", "output": "vec: what is moral philosophy and what are its main branches including normative ethics and metaethics\nvec: how does moral philosophy address questions of right and wrong, virtue, and duty"}
+{"input": "what is moral philosophy /only:hyde", "output": "hyde: Moral philosophy, or ethics, is the branch of philosophy concerned with questions of right and wrong conduct. It includes three main branches: metaethics (the nature of moral judgments), normative ethics (frameworks like utilitarianism, deontology, and virtue ethics), and applied ethics (specific issues like abortion or euthanasia)."}
+{"input": "how to use a light meter /only:lex", "output": "lex: light meter photography exposure reading\nlex: incident reflected light meter settings"}
+{"input": "how to use a light meter /only:vec", "output": "vec: how do you use a handheld light meter to measure exposure for photography\nvec: what is the difference between incident and reflected light metering and when should you use each"}
+{"input": "how to use a light meter /only:hyde", "output": "hyde: Point an incident light meter at the camera from the subject's position with the dome facing the lens. It reads the light falling on the subject, giving accurate exposure regardless of subject brightness. For reflected metering, point the meter at the subject from the camera position. Set the ISO first, then read the recommended aperture and shutter speed."}
+{"input": "what is the significance of creative writing? /only:lex", "output": "lex: creative writing significance purpose value\nlex: creative writing literary expression storytelling"}
+{"input": "what is the significance of creative writing? /only:vec", "output": "vec: why is creative writing significant as a form of artistic expression and communication\nvec: how does creative writing contribute to culture, self-expression, and empathy"}
+{"input": "what is the significance of creative writing? /only:hyde", "output": "hyde: Creative writing allows individuals to explore complex emotions, construct meaning, and communicate experiences that resist straightforward exposition. Through fiction, poetry, and memoir, writers develop empathy by inhabiting other perspectives. Studies show that reading literary fiction improves theory of mind and emotional intelligence."}
+{"input": "what are the key principles of confucianism? /only:lex", "output": "lex: confucianism key principles ren li xiao\nlex: confucian philosophy five relationships virtues"}
+{"input": "what are the key principles of confucianism? /only:vec", "output": "vec: what are the core principles and virtues of Confucianism such as ren, li, and filial piety\nvec: how do the five key relationships in Confucianism structure social and moral order"}
+{"input": "what are the key principles of confucianism? /only:hyde", "output": "hyde: The key principles of Confucianism include Ren (benevolence/humaneness), Li (ritual propriety), Xiao (filial piety), Yi (righteousness), and Zhi (wisdom). The Five Relationships define social bonds: ruler-subject, parent-child, husband-wife, elder-younger sibling, and friend-friend. Each relationship carries reciprocal obligations."}
+{"input": "what is agile project management /only:lex", "output": "lex: agile project management scrum kanban\nlex: agile methodology sprints iterative development"}
+{"input": "what is agile project management /only:vec", "output": "vec: what is agile project management and how does it differ from traditional waterfall approaches\nvec: how do agile frameworks like Scrum and Kanban organize work into sprints and iterations"}
+{"input": "what is agile project management /only:hyde", "output": "hyde: Agile project management is an iterative approach that delivers work in short cycles called sprints (typically 1-4 weeks). Teams hold daily standups, plan sprint backlogs, and conduct retrospectives. Key frameworks include Scrum (with defined roles: Product Owner, Scrum Master, Team) and Kanban (continuous flow with WIP limits)."}
+{"input": "what is the significance of the harlem renaissance /only:lex", "output": "lex: Harlem Renaissance significance African American culture\nlex: Harlem Renaissance 1920s literature art music"}
+{"input": "what is the significance of the harlem renaissance /only:vec", "output": "vec: what was the Harlem Renaissance and why was it significant for African American culture and arts\nvec: which writers, artists, and musicians defined the Harlem Renaissance and what impact did they have"}
+{"input": "what is the significance of the harlem renaissance /only:hyde", "output": "hyde: The Harlem Renaissance (1920s-1930s) was a cultural explosion centered in Harlem, New York, that transformed African American literature, music, and art. Langston Hughes, Zora Neale Hurston, and Claude McKay produced groundbreaking literary works. Jazz and blues flourished at the Cotton Club. The movement asserted Black identity and challenged racial stereotypes."}
+{"input": "what triggered world war i /only:lex", "output": "lex: World War I causes triggers assassination\nlex: WWI outbreak 1914 Franz Ferdinand alliances"}
+{"input": "what triggered world war i /only:vec", "output": "vec: what events and conditions triggered the start of World War I in 1914\nvec: how did the assassination of Archduke Franz Ferdinand lead to a full-scale world war through the alliance system"}
+{"input": "what triggered world war i /only:hyde", "output": "hyde: The assassination of Archduke Franz Ferdinand of Austria-Hungary on June 28, 1914, in Sarajevo triggered WWI. Austria-Hungary issued an ultimatum to Serbia. The alliance system pulled in Russia (allied with Serbia), Germany (allied with Austria-Hungary), France (allied with Russia), and Britain (allied with France and Belgium)."}
+{"input": "how to improve drawing skills? /only:lex", "output": "lex: improve drawing skills practice techniques\nlex: learn to draw exercises sketching"}
+{"input": "how to improve drawing skills? /only:vec", "output": "vec: what exercises and practice routines help improve drawing and sketching skills for beginners\nvec: how can you develop better hand-eye coordination and observational skills for drawing"}
+{"input": "how to improve drawing skills? /only:hyde", "output": "hyde: Practice gesture drawing daily: set a timer for 30-60 seconds and sketch the overall pose of a figure or object without lifting your pencil. Draw from life, not just photos. Study basic forms\u2014spheres, cylinders, boxes\u2014and learn to see complex objects as combinations of these shapes. Fill a sketchbook page every day."}
+{"input": "what is international relations /only:lex", "output": "lex: international relations definition political science\nlex: IR theory realism liberalism diplomacy"}
+{"input": "what is international relations /only:vec", "output": "vec: what is the field of international relations and what theories explain how states interact\nvec: how does international relations study diplomacy, conflict, trade, and cooperation between nations"}
+{"input": "what is international relations /only:hyde", "output": "hyde: International relations (IR) is a subfield of political science that studies interactions between states, international organizations, and non-state actors. Major theoretical frameworks include realism (states pursue power in an anarchic system), liberalism (institutions and cooperation reduce conflict), and constructivism (social norms shape state behavior)."}
+{"input": "what is the human genome project /only:lex", "output": "lex: Human Genome Project HGP DNA sequencing\nlex: human genome mapping genes 2003 completed"}
+{"input": "what is the human genome project /only:vec", "output": "vec: what was the Human Genome Project and what did it accomplish in mapping human DNA\nvec: how has the Human Genome Project influenced genetics, medicine, and our understanding of human biology"}
+{"input": "what is the human genome project /only:hyde", "output": "hyde: The Human Genome Project (1990-2003) was an international research effort to sequence all 3.2 billion base pairs of human DNA and identify approximately 20,500 genes. Completed in April 2003, it cost $2.7 billion and has enabled advances in personalized medicine, genetic testing, and understanding of hereditary diseases."}
+{"input": "how to assess a neighborhood safety /only:lex", "output": "lex: neighborhood safety assessment crime check\nlex: evaluate neighborhood crime rate walkability"}
+{"input": "how to assess a neighborhood safety /only:vec", "output": "vec: how do you assess whether a neighborhood is safe before moving there\nvec: what factors and data sources help evaluate neighborhood safety including crime statistics and local conditions"}
+{"input": "how to assess a neighborhood safety /only:hyde", "output": "hyde: Check crime maps on sites like CrimeMapping.com or SpotCrime using the ZIP code. Walk the neighborhood at different times of day and night. Look for signs of community investment: maintained properties, street lighting, and active businesses. Talk to residents and visit the local police precinct for crime statistics."}
+{"input": "what are the characteristics of a just society /only:lex", "output": "lex: just society characteristics principles fairness\nlex: social justice equality Rawls distributive justice"}
+{"input": "what are the characteristics of a just society /only:vec", "output": "vec: what are the defining characteristics of a just society according to political philosophy\nvec: how do philosophers like John Rawls define justice and the principles of a fair society"}
+{"input": "what are the characteristics of a just society /only:hyde", "output": "hyde: John Rawls argued a just society is one where principles are chosen behind a \"veil of ignorance\"\u2014not knowing your own position. His two principles: (1) equal basic liberties for all, and (2) social and economic inequalities are arranged to benefit the least advantaged (difference principle) with fair equality of opportunity."}
+{"input": "what is the significance of the narrative arc? /only:lex", "output": "lex: narrative arc significance story structure\nlex: narrative arc exposition climax resolution"}
+{"input": "what is the significance of the narrative arc? /only:vec", "output": "vec: what is a narrative arc and why is it significant in storytelling and fiction writing\nvec: how do the stages of a narrative arc\u2014exposition, rising action, climax, falling action, resolution\u2014shape a story"}
+{"input": "what is the significance of the narrative arc? /only:hyde", "output": "hyde: The narrative arc structures a story's progression from exposition through rising action to climax, then falling action and resolution. Gustav Freytag formalized this as a five-act pyramid. A strong arc creates tension, develops characters through conflict, and delivers emotional payoff, keeping readers engaged from beginning to end."}
+{"input": "what is bioethics /only:lex", "output": "lex: bioethics definition medical ethics biology\nlex: bioethics issues euthanasia cloning genetic engineering"}
+{"input": "what is bioethics /only:vec", "output": "vec: what is bioethics and what moral questions does it address in medicine and biological science\nvec: how does bioethics evaluate issues like genetic engineering, euthanasia, and organ transplantation"}
+{"input": "what is bioethics /only:hyde", "output": "hyde: Bioethics is an interdisciplinary field that examines ethical issues arising from advances in biology and medicine. Core principles include autonomy (patient choice), beneficence (do good), non-maleficence (do no harm), and justice (fair distribution). It addresses topics such as end-of-life care, genetic editing (CRISPR), stem cell research, and clinical trial ethics."}
+{"input": "what is the significance of reincarnation in hinduism /only:lex", "output": "lex: reincarnation hinduism samsara karma\nlex: Hindu rebirth cycle moksha atman"}
+{"input": "what is the significance of reincarnation in hinduism /only:vec", "output": "vec: what role does reincarnation play in Hindu belief and how is it connected to karma and moksha\nvec: how does the concept of samsara and the cycle of rebirth shape Hindu spiritual practice"}
+{"input": "what is the significance of reincarnation in hinduism /only:hyde", "output": "hyde: In Hinduism, reincarnation (samsara) is the cycle of death and rebirth of the atman (soul). Karma\u2014the accumulated results of actions\u2014determines the conditions of each rebirth. The ultimate goal is moksha: liberation from the cycle of samsara, achieved through jnana (knowledge), bhakti (devotion), or karma yoga (selfless action)."}
+{"input": "learn code /only:lex", "output": "lex: learn programming coding beginner\nlex: learn to code online courses tutorials\nlex: programming language beginner Python JavaScript"}
+{"input": "learn code /only:vec", "output": "vec: how can a beginner start learning to code and which programming language should they learn first\nvec: what are the best free resources and online courses for learning programming from scratch"}
+{"input": "learn code /only:hyde", "output": "hyde: Start with Python or JavaScript\u2014both have gentle learning curves and wide applications. Free resources include freeCodeCamp.org, Codecademy, and CS50 on edX. Begin with variables, loops, and functions, then build small projects. Practice daily on coding challenges at sites like LeetCode or Codewars."}
+{"input": "what is the significance of the enlightenment? /only:lex", "output": "lex: Enlightenment significance 18th century philosophy\nlex: Age of Enlightenment reason science liberty"}
+{"input": "what is the significance of the enlightenment? /only:vec", "output": "vec: what was the Enlightenment and why is it considered a turning point in Western intellectual history\nvec: how did Enlightenment thinkers like Voltaire, Locke, and Kant influence modern democracy and science"}
+{"input": "what is the significance of the enlightenment? /only:hyde", "output": "hyde: The Enlightenment (c. 1685-1815) emphasized reason, individual liberty, and scientific inquiry over tradition and religious authority. Thinkers like John Locke (natural rights), Voltaire (freedom of speech), and Kant (\"dare to know\") laid the intellectual foundations for democratic revolutions, constitutional government, and the separation of church and state."}
+{"input": "google docs /only:lex", "output": "lex: Google Docs word processor cloud\nlex: Google Docs collaboration editing sharing\nlex: Google Docs templates formatting features"}
+{"input": "google docs /only:vec", "output": "vec: how do you use Google Docs to create, edit, and collaborate on documents online\nvec: what features does Google Docs offer for real-time collaboration, formatting, and sharing"}
+{"input": "google docs /only:hyde", "output": "hyde: Google Docs is a free cloud-based word processor at docs.google.com. It supports real-time collaboration\u2014multiple users can edit simultaneously with changes tracked by color. Share documents via link or email with view, comment, or edit permissions. It auto-saves to Google Drive and supports export to .docx, .pdf, and other formats."}
+{"input": "how to perform statistical analysis in research /only:lex", "output": "lex: statistical analysis research methods\nlex: statistical tests t-test ANOVA regression research"}
+{"input": "how to perform statistical analysis in research /only:vec", "output": "vec: how do researchers choose and perform appropriate statistical analyses for their data\nvec: what are the common statistical methods used in academic research and when should each be applied"}
+{"input": "how to perform statistical analysis in research /only:hyde", "output": "hyde: Choose your statistical test based on your data type and research question. Use t-tests for comparing two group means, ANOVA for three or more groups, chi-square for categorical data, and regression for predicting outcomes. Check assumptions: normality (Shapiro-Wilk test), homogeneity of variance (Levene's test), and independence of observations."}
+{"input": "what is the role of physics in engineering /only:lex", "output": "lex: physics role engineering applications\nlex: physics principles mechanical electrical civil engineering"}
+{"input": "what is the role of physics in engineering /only:vec", "output": "vec: how do physics principles apply to engineering disciplines like mechanical, electrical, and civil engineering\nvec: what fundamental physics concepts are essential for engineers to understand and apply"}
+{"input": "what is the role of physics in engineering /only:hyde", "output": "hyde: Physics underpins all engineering disciplines. Mechanical engineers apply Newton's laws and thermodynamics to design engines and machines. Electrical engineers use Maxwell's equations and semiconductor physics to build circuits. Civil engineers rely on statics and material strength calculations to design buildings and bridges that withstand loads."}
+{"input": "how to read a topographic map? /only:lex", "output": "lex: topographic map reading contour lines\nlex: topo map elevation contour interval legend"}
+{"input": "how to read a topographic map? /only:vec", "output": "vec: how do you read contour lines and elevation data on a topographic map\nvec: what do the symbols, contour lines, and colors on a USGS topographic map represent"}
+{"input": "how to read a topographic map? /only:hyde", "output": "hyde: Contour lines connect points of equal elevation. Lines close together indicate steep terrain; lines far apart indicate gentle slopes. The contour interval (stated in the legend) is the elevation difference between adjacent lines. Every fifth line is an index contour, drawn thicker with the elevation labeled. Brown lines show terrain, blue shows water."}
+{"input": "how to choose car speakers? /only:lex", "output": "lex: car speakers choosing size type\nlex: car audio speakers coaxial component upgrade"}
+{"input": "how to choose car speakers? /only:vec", "output": "vec: how do you choose aftermarket car speakers that fit your vehicle and sound preferences\nvec: what is the difference between coaxial and component car speakers and which should you buy"}
+{"input": "how to choose car speakers? /only:hyde", "output": "hyde: Check your car's speaker sizes (common: 6.5\", 6x9\", 5.25\") using a fitment guide. Coaxial speakers are all-in-one replacements\u2014easy to install with tweeter built in. Component speakers separate the woofer, tweeter, and crossover for better sound staging but require more installation work. Look for sensitivity (85+ dB) and RMS power handling matching your head unit or amp."}
+{"input": "where to buy organic seeds? /only:lex", "output": "lex: buy organic seeds online garden\nlex: organic seed suppliers heirloom non-GMO"}
+{"input": "where to buy organic seeds? /only:vec", "output": "vec: where can you buy certified organic and heirloom seeds for a home garden\nvec: which online seed companies sell high-quality organic and non-GMO vegetable and flower seeds"}
+{"input": "where to buy organic seeds? /only:hyde", "output": "hyde: Trusted organic seed suppliers include Johnny's Selected Seeds, High Mowing Organic Seeds, Seed Savers Exchange, and Baker Creek Heirloom Seeds. Look for USDA Certified Organic labels and non-GMO verification. Order in January-February for spring planting. Many offer sampler packs for beginners."}
+{"input": "challenges of digital transformation /only:lex", "output": "lex: digital transformation challenges obstacles\nlex: enterprise digital transformation barriers legacy systems"}
+{"input": "challenges of digital transformation /only:vec", "output": "vec: what are the main challenges organizations face when undergoing digital transformation\nvec: how do legacy systems, culture resistance, and skill gaps hinder digital transformation efforts"}
+{"input": "challenges of digital transformation /only:hyde", "output": "hyde: Common digital transformation challenges include resistance to change from employees, integrating legacy systems with new platforms, data silos across departments, cybersecurity risks during migration, and shortage of skilled talent. McKinsey reports that 70% of digital transformation initiatives fail, often due to organizational culture rather than technology."}
+{"input": "what makes a good thriller novel? /only:lex", "output": "lex: thriller novel elements writing techniques\nlex: good thriller pacing suspense plot twists"}
+{"input": "what makes a good thriller novel? /only:vec", "output": "vec: what elements make a thriller novel compelling including pacing, suspense, and plot structure\nvec: how do successful thriller writers build tension and keep readers turning pages"}
+{"input": "what makes a good thriller novel? /only:hyde", "output": "hyde: A great thriller has a high-stakes central conflict, a ticking clock, and a protagonist under escalating pressure. Pacing is crucial\u2014short chapters and cliffhanger endings drive momentum. Plant red herrings and misdirection, then deliver a twist that recontextualizes earlier clues. The antagonist should be intelligent and formidable, making the hero's victory feel earned."}
+{"input": "what is the composition of the earth's atmosphere /only:lex", "output": "lex: earth atmosphere composition gases percentages\nlex: atmospheric gases nitrogen oxygen argon CO2"}
+{"input": "what is the composition of the earth's atmosphere /only:vec", "output": "vec: what gases make up the Earth's atmosphere and in what proportions\nvec: what is the chemical composition of Earth's atmosphere including trace gases"}
+{"input": "what is the composition of the earth's atmosphere /only:hyde", "output": "hyde: Earth's atmosphere is composed of 78.09% nitrogen (N\u2082), 20.95% oxygen (O\u2082), 0.93% argon (Ar), and 0.04% carbon dioxide (CO\u2082). Trace gases include neon, helium, methane, krypton, and water vapor (0-4% depending on humidity). The atmosphere extends roughly 480 km above the surface and is divided into five layers: troposphere, stratosphere, mesosphere, thermosphere, and exosphere."}
+{"input": "how to file a petition to government /only:lex", "output": "lex: file petition government civic action\nlex: government petition create submit signatures"}
+{"input": "how to file a petition to government /only:vec", "output": "vec: how do you create and file a formal petition to a government body or elected representative\nvec: what is the process for submitting a petition to local, state, or federal government"}
+{"input": "how to file a petition to government /only:hyde", "output": "hyde: To file a petition, clearly state your request and supporting reasons. Collect signatures from eligible constituents\u2014most jurisdictions require a minimum number based on population. File the petition with the appropriate government office (city clerk, state legislature, or Congress). Online platforms like Change.org can amplify support but may not satisfy legal petition requirements."}
+{"input": "how to grow rhododendrons? /only:lex", "output": "lex: grow rhododendrons planting care soil\nlex: rhododendron acidic soil shade watering"}
+{"input": "how to grow rhododendrons? /only:vec", "output": "vec: how do you plant and care for rhododendrons including soil, light, and watering requirements\nvec: what soil pH and growing conditions do rhododendrons need to thrive"}
+{"input": "how to grow rhododendrons? /only:hyde", "output": "hyde: Rhododendrons require acidic soil (pH 4.5-6.0), partial shade, and consistent moisture. Plant in well-drained soil amended with peat moss or composted pine bark. Mulch with 2-3 inches of pine needles. Water deeply once a week\u2014they have shallow root systems sensitive to drought. Avoid planting too deep; keep the root ball crown at soil level."}
+{"input": "what is the ethics of surveillance /only:lex", "output": "lex: surveillance ethics privacy government\nlex: mass surveillance civil liberties Fourth Amendment"}
+{"input": "what is the ethics of surveillance /only:vec", "output": "vec: what are the ethical issues surrounding government and corporate surveillance of citizens\nvec: how do privacy rights conflict with security justifications for mass surveillance programs"}
+{"input": "what is the ethics of surveillance /only:hyde", "output": "hyde: Mass surveillance raises fundamental questions about the balance between security and privacy. Critics argue programs like the NSA's PRISM violate Fourth Amendment protections against unreasonable search. Proponents claim surveillance prevents terrorism. The chilling effect\u2014self-censorship by citizens who know they're watched\u2014threatens free expression and democratic participation."}
+{"input": "regex match /only:lex", "output": "lex: regex match pattern regular expression\nlex: regex syntax matching groups capture\nlex: regular expression examples tutorial"}
+{"input": "regex match /only:vec", "output": "vec: how do you write and use regular expressions to match patterns in text\nvec: what is the syntax for regex pattern matching including groups, quantifiers, and character classes"}
+{"input": "regex match /only:hyde", "output": "hyde: A regex (regular expression) matches text patterns. Common syntax: `.` matches any character, `*` means zero or more, `+` means one or more, `?` means optional. `[a-z]` matches lowercase letters. `\\d` matches digits. Capture groups use parentheses: `(\\d{3})-(\\d{4})` matches and captures phone number parts. Use `^` for start and `$` for end of line."}
+{"input": "what is the ethics of research /only:lex", "output": "lex: research ethics principles IRB\nlex: ethical research human subjects informed consent"}
+{"input": "what is the ethics of research /only:vec", "output": "vec: what ethical principles govern scientific and academic research involving human subjects\nvec: how do institutional review boards ensure ethical standards in research studies"}
+{"input": "what is the ethics of research /only:hyde", "output": "hyde: Research ethics are governed by the Belmont Report's three principles: respect for persons (informed consent), beneficence (minimize harm, maximize benefit), and justice (fair selection of subjects). Institutional Review Boards (IRBs) review all human subjects research. Key requirements include voluntary participation, confidentiality, right to withdraw, and risk-benefit assessment."}
+{"input": "how to set intentions for the day? /only:lex", "output": "lex: set daily intentions morning routine\nlex: intention setting mindfulness journaling"}
+{"input": "how to set intentions for the day? /only:vec", "output": "vec: how do you set meaningful daily intentions as part of a morning routine\nvec: what is the practice of setting intentions and how does it differ from goal-setting"}
+{"input": "how to set intentions for the day? /only:hyde", "output": "hyde: Each morning, sit quietly for 2-3 minutes and ask yourself: \"How do I want to feel today?\" and \"What matters most today?\" Write one to three intentions in a journal\u2014e.g., \"I will be present in conversations\" or \"I will approach challenges with curiosity.\" Intentions focus on how you show up, not on tasks to complete. Review them at midday and evening."}
+{"input": "what is the role of sacred music in worship? /only:lex", "output": "lex: sacred music worship role function\nlex: religious hymns chants liturgical music"}
+{"input": "what is the role of sacred music in worship? /only:vec", "output": "vec: what role does sacred music play in religious worship services across different faiths\nvec: how do hymns, chants, and liturgical music enhance the experience of communal worship"}
+{"input": "what is the role of sacred music in worship? /only:hyde", "output": "hyde: Sacred music serves multiple functions in worship: it creates a contemplative atmosphere, unifies the congregation through shared singing, reinforces theological themes through lyrics, and marks liturgical transitions. Gregorian chant in Catholic Mass, bhajans in Hindu puja, and the Islamic adhan each use distinct musical forms to invoke the sacred and facilitate prayer."}
+{"input": "what are the features of ancient roman society? /only:lex", "output": "lex: ancient Roman society features structure\nlex: Roman social classes patricians plebeians republic"}
+{"input": "what are the features of ancient roman society? /only:vec", "output": "vec: what were the defining features of ancient Roman society including social classes, government, and daily life\nvec: how was ancient Roman society structured in terms of class hierarchy, citizenship, and law"}
+{"input": "what are the features of ancient roman society? /only:hyde", "output": "hyde: Roman society was divided into patricians (aristocratic families), plebeians (common citizens), freedmen, and slaves. Citizens had legal rights including voting and property ownership. The Senate held political power, though plebeians gained representation through tribunes. Roman law (Twelve Tables, 450 BC) codified legal principles still influential today. The paterfamilias held authority over extended households."}
+{"input": "what is the role of family in society /only:lex", "output": "lex: family role society function socialization\nlex: family structure social institution support"}
+{"input": "what is the role of family in society /only:vec", "output": "vec: what roles does the family unit play in society including socialization, support, and cultural transmission\nvec: how do families function as the primary social institution for raising children and maintaining social order"}
+{"input": "what is the role of family in society /only:hyde", "output": "hyde: The family is society's primary unit of socialization, teaching children language, norms, and values. Functionalist sociologists identify four key roles: socialization of children, economic cooperation, emotional support, and regulation of sexual behavior. Families also transmit cultural identity, religious traditions, and social status across generations."}
+{"input": "what is quantitative easing explained /only:lex", "output": "lex: quantitative easing QE monetary policy\nlex: quantitative easing central bank bond buying"}
+{"input": "what is quantitative easing explained /only:vec", "output": "vec: what is quantitative easing and how do central banks use it to stimulate the economy\nvec: how does the Federal Reserve's quantitative easing program work and what are its effects on inflation and interest rates"}
+{"input": "what is quantitative easing explained /only:hyde", "output": "hyde: Quantitative easing (QE) is an unconventional monetary policy where a central bank buys government bonds and other securities to inject money into the economy. When the Fed buys bonds, it increases bank reserves, lowers long-term interest rates, and encourages lending. The Fed used QE after 2008 and during COVID-19, expanding its balance sheet to over $8 trillion."}
+{"input": "what is guerrilla marketing /only:lex", "output": "lex: guerrilla marketing unconventional low-cost\nlex: guerrilla marketing examples campaigns street"}
+{"input": "what is guerrilla marketing /only:vec", "output": "vec: what is guerrilla marketing and how do businesses use unconventional tactics to promote products\nvec: what are examples of successful guerrilla marketing campaigns and what makes them effective"}
+{"input": "what is guerrilla marketing /only:hyde", "output": "hyde: Guerrilla marketing uses unconventional, low-cost tactics to create memorable brand experiences in unexpected places. Examples include flash mobs, street art installations, viral stunts, and ambient advertising placed in surprising locations. Jay Conrad Levinson coined the term in 1984. Success depends on creativity, surprise, and shareability rather than large advertising budgets."}
+{"input": "what is the study of geology /only:lex", "output": "lex: geology study earth science rocks minerals\nlex: geology branches mineralogy tectonics stratigraphy"}
+{"input": "what is the study of geology /only:vec", "output": "vec: what is geology and what do geologists study about the Earth's structure, materials, and history\nvec: what are the main branches of geology including mineralogy, petrology, and plate tectonics"}
+{"input": "what is the study of geology /only:hyde", "output": "hyde: Geology is the scientific study of the Earth's structure, composition, and processes. Geologists examine rocks, minerals, fossils, and landforms to understand Earth's 4.5-billion-year history. Major branches include mineralogy (minerals), petrology (rocks), stratigraphy (rock layers), paleontology (fossils), and tectonics (plate movement and earthquakes)."}
+{"input": "how to photograph artwork? /only:lex", "output": "lex: photograph artwork lighting camera setup\nlex: art photography reproduction color accuracy"}
+{"input": "how to photograph artwork? /only:vec", "output": "vec: how do you photograph paintings and artwork with accurate color and minimal glare\nvec: what camera settings, lighting, and techniques produce high-quality photographs of artwork"}
+{"input": "how to photograph artwork? /only:hyde", "output": "hyde: Use two identical lights at 45-degree angles to the artwork to eliminate glare and ensure even illumination. Mount the camera on a tripod, centered and parallel to the surface. Shoot in RAW at ISO 100, f/8 for sharpness. Include a color checker card in one frame for accurate white balance. Use a remote shutter to avoid camera shake."}
+{"input": "what are smart home technologies /only:lex", "output": "lex: smart home technologies devices IoT\nlex: smart home automation hub Alexa Google Home"}
+{"input": "what are smart home technologies /only:vec", "output": "vec: what smart home technologies are available for automating lighting, security, climate, and entertainment\nvec: how do smart home devices and IoT platforms like Alexa, Google Home, and HomeKit work together"}
+{"input": "what are smart home technologies /only:hyde", "output": "hyde: Smart home technologies connect devices via Wi-Fi, Zigbee, Z-Wave, or Matter protocol to a central hub or voice assistant. Common categories include smart lighting (Philips Hue), thermostats (Nest, Ecobee), security cameras (Ring, Arlo), locks (August, Yale), and speakers (Amazon Echo, Google Nest). Automations trigger actions based on time, location, or sensor data."}
+{"input": "how sports influence youth development /only:lex", "output": "lex: sports youth development influence benefits\nlex: youth athletics child development teamwork discipline"}
+{"input": "how sports influence youth development /only:vec", "output": "vec: how does participation in sports influence the physical, social, and emotional development of young people\nvec: what benefits do organized sports provide for youth including teamwork, discipline, and mental health"}
+{"input": "how sports influence youth development /only:hyde", "output": "hyde: Research shows youth sports participation improves physical fitness, teaches teamwork and leadership, and builds self-esteem. A 2019 study in the Journal of Sport and Health Science found that adolescents who play organized sports report lower rates of depression and anxiety. However, excessive pressure and early specialization can lead to burnout and injury."}
+{"input": "how to build self-confidence /only:lex", "output": "lex: build self-confidence techniques self-esteem\nlex: improve confidence self-worth mindset"}
+{"input": "how to build self-confidence /only:vec", "output": "vec: what are practical strategies for building self-confidence and overcoming self-doubt\nvec: how can someone develop greater self-confidence through daily habits and mindset shifts"}
+{"input": "how to build self-confidence /only:hyde", "output": "hyde: Start by setting small, achievable goals and completing them\u2014each success builds evidence of competence. Practice self-compassion: replace harsh self-criticism with the tone you'd use with a friend. Keep a \"wins\" journal and review it weekly. Gradually expand your comfort zone by doing one slightly uncomfortable thing each day. Confidence grows from accumulated experience, not positive thinking alone."}
+{"input": "how to plan a family field trip? /only:lex", "output": "lex: family field trip planning kids activities\nlex: family outing day trip educational fun"}
+{"input": "how to plan a family field trip? /only:vec", "output": "vec: how do you plan an enjoyable and educational family field trip with children\nvec: what are tips for organizing a family day trip including choosing destinations, packing, and budgeting"}
+{"input": "how to plan a family field trip? /only:hyde", "output": "hyde: Choose an age-appropriate destination: museums, nature centers, farms, or historical sites. Check hours, admission costs, and accessibility online. Pack snacks, water, sunscreen, and a first-aid kit. Plan for shorter attention spans\u2014schedule breaks every 60-90 minutes. Involve kids in planning by letting them choose one activity. Bring a scavenger hunt list to keep them engaged."}
+{"input": "what is a scientific model /only:lex", "output": "lex: scientific model definition types examples\nlex: scientific models simulation representation theory"}
+{"input": "what is a scientific model /only:vec", "output": "vec: what is a scientific model and how do scientists use models to explain and predict natural phenomena\nvec: what are the different types of scientific models including physical, mathematical, and computational models"}
+{"input": "what is a scientific model /only:hyde", "output": "hyde: A scientific model is a simplified representation of a system or phenomenon used to explain observations and make predictions. Models can be physical (a globe representing Earth), mathematical (equations describing gravity), or computational (climate simulations). All models are approximations\u2014George Box wrote, \"All models are wrong, but some are useful.\""}
+{"input": "io file /only:lex", "output": "lex: file I/O input output operations\nlex: file read write programming IO\nlex: file handling open close stream"}
+{"input": "io file /only:vec", "output": "vec: how do you perform file input and output operations in programming languages\nvec: what are the common methods for reading from and writing to files in Python, Java, or C"}
+{"input": "io file /only:hyde", "output": "hyde: File I/O involves opening a file, reading or writing data, and closing it. In Python: `with open('file.txt', 'r') as f: data = f.read()` for reading, and `with open('file.txt', 'w') as f: f.write('hello')` for writing. The `with` statement ensures the file is properly closed. Use 'a' mode to append, 'rb'/'wb' for binary files."}
+{"input": "what are creative portrait ideas? /only:lex", "output": "lex: creative portrait photography ideas techniques\nlex: portrait photo ideas poses lighting creative"}
+{"input": "what are creative portrait ideas? /only:vec", "output": "vec: what are unique and creative portrait photography ideas for interesting and artistic results\nvec: how can you use lighting, props, angles, and locations for creative portrait photography"}
+{"input": "what are creative portrait ideas? /only:hyde", "output": "hyde: Try shooting through prisms or crystal balls for rainbow light effects. Use fairy lights wrapped around the subject for warm bokeh. Photograph through rain-covered glass for a moody feel. Use dramatic side lighting with one bare bulb for chiaroscuro portraits. Shoot reflections in puddles, mirrors, or sunglasses. Double exposure combining portraits with textures or nature works well in-camera or in post."}
+{"input": "fix hair /only:lex", "output": "lex: fix hair repair damaged broken\nlex: hair repair treatment dry frizzy damaged\nlex: hairstyle fix bad hair day"}
+{"input": "fix hair /only:vec", "output": "vec: how do you fix and repair damaged, dry, or frizzy hair\nvec: what are quick fixes for a bad hair day and long-term solutions for hair damage"}
+{"input": "fix hair /only:hyde", "output": "hyde: For damaged hair, use a deep conditioning mask with keratin or argan oil once a week. Trim split ends every 6-8 weeks. Reduce heat styling\u2014if you must, use a heat protectant spray at 300\u00b0F max. For a quick bad hair day fix, try dry shampoo at the roots, a slicked-back bun, or braids. Sleep on a silk pillowcase to reduce friction and breakage."}
+{"input": "build up /only:lex", "output": "lex: build up strength fitness training\nlex: build up muscle mass exercise\nlex: buildup gradual increase accumulation"}
+{"input": "build up /only:vec", "output": "vec: how do you progressively build up strength and muscle through a structured training program\nvec: what does it mean to build up endurance, skills, or resources gradually over time"}
+{"input": "build up /only:hyde", "output": "hyde: To build up strength, follow progressive overload: gradually increase weight, reps, or sets each week. A beginner program like Starting Strength adds 5 lbs to compound lifts every session. Eat adequate protein (0.7-1g per pound bodyweight). Rest 48 hours between training the same muscle group. Consistency over 8-12 weeks produces measurable strength gains."}
+{"input": "how to participate in a protest /only:lex", "output": "lex: participate protest rally demonstration rights\nlex: protest safety tips First Amendment rights"}
+{"input": "how to participate in a protest /only:vec", "output": "vec: how do you safely and effectively participate in a protest or public demonstration\nvec: what should you know about your legal rights and safety precautions when attending a protest"}
+{"input": "how to participate in a protest /only:hyde", "output": "hyde: Know your rights: the First Amendment protects peaceful assembly on public property. Bring water, snacks, a phone charger, and ID. Write an emergency contact number on your arm. Stay with a buddy and agree on a meeting point. Wear comfortable shoes and weather-appropriate clothing. If tear gas is used, move upwind. Document police interactions by filming at a safe distance."}
+{"input": "what is the principle of utility? /only:lex", "output": "lex: principle of utility utilitarianism Bentham Mill\nlex: utility principle greatest happiness greatest number"}
+{"input": "what is the principle of utility? /only:vec", "output": "vec: what is the principle of utility in utilitarian ethics as defined by Bentham and Mill\nvec: how does the utilitarian principle of utility evaluate actions based on their consequences for overall happiness"}
+{"input": "what is the principle of utility? /only:hyde", "output": "hyde: The principle of utility, formulated by Jeremy Bentham, states that the morally right action is the one that produces the greatest happiness for the greatest number. Bentham's felicific calculus measured pleasure by intensity, duration, certainty, and extent. John Stuart Mill refined this, distinguishing higher (intellectual) pleasures from lower (bodily) pleasures."}
+{"input": "how to create a brand logo /only:lex", "output": "lex: brand logo design create process\nlex: logo design principles typography color branding"}
+{"input": "how to create a brand logo /only:vec", "output": "vec: how do you design an effective brand logo from concept to final design\nvec: what principles of logo design ensure a brand mark is memorable, scalable, and versatile"}
+{"input": "how to create a brand logo /only:hyde", "output": "hyde: Start by researching the brand's values, target audience, and competitors. Sketch 20-30 rough concepts on paper before going digital. A strong logo works in black and white, at small sizes (favicon), and large formats (billboard). Limit to 2-3 colors and one typeface. Test on business cards, websites, and merchandise. Tools: Adobe Illustrator, Figma, or Affinity Designer for vector-based design."}
+{"input": "how to check tire pressure? /only:lex", "output": "lex: check tire pressure gauge PSI\nlex: tire pressure TPMS correct level car"}
+{"input": "how to check tire pressure? /only:vec", "output": "vec: how do you check and adjust tire pressure using a tire gauge\nvec: what is the correct tire pressure for a car and how often should it be checked"}
+{"input": "how to check tire pressure? /only:hyde", "output": "hyde: Check tire pressure when tires are cold (before driving or 3+ hours after). Remove the valve cap, press a tire gauge firmly onto the valve stem, and read the PSI. Compare to the recommended pressure on the driver's door jamb sticker (not the tire sidewall\u2014that's the maximum). Add air at a gas station if low. Check all four tires plus the spare monthly."}
+{"input": "how to cook quinoa /only:lex", "output": "lex: cook quinoa recipe instructions stovetop\nlex: quinoa cooking ratio water time"}
+{"input": "how to cook quinoa /only:vec", "output": "vec: what is the correct method for cooking quinoa on the stovetop with the right water ratio\nvec: how do you cook fluffy quinoa and what is the water to quinoa ratio"}
+{"input": "how to cook quinoa /only:hyde", "output": "hyde: Rinse 1 cup quinoa in a fine mesh strainer to remove bitter saponins. Combine with 2 cups water and a pinch of salt in a saucepan. Bring to a boil, reduce to low, cover, and simmer for 15 minutes. Remove from heat and let steam with the lid on for 5 minutes. Fluff with a fork. Yields about 3 cups cooked quinoa."}
+{"input": "how to prevent identity theft /only:lex", "output": "lex: prevent identity theft protection tips\nlex: identity theft prevention credit freeze monitor"}
+{"input": "how to prevent identity theft /only:vec", "output": "vec: what steps can you take to protect yourself from identity theft and fraud\nvec: how do credit freezes, strong passwords, and monitoring help prevent identity theft"}
+{"input": "how to prevent identity theft /only:hyde", "output": "hyde: Freeze your credit at all three bureaus (Equifax, Experian, TransUnion)\u2014it's free and prevents unauthorized accounts. Use unique passwords with a password manager. Enable two-factor authentication on all financial accounts. Shred documents with personal information. Monitor bank statements weekly and check your credit report annually at AnnualCreditReport.com."}
+{"input": "how to start a blog /only:lex", "output": "lex: start blog setup hosting platform\nlex: blogging beginners WordPress Substack setup"}
+{"input": "how to start a blog /only:vec", "output": "vec: how do you start a blog from scratch including choosing a platform, domain, and writing your first posts\nvec: what are the steps to launch a successful blog and attract readers"}
+{"input": "how to start a blog /only:hyde", "output": "hyde: Choose a platform: WordPress.org for full control (needs hosting), or Substack/Ghost for simplicity. Pick a niche you can write about consistently. Register a domain name ($10-15/year). Write 5-10 posts before launching so visitors find content immediately. Optimize for SEO with clear titles and headers. Share on social media and engage with other bloggers in your niche."}
+{"input": "documentary photography /only:lex", "output": "lex: documentary photography style techniques\nlex: documentary photojournalism storytelling long-term"}
+{"input": "documentary photography /only:vec", "output": "vec: what is documentary photography and how does it differ from photojournalism and street photography\nvec: what techniques and approaches do documentary photographers use to tell stories through images"}
+{"input": "documentary photography /only:hyde", "output": "hyde: Documentary photography aims to chronicle real events, conditions, or people over time to create a truthful narrative. Unlike photojournalism's focus on breaking news, documentary work unfolds over weeks, months, or years. Key practitioners include Dorothea Lange (Great Depression), Sebasti\u00e3o Salgado (workers, migration), and James Nachtwey (conflict). Shoot with available light, build trust with subjects, and caption extensively."}
+{"input": "what causes tides /only:lex", "output": "lex: tides causes moon gravitational pull\nlex: tidal forces moon sun earth gravity"}
+{"input": "what causes tides /only:vec", "output": "vec: what causes ocean tides and how do the gravitational forces of the moon and sun create them\nvec: how does the moon's gravitational pull create high and low tides on Earth"}
+{"input": "what causes tides /only:hyde", "output": "hyde: Tides are primarily caused by the gravitational pull of the Moon on Earth's oceans. The side of Earth facing the Moon experiences a direct gravitational pull creating a tidal bulge (high tide). A second bulge forms on the opposite side due to inertial forces. The Sun's gravity also contributes\u2014spring tides (highest) occur during full and new moons when Sun and Moon align."}
+{"input": "what is the history of christianity? /only:lex", "output": "lex: history Christianity origins spread timeline\nlex: Christianity history Jesus apostles church development"}
+{"input": "what is the history of christianity? /only:vec", "output": "vec: what is the history of Christianity from its origins with Jesus to the modern era\nvec: how did Christianity spread from a small Jewish sect to a global religion over two millennia"}
+{"input": "what is the history of christianity? /only:hyde", "output": "hyde: Christianity originated in 1st-century Judea with the teachings of Jesus of Nazareth. After his crucifixion (c. 30 AD), apostles like Paul spread the faith across the Roman Empire. Constantine legalized it in 313 AD (Edict of Milan). The Great Schism (1054) split Eastern Orthodox and Roman Catholic churches. The Protestant Reformation began in 1517 with Martin Luther."}
+{"input": "what is the industrial revolution /only:lex", "output": "lex: Industrial Revolution history manufacturing 18th century\nlex: Industrial Revolution steam engine factories Britain"}
+{"input": "what is the industrial revolution /only:vec", "output": "vec: what was the Industrial Revolution and how did it transform manufacturing, society, and the economy\nvec: when and where did the Industrial Revolution begin and what were its major innovations and consequences"}
+{"input": "what is the industrial revolution /only:hyde", "output": "hyde: The Industrial Revolution began in Britain around 1760-1840, transforming agrarian economies into industrial ones. Key innovations included the steam engine (James Watt), spinning jenny (textile production), and iron smelting with coke. Factories replaced cottage industries. Urbanization accelerated as workers moved to cities. It brought economic growth but also child labor, pollution, and harsh working conditions."}
+{"input": "what is sustainable forestry? /only:lex", "output": "lex: sustainable forestry management practices\nlex: sustainable logging forest stewardship FSC"}
+{"input": "what is sustainable forestry? /only:vec", "output": "vec: what is sustainable forestry and how does it balance timber harvesting with forest ecosystem health\nvec: what practices and certifications like FSC ensure forests are managed sustainably"}
+{"input": "what is sustainable forestry? /only:hyde", "output": "hyde: Sustainable forestry manages forests to meet current timber needs without compromising future generations' resources. Practices include selective logging (harvesting individual trees rather than clearcutting), replanting harvested areas, maintaining buffer zones near waterways, and preserving biodiversity corridors. The Forest Stewardship Council (FSC) certifies sustainably managed forests."}
+{"input": "what is character arc? /only:lex", "output": "lex: character arc definition types fiction\nlex: character arc development flat dynamic transformation"}
+{"input": "what is character arc? /only:vec", "output": "vec: what is a character arc in fiction and how do characters change throughout a story\nvec: what are the different types of character arcs including positive, negative, and flat arcs"}
+{"input": "what is character arc? /only:hyde", "output": "hyde: A character arc is the transformation a character undergoes from the beginning to the end of a story. In a positive arc, the character overcomes a flaw or false belief (e.g., Scrooge in A Christmas Carol). In a negative arc, they descend (Walter White in Breaking Bad). In a flat arc, the character's beliefs remain constant but they change the world around them."}
+{"input": "how to address ethical dilemmas in research /only:lex", "output": "lex: ethical dilemmas research handling IRB\nlex: research ethics conflict resolution informed consent"}
+{"input": "how to address ethical dilemmas in research /only:vec", "output": "vec: how should researchers identify and address ethical dilemmas that arise during scientific studies\nvec: what frameworks and procedures help resolve ethical conflicts in academic and clinical research"}
+{"input": "how to address ethical dilemmas in research /only:hyde", "output": "hyde: When facing an ethical dilemma in research, consult your IRB or ethics committee immediately. Common dilemmas include conflicts between maximizing data quality and minimizing participant burden, handling incidental findings, and balancing confidentiality with mandatory reporting obligations. Document your reasoning and decisions. The Belmont Report provides foundational guidance: respect for persons, beneficence, and justice."}
+{"input": "how to manage stress effectively /only:lex", "output": "lex: manage stress effectively coping techniques\nlex: stress management relaxation anxiety reduction"}
+{"input": "how to manage stress effectively /only:vec", "output": "vec: what are evidence-based techniques for managing stress and reducing anxiety in daily life\nvec: how can you manage chronic stress through exercise, mindfulness, and lifestyle changes"}
+{"input": "how to manage stress effectively /only:hyde", "output": "hyde: Effective stress management combines multiple approaches. Exercise 30 minutes daily\u2014even walking reduces cortisol. Practice diaphragmatic breathing: inhale 4 counts, hold 4, exhale 6. Limit caffeine after noon. Maintain consistent sleep and wake times. Cognitive reframing: identify catastrophic thoughts and replace them with realistic assessments. Social connection is protective\u2014schedule regular time with supportive people."}
+{"input": "how does the philosophy of science address scientific change /only:lex", "output": "lex: philosophy of science scientific change paradigm shift\nlex: Kuhn paradigm revolution Popper falsification Lakatos"}
+{"input": "how does the philosophy of science address scientific change /only:vec", "output": "vec: how do philosophers of science like Kuhn, Popper, and Lakatos explain scientific revolutions and theory change\nvec: what does the philosophy of science say about how scientific knowledge evolves and paradigms shift"}
+{"input": "how does the philosophy of science address scientific change /only:hyde", "output": "hyde: Thomas Kuhn argued science progresses through paradigm shifts: periods of \"normal science\" within an accepted framework are punctuated by revolutionary crises when anomalies accumulate. Karl Popper proposed that science advances through falsification\u2014theories must be testable and those that survive rigorous attempts at refutation are provisionally accepted. Lakatos offered a middle ground with his research programme methodology."}
+{"input": "what are the rituals of judaism /only:lex", "output": "lex: Judaism rituals practices observances\nlex: Jewish rituals Shabbat Passover bar mitzvah kosher"}
+{"input": "what are the rituals of judaism /only:vec", "output": "vec: what are the major rituals and religious observances in Judaism\nvec: how do Jewish rituals like Shabbat, Passover, and bar/bat mitzvah mark life and calendar events"}
+{"input": "what are the rituals of judaism /only:hyde", "output": "hyde: Key Jewish rituals include Shabbat (weekly rest from Friday sunset to Saturday night with candle lighting, kiddush, and challah), the Passover seder (retelling the Exodus), Yom Kippur fasting, circumcision (brit milah) on the 8th day, bar/bat mitzvah at 13/12, and daily prayer (Shacharit, Mincha, Ma'ariv). Keeping kosher governs dietary laws separating meat and dairy."}
+{"input": "how do scientists communicate their findings /only:lex", "output": "lex: scientists communicate findings publications\nlex: scientific communication peer review journal conference"}
+{"input": "how do scientists communicate their findings /only:vec", "output": "vec: how do scientists share and publish their research findings with the scientific community and public\nvec: what are the channels scientists use to communicate results including journals, conferences, and preprints"}
+{"input": "how do scientists communicate their findings /only:hyde", "output": "hyde: Scientists communicate findings through peer-reviewed journal articles (the gold standard), conference presentations (talks and posters), and preprint servers like arXiv and bioRxiv for rapid dissemination. The publication process involves writing a manuscript, submitting to a journal, peer review by 2-3 experts, revision, and acceptance. Increasingly, scientists also use social media and press releases to reach the public."}
+{"input": "mock test /only:lex", "output": "lex: mock test practice exam preparation\nlex: mock exam sample questions test prep\nlex: practice test online free exam"}
+{"input": "mock test /only:vec", "output": "vec: how do you use mock tests and practice exams to prepare for standardized tests and certifications\nvec: where can you find free mock tests and practice exams for tests like SAT, GRE, or professional certifications"}
+{"input": "mock test /only:hyde", "output": "hyde: Mock tests simulate real exam conditions\u2014same time limits, question types, and format. Take full-length practice tests under timed conditions every 1-2 weeks during preparation. Review every wrong answer to identify weak areas. Free mock tests are available on Khan Academy (SAT), ETS (GRE), and official certification body websites. Score trends across mock tests predict actual performance."}
+{"input": "what is the purpose of foreshadowing? /only:lex", "output": "lex: foreshadowing purpose literary device fiction\nlex: foreshadowing examples narrative technique"}
+{"input": "what is the purpose of foreshadowing? /only:vec", "output": "vec: what is the purpose of foreshadowing in literature and how do authors use it to build suspense\nvec: how does foreshadowing create anticipation and cohesion in a story's plot"}
+{"input": "what is the purpose of foreshadowing? /only:hyde", "output": "hyde: Foreshadowing plants clues or hints about future events in a narrative, building suspense and making plot developments feel earned rather than arbitrary. Chekhov's gun principle\u2014if a gun appears in Act 1, it must fire by Act 3\u2014is a classic example. Effective foreshadowing is subtle enough to miss on first reading but obvious in retrospect, rewarding rereading."}
+{"input": "what is trail running? /only:lex", "output": "lex: trail running off-road terrain\nlex: trail running shoes gear technique"}
+{"input": "what is trail running? /only:vec", "output": "vec: what is trail running and how does it differ from road running\nvec: what gear, technique, and training do you need for trail running on off-road terrain"}
+{"input": "what is trail running? /only:hyde", "output": "hyde: Trail running is running on unpaved surfaces\u2014dirt paths, mountain trails, forest tracks, and rocky terrain. Unlike road running, it requires navigating elevation changes, uneven footing, and obstacles. Use trail shoes with aggressive lugs for grip and rock plates for protection. Shorten your stride on technical terrain. Popular distances range from 5K to ultramarathons (50+ miles)."}
+{"input": "what was the impact of the cold war? /only:lex", "output": "lex: Cold War impact consequences effects\nlex: Cold War legacy geopolitics nuclear arms race"}
+{"input": "what was the impact of the cold war? /only:vec", "output": "vec: what were the major political, social, and economic impacts of the Cold War on the world\nvec: how did the Cold War shape international relations, the nuclear arms race, and proxy conflicts"}
+{"input": "what was the impact of the cold war? /only:hyde", "output": "hyde: The Cold War (1947-1991) divided the world into Western (NATO) and Eastern (Warsaw Pact) blocs. Its impacts include the nuclear arms race (peaking at 70,000+ warheads), proxy wars in Korea, Vietnam, and Afghanistan, the Space Race, decolonization movements influenced by superpower competition, and the eventual collapse of the Soviet Union in 1991 leading to U.S. unipolarity."}
+{"input": "street photography ethics /only:lex", "output": "lex: street photography ethics legal rights\nlex: street photography consent privacy public space"}
+{"input": "street photography ethics /only:vec", "output": "vec: what are the ethical considerations and legal rights involved in street photography\nvec: is it ethical to photograph strangers in public and what are the legal rules around street photography"}
+{"input": "street photography ethics /only:hyde", "output": "hyde: In most countries, photographing people in public spaces is legally permitted since there is no expectation of privacy. However, ethical street photographers follow principles: avoid exploiting vulnerable people, don't photograph children without parental awareness, respect requests to delete images, and consider whether the image dignifies or demeans the subject. Some photographers adopt a \"golden rule\" approach."}
+{"input": "vitosha mountain /only:lex", "output": "lex: Vitosha mountain Sofia Bulgaria\nlex: Vitosha hiking trails Cherni Vrah peak"}
+{"input": "vitosha mountain /only:vec", "output": "vec: what are the hiking trails and attractions on Vitosha mountain near Sofia, Bulgaria\nvec: what is Vitosha mountain and what outdoor activities are available in Vitosha Nature Park"}
+{"input": "vitosha mountain /only:hyde", "output": "hyde: Vitosha is a mountain massif on the outskirts of Sofia, Bulgaria, reaching 2,290m at Cherni Vrah (Black Peak). Vitosha Nature Park offers hiking trails, ski runs at Aleko, and the Boyana Waterfall. The golden bridges stone river is a popular landmark. Access from Sofia takes 30 minutes by car or bus. The mountain is a popular day trip for Sofia residents year-round."}
+{"input": "what is an anthology? /only:lex", "output": "lex: anthology definition literary collection\nlex: anthology book short stories poems collected works"}
+{"input": "what is an anthology? /only:vec", "output": "vec: what is an anthology and how are literary anthologies compiled and organized\nvec: what types of works are typically collected in an anthology such as short stories, poems, or essays"}
+{"input": "what is an anthology? /only:hyde", "output": "hyde: An anthology is a curated collection of literary works\u2014short stories, poems, essays, or excerpts\u2014by various authors, assembled around a common theme, genre, or time period. Editors select and arrange pieces to create a coherent reading experience. Examples include The Norton Anthology of English Literature and Best American Short Stories, published annually."}
+{"input": "what is the significance of the yom kippur? /only:lex", "output": "lex: Yom Kippur significance Jewish holy day\nlex: Yom Kippur Day of Atonement fasting prayer"}
+{"input": "what is the significance of the yom kippur? /only:vec", "output": "vec: what is Yom Kippur and why is it the most significant holy day in Judaism\nvec: how do Jewish people observe Yom Kippur through fasting, prayer, and repentance"}
+{"input": "what is the significance of the yom kippur? /only:hyde", "output": "hyde: Yom Kippur (Day of Atonement) is the holiest day in Judaism, falling on the 10th of Tishrei. Observers fast for 25 hours from sunset to sunset, abstaining from food, water, leather shoes, and bathing. The day is spent in synagogue prayer, including the Kol Nidre service and the Neilah closing prayer. It is a day of repentance (teshuvah) for sins against God, concluding the ten Days of Awe."}
+{"input": "what is clean camping? /only:lex", "output": "lex: clean camping Leave No Trace principles\nlex: clean camping eco-friendly minimal impact"}
+{"input": "what is clean camping? /only:vec", "output": "vec: what is clean camping and how do you minimize your environmental impact while camping outdoors\nvec: what are the Leave No Trace principles and how do they apply to clean camping practices"}
+{"input": "what is clean camping? /only:hyde", "output": "hyde: Clean camping follows Leave No Trace principles: plan ahead, travel on durable surfaces, dispose of waste properly, leave what you find, minimize campfire impact, respect wildlife, and be considerate of others. Pack out all trash including food scraps. Use biodegradable soap 200 feet from water sources. Dig catholes 6-8 inches deep for human waste. Leave campsites cleaner than you found them."}
+{"input": "how to evaluate scientific claims critically /only:lex", "output": "lex: evaluate scientific claims critical thinking\nlex: scientific literacy evidence evaluation peer review"}
+{"input": "how to evaluate scientific claims critically /only:vec", "output": "vec: how do you critically evaluate scientific claims and distinguish credible research from misinformation\nvec: what criteria should you use to assess whether a scientific study's conclusions are reliable"}
+{"input": "how to evaluate scientific claims critically /only:hyde", "output": "hyde: Check the source: is it published in a peer-reviewed journal? Look for sample size, control groups, and statistical significance (p < 0.05). Distinguish correlation from causation. Check if results have been replicated by independent researchers. Evaluate conflicts of interest and funding sources. Be skeptical of single studies\u2014look for systematic reviews and meta-analyses that synthesize multiple studies."}
+{"input": "what is the significance of song in worship? /only:lex", "output": "lex: song worship significance religious singing\nlex: worship music congregational singing hymns praise"}
+{"input": "what is the significance of song in worship? /only:vec", "output": "vec: what role does congregational singing and worship music play in religious services\nvec: why is song considered a significant form of spiritual expression and communal worship across faiths"}
+{"input": "what is the significance of song in worship? /only:hyde", "output": "hyde: Singing in worship engages the whole person\u2014body, mind, and emotions\u2014in ways that spoken word alone cannot. Neuroscience shows group singing synchronizes heart rates and releases oxytocin, fostering communal bonding. In Christian worship, hymns reinforce theology through memorable lyrics. The Psalms themselves are songs, and Paul urged believers to address one another \"in psalms, hymns, and spiritual songs\" (Ephesians 5:19)."}
+{"input": "what is the significance of algae in ecosystems /only:lex", "output": "lex: algae ecosystem role food chain\nlex: algae oxygen production aquatic ecosystems\nlex: algae photosynthesis carbon cycle"}
+{"input": "what is the significance of algae in ecosystems /only:vec", "output": "vec: what role do algae play in aquatic and marine ecosystems\nvec: how do algae contribute to oxygen production and food webs"}
+{"input": "what is the significance of algae in ecosystems /only:hyde", "output": "hyde: Algae produce approximately 50% of the world's oxygen through photosynthesis and form the base of aquatic food chains. Phytoplankton, a type of microalgae, supports marine ecosystems by providing energy to zooplankton, fish, and larger organisms."}
+{"input": "how to train for a marathon /only:lex", "output": "lex: marathon training plan schedule\nlex: long distance running program beginner\nlex: marathon race preparation mileage"}
+{"input": "how to train for a marathon /only:vec", "output": "vec: what is a good training plan for running a first marathon\nvec: how to build weekly mileage for marathon race preparation"}
+{"input": "how to train for a marathon /only:hyde", "output": "hyde: A typical 16-week marathon training plan starts with a base of 15-20 miles per week, gradually increasing the long run by 1-2 miles each week. Include easy runs, tempo runs at marathon pace, and one rest day. Taper volume 2-3 weeks before race day."}
+{"input": "how to handle a child's tantrum in public? /only:lex", "output": "lex: child tantrum public calm techniques\nlex: toddler meltdown coping strategies"}
+{"input": "how to handle a child's tantrum in public? /only:vec", "output": "vec: what are effective ways to calm a toddler having a tantrum in a public place\nvec: how should parents respond when their child has a meltdown in a store or restaurant"}
+{"input": "how to handle a child's tantrum in public? /only:hyde", "output": "hyde: When your child has a tantrum in public, stay calm and speak in a low, steady voice. Get down to their eye level, acknowledge their feelings, and offer simple choices. If needed, move to a quieter spot and wait for the intensity to pass before addressing the behavior."}
+{"input": "how to invest in index funds /only:lex", "output": "lex: index fund investing brokerage account\nlex: S&P 500 index fund buy shares\nlex: passive investing index ETF"}
+{"input": "how to invest in index funds /only:vec", "output": "vec: how to open a brokerage account and buy index funds for long-term investing\nvec: what are the steps to start investing in S&P 500 or total market index funds"}
+{"input": "how to invest in index funds /only:hyde", "output": "hyde: To invest in index funds, open a brokerage account with a provider like Vanguard, Fidelity, or Schwab. Choose a broad market index fund such as VTSAX or an S&P 500 ETF like VOO. Set up automatic contributions and reinvest dividends for compound growth."}
+{"input": "what is data science /only:lex", "output": "lex: data science statistics machine learning\nlex: data science analysis programming Python R"}
+{"input": "what is data science /only:vec", "output": "vec: what does data science involve and what skills are needed to work in the field\nvec: how does data science combine statistics, programming, and domain knowledge"}
+{"input": "what is data science /only:hyde", "output": "hyde: Data science is an interdisciplinary field that uses statistical methods, machine learning algorithms, and programming to extract insights from structured and unstructured data. Practitioners typically work with Python or R, use tools like pandas and scikit-learn, and apply techniques such as regression, classification, and clustering."}
+{"input": "how to improve concentration skills? /only:lex", "output": "lex: improve focus concentration techniques\nlex: attention span exercises deep work"}
+{"input": "how to improve concentration skills? /only:vec", "output": "vec: what are practical techniques to improve focus and concentration during work or study\nvec: how can I train my brain to maintain attention for longer periods"}
+{"input": "how to improve concentration skills? /only:hyde", "output": "hyde: To improve concentration, try the Pomodoro technique: work for 25 minutes, then take a 5-minute break. Eliminate distractions by silencing notifications and using website blockers. Regular exercise, adequate sleep, and mindfulness meditation have all been shown to increase sustained attention."}
+{"input": "how to participate in earth hour? /only:lex", "output": "lex: Earth Hour participation lights off event\nlex: Earth Hour date 2026 how to join"}
+{"input": "how to participate in earth hour? /only:vec", "output": "vec: how do I participate in the annual Earth Hour lights-off event\nvec: what can individuals and businesses do during Earth Hour to show support"}
+{"input": "how to participate in earth hour? /only:hyde", "output": "hyde: Earth Hour takes place on the last Saturday of March each year. To participate, turn off all non-essential lights for one hour starting at 8:30 PM local time. You can also share your participation on social media using #EarthHour and organize community events."}
+{"input": "what are nanotechnologies /only:lex", "output": "lex: nanotechnology nanomaterials nanoscale engineering\nlex: nanotech applications medicine electronics"}
+{"input": "what are nanotechnologies /only:vec", "output": "vec: what is nanotechnology and how are nanoscale materials used in different industries\nvec: what are the main applications of nanotechnology in medicine and electronics"}
+{"input": "what are nanotechnologies /only:hyde", "output": "hyde: Nanotechnology involves manipulating matter at the nanoscale, typically between 1 and 100 nanometers. Applications include targeted drug delivery using nanoparticles, carbon nanotube transistors in electronics, and nanocoatings that repel water and resist corrosion."}
+{"input": "how to create a color palette for painting? /only:lex", "output": "lex: color palette painting color theory\nlex: mixing paint colors warm cool complementary"}
+{"input": "how to create a color palette for painting? /only:vec", "output": "vec: how do artists create a cohesive color palette for a painting using color theory\nvec: what techniques help choose harmonious paint colors for an artwork"}
+{"input": "how to create a color palette for painting? /only:hyde", "output": "hyde: Start with a limited palette of 4-6 colors: a warm and cool version of each primary (e.g., cadmium yellow, lemon yellow, ultramarine blue, cerulean blue, alizarin crimson, cadmium red). Mix swatches to map out your range. Use complementary colors for contrast and analogous colors for harmony."}
+{"input": "how to make homemade pasta /only:lex", "output": "lex: homemade pasta recipe dough eggs flour\nlex: fresh pasta making rolling cutting"}
+{"input": "how to make homemade pasta /only:vec", "output": "vec: what is the recipe and technique for making fresh pasta dough from scratch\nvec: how to roll and cut homemade pasta without a pasta machine"}
+{"input": "how to make homemade pasta /only:hyde", "output": "hyde: Combine 2 cups of 00 flour with 3 large eggs on a clean surface. Knead the dough for 8-10 minutes until smooth and elastic. Wrap in plastic and rest for 30 minutes. Roll out thin with a rolling pin or pasta machine, then cut into desired shapes like fettuccine or tagliatelle."}
+{"input": "how to reduce stress /only:lex", "output": "lex: stress reduction techniques relaxation\nlex: manage stress exercise meditation breathing"}
+{"input": "how to reduce stress /only:vec", "output": "vec: what are effective daily habits for reducing stress and improving mental health\nvec: how can breathing exercises and physical activity help lower stress levels"}
+{"input": "how to reduce stress /only:hyde", "output": "hyde: Regular physical activity releases endorphins that naturally reduce stress. Practice deep breathing: inhale for 4 counts, hold for 4, exhale for 6. Other effective strategies include progressive muscle relaxation, journaling, limiting caffeine, and maintaining a consistent sleep schedule of 7-9 hours."}
+{"input": "how to develop a research hypothesis /only:lex", "output": "lex: research hypothesis formulation testable\nlex: hypothesis writing independent dependent variable"}
+{"input": "how to develop a research hypothesis /only:vec", "output": "vec: how do you write a clear and testable research hypothesis for a study\nvec: what are the steps to develop a hypothesis from a research question"}
+{"input": "how to develop a research hypothesis /only:hyde", "output": "hyde: A research hypothesis is a specific, testable prediction about the relationship between variables. Start by identifying your research question, then review existing literature. Formulate the hypothesis as an if-then or directional statement, clearly defining the independent and dependent variables."}
+{"input": "what is social contract theory /only:lex", "output": "lex: social contract theory Hobbes Locke Rousseau\nlex: social contract political philosophy government legitimacy"}
+{"input": "what is social contract theory /only:vec", "output": "vec: what is social contract theory and how did Hobbes, Locke, and Rousseau differ in their views\nvec: how does social contract theory explain the legitimacy of government authority"}
+{"input": "what is social contract theory /only:hyde", "output": "hyde: Social contract theory proposes that individuals consent, either explicitly or tacitly, to surrender some freedoms to a governing authority in exchange for social order. Hobbes argued for an absolute sovereign, Locke emphasized natural rights and limited government, and Rousseau stressed the general will of the people."}
+{"input": "code share /only:lex", "output": "lex: code sharing platform snippet pastebin\nlex: codeshare live collaborative editor\nlex: share code online GitHub Gist"}
+{"input": "code share /only:vec", "output": "vec: what are the best platforms for sharing code snippets with others online\nvec: how to share code collaboratively in real time with another developer"}
+{"input": "code share /only:hyde", "output": "hyde: CodeShare.io is a free online editor for sharing code in real time. Paste or type your code, share the generated URL, and others can view or edit simultaneously. For permanent sharing, GitHub Gists let you create public or secret snippets with syntax highlighting and version history."}
+{"input": "what is the significance of the american revolution /only:lex", "output": "lex: American Revolution significance independence 1776\nlex: American Revolution impact democracy constitutional government"}
+{"input": "what is the significance of the american revolution /only:vec", "output": "vec: why was the American Revolution historically significant for democracy and self-governance\nvec: how did the American Revolution influence other independence movements worldwide"}
+{"input": "what is the significance of the american revolution /only:hyde", "output": "hyde: The American Revolution (1775-1783) established the United States as an independent nation and introduced a constitutional republic based on Enlightenment principles. The Declaration of Independence asserted natural rights, and the resulting Constitution created a framework of representative government that influenced the French Revolution and Latin American independence movements."}
+{"input": "how to understand political ideologies /only:lex", "output": "lex: political ideologies left right spectrum\nlex: liberalism conservatism socialism political theory"}
+{"input": "how to understand political ideologies /only:vec", "output": "vec: how can someone learn about different political ideologies and where they fall on the spectrum\nvec: what are the main differences between liberalism, conservatism, socialism, and libertarianism"}
+{"input": "how to understand political ideologies /only:hyde", "output": "hyde: Political ideologies are organized systems of beliefs about governance and society. The left-right spectrum places socialism and progressivism on the left, emphasizing equality and collective action, while conservatism and libertarianism sit on the right, prioritizing individual freedom and tradition. Each ideology has distinct views on the role of government, economics, and social policy."}
+{"input": "how to build confidence in social situations? /only:lex", "output": "lex: social confidence building shyness overcome\nlex: social anxiety tips conversation skills"}
+{"input": "how to build confidence in social situations? /only:vec", "output": "vec: what are practical steps to feel more confident when talking to people at social events\nvec: how can someone overcome social anxiety and build self-confidence in group settings"}
+{"input": "how to build confidence in social situations? /only:hyde", "output": "hyde: Start small: make eye contact and greet one new person at each event. Prepare a few open-ended questions in advance. Focus on listening rather than performing. After each interaction, note what went well. Gradual exposure reduces anxiety over time\u2014the more you practice, the more natural conversations become."}
+{"input": "what to pack for a day hike /only:lex", "output": "lex: day hike packing list gear essentials\nlex: hiking backpack water food first aid"}
+{"input": "what to pack for a day hike /only:vec", "output": "vec: what should I bring in my backpack for a day hike in the mountains\nvec: what are the essential items to pack for a full-day hiking trip"}
+{"input": "what to pack for a day hike /only:hyde", "output": "hyde: Day hike essentials: 2 liters of water, trail snacks (nuts, bars, fruit), map or GPS device, sun protection (hat, sunscreen, sunglasses), first aid kit, rain layer, extra warm layer, headlamp, and a fully charged phone. Wear moisture-wicking layers and broken-in hiking boots."}
+{"input": "what is digital collage art? /only:lex", "output": "lex: digital collage art Photoshop mixed media\nlex: digital collage techniques layers composition"}
+{"input": "what is digital collage art? /only:vec", "output": "vec: what is digital collage art and how is it created using software\nvec: what tools and techniques do artists use to make digital collages"}
+{"input": "what is digital collage art? /only:hyde", "output": "hyde: Digital collage art combines photographs, illustrations, textures, and graphic elements assembled in software like Photoshop, Procreate, or Canva. Artists layer, mask, blend, and transform images to create surreal or thematic compositions. Unlike physical collage, digital tools allow non-destructive editing and infinite experimentation with scale and color."}
+{"input": "how to fix a car radiator leak? /only:lex", "output": "lex: car radiator leak repair fix sealant\nlex: radiator hose replacement coolant leak"}
+{"input": "how to fix a car radiator leak? /only:vec", "output": "vec: how to diagnose and fix a leaking car radiator or radiator hose\nvec: can radiator stop-leak sealant permanently fix a small coolant leak"}
+{"input": "how to fix a car radiator leak? /only:hyde", "output": "hyde: For a small radiator leak, a stop-leak product like Bar's Leaks can provide a temporary fix. Add it to the coolant reservoir and run the engine. For permanent repair, locate the leak by pressurizing the cooling system, then either solder the radiator, replace the damaged hose, or install a new radiator if the damage is severe."}
+{"input": "where to buy saffron /only:lex", "output": "lex: buy saffron threads online spice shop\nlex: saffron purchase quality grade price"}
+{"input": "where to buy saffron /only:vec", "output": "vec: where is the best place to buy high-quality saffron threads online or in stores\nvec: how to find genuine saffron and avoid counterfeit or adulterated products"}
+{"input": "where to buy saffron /only:hyde", "output": "hyde: Buy saffron from reputable spice retailers like Penzeys, Burlap & Barrel, or specialty grocery stores. Look for grade 1 (Sargol or Negin) Iranian or Spanish saffron. Expect to pay $8-15 per gram. Avoid suspiciously cheap saffron\u2014it may be dyed safflower or corn silk."}
+{"input": "what is mahayana buddhism /only:lex", "output": "lex: Mahayana Buddhism bodhisattva teachings\nlex: Mahayana vs Theravada Buddhism sutras"}
+{"input": "what is mahayana buddhism /only:vec", "output": "vec: what are the core beliefs and practices of Mahayana Buddhism\nvec: how does Mahayana Buddhism differ from Theravada Buddhism"}
+{"input": "what is mahayana buddhism /only:hyde", "output": "hyde: Mahayana Buddhism, the \"Great Vehicle,\" emerged around the 1st century CE and emphasizes the bodhisattva ideal\u2014the aspiration to attain enlightenment for the benefit of all sentient beings, not just oneself. Key texts include the Heart Sutra and Lotus Sutra. Major traditions include Zen, Pure Land, and Tibetan Buddhism."}
+{"input": "what is utilitarianism in ethics /only:lex", "output": "lex: utilitarianism ethics greatest happiness principle\nlex: utilitarianism Bentham Mill consequentialism"}
+{"input": "what is utilitarianism in ethics /only:vec", "output": "vec: what is utilitarianism and how does it determine right and wrong actions\nvec: how did Jeremy Bentham and John Stuart Mill develop utilitarian ethics"}
+{"input": "what is utilitarianism in ethics /only:hyde", "output": "hyde: Utilitarianism is a consequentialist ethical theory holding that the morally right action is the one that produces the greatest happiness for the greatest number. Jeremy Bentham proposed a quantitative \"felicific calculus,\" while John Stuart Mill distinguished between higher and lower pleasures, arguing quality of happiness matters as much as quantity."}
+{"input": "what is climate change? /only:lex", "output": "lex: climate change global warming greenhouse gases\nlex: climate change causes effects CO2 emissions"}
+{"input": "what is climate change? /only:vec", "output": "vec: what causes climate change and what are its effects on the planet\nvec: how do greenhouse gas emissions from human activity drive global warming"}
+{"input": "what is climate change? /only:hyde", "output": "hyde: Climate change refers to long-term shifts in global temperatures and weather patterns. Since the Industrial Revolution, burning fossil fuels has released carbon dioxide and methane, trapping heat in the atmosphere. This has caused average global temperatures to rise by about 1.1\u00b0C, leading to melting ice caps, rising sea levels, and more extreme weather events."}
+{"input": "what is the difference between positive and negative rights /only:lex", "output": "lex: positive rights negative rights difference\nlex: positive negative rights examples entitlements liberties"}
+{"input": "what is the difference between positive and negative rights /only:vec", "output": "vec: what is the distinction between positive and negative rights in political philosophy\nvec: can you explain positive rights versus negative rights with examples"}
+{"input": "what is the difference between positive and negative rights /only:hyde", "output": "hyde: Negative rights require others to refrain from interfering\u2014examples include freedom of speech, the right to privacy, and freedom from torture. Positive rights require others to provide something\u2014examples include the right to education, healthcare, or a minimum standard of living. The distinction is central to debates between libertarians and welfare-state advocates."}
+{"input": "what causes migraines /only:lex", "output": "lex: migraine causes triggers brain\nlex: migraine headache serotonin vascular nerve"}
+{"input": "what causes migraines /only:vec", "output": "vec: what are the biological causes and common triggers of migraine headaches\nvec: why do some people get migraines and what happens in the brain during one"}
+{"input": "what causes migraines /only:hyde", "output": "hyde: Migraines involve abnormal brain activity affecting nerve signals, chemicals, and blood vessels. Cortical spreading depression\u2014a wave of electrical activity across the cortex\u2014triggers the trigeminal nerve, releasing inflammatory peptides. Common triggers include stress, hormonal changes, certain foods (aged cheese, alcohol), sleep disruption, and bright lights."}
+{"input": "how to talk to kids about bullying? /only:lex", "output": "lex: talk children bullying conversation advice\nlex: kids bullying prevention parent discussion"}
+{"input": "how to talk to kids about bullying? /only:vec", "output": "vec: how should parents talk to their children about bullying at school\nvec: what are age-appropriate ways to discuss bullying with kids and help them respond"}
+{"input": "how to talk to kids about bullying? /only:hyde", "output": "hyde: Start the conversation calmly by asking open-ended questions: \"Has anyone at school been mean to you or someone else?\" Listen without overreacting. Teach your child to say \"Stop, I don't like that\" firmly, walk away, and tell a trusted adult. Role-play scenarios so they can practice responses."}
+{"input": "when to replace windshield wipers? /only:lex", "output": "lex: replace windshield wipers signs worn\nlex: wiper blade replacement frequency lifespan"}
+{"input": "when to replace windshield wipers? /only:vec", "output": "vec: how often should windshield wipers be replaced and what are signs they need changing\nvec: what are the signs that windshield wiper blades are worn out and need replacement"}
+{"input": "when to replace windshield wipers? /only:hyde", "output": "hyde: Replace windshield wipers every 6-12 months or when you notice streaking, skipping, squeaking, or smearing. Inspect the rubber edge for cracks, tears, or stiffness. If wipers leave unwiped areas or chatter across the glass, it's time for new blades. Extreme heat and cold accelerate deterioration."}
+{"input": "how to aerate lawn manually? /only:lex", "output": "lex: aerate lawn manually core aeration fork\nlex: lawn aeration by hand spike tool"}
+{"input": "how to aerate lawn manually? /only:vec", "output": "vec: how to aerate a lawn by hand without a machine using a garden fork or manual aerator\nvec: what is the best technique for manually aerating compacted soil in a yard"}
+{"input": "how to aerate lawn manually? /only:hyde", "output": "hyde: To aerate manually, push a garden fork or manual core aerator into the soil every 4-6 inches, rocking it slightly to loosen the earth. Work in rows across the lawn. The best time to aerate is early fall for cool-season grasses or late spring for warm-season grasses. Water the lawn the day before to soften the soil."}
+{"input": "how to improve business communication /only:lex", "output": "lex: business communication skills effective workplace\nlex: professional email writing clear messaging"}
+{"input": "how to improve business communication /only:vec", "output": "vec: how can employees improve their written and verbal communication skills at work\nvec: what techniques make business emails and presentations clearer and more effective"}
+{"input": "how to improve business communication /only:hyde", "output": "hyde: Effective business communication starts with clarity: state the purpose in the first sentence, use short paragraphs, and include a clear call to action. In meetings, summarize key points and assign action items. Avoid jargon when possible. Active listening\u2014paraphrasing what others say\u2014builds rapport and reduces misunderstandings."}
+{"input": "how to manage anxiety naturally /only:lex", "output": "lex: manage anxiety natural remedies without medication\nlex: anxiety relief breathing exercise meditation"}
+{"input": "how to manage anxiety naturally /only:vec", "output": "vec: what are natural ways to manage anxiety without medication\nvec: how can exercise, breathing techniques, and lifestyle changes reduce anxiety symptoms"}
+{"input": "how to manage anxiety naturally /only:hyde", "output": "hyde: Natural anxiety management includes regular aerobic exercise (30 minutes, 5 days a week), diaphragmatic breathing, progressive muscle relaxation, and limiting caffeine and alcohol. Cognitive behavioral techniques like thought journaling help identify and challenge anxious thinking patterns. Herbal supplements such as chamomile and ashwagandha show some evidence of benefit."}
+{"input": "how to draft a lease agreement /only:lex", "output": "lex: lease agreement draft template rental\nlex: residential lease contract terms clauses"}
+{"input": "how to draft a lease agreement /only:vec", "output": "vec: what should be included when drafting a residential lease agreement\nvec: how to write a legally sound rental lease agreement between landlord and tenant"}
+{"input": "how to draft a lease agreement /only:hyde", "output": "hyde: A residential lease agreement should include: names of landlord and tenant, property address, lease term (start/end dates), monthly rent amount and due date, security deposit amount and return conditions, maintenance responsibilities, pet policy, late fee terms, and termination/renewal clauses. Both parties should sign and retain copies."}
+{"input": "what is burnout? /only:lex", "output": "lex: burnout syndrome workplace exhaustion\nlex: burnout symptoms causes recovery"}
+{"input": "what is burnout? /only:vec", "output": "vec: what is burnout and what are its symptoms, causes, and effects on health\nvec: how does chronic work stress lead to burnout and what does it feel like"}
+{"input": "what is burnout? /only:hyde", "output": "hyde: Burnout is a state of chronic physical and emotional exhaustion caused by prolonged stress, typically work-related. The WHO classifies it by three dimensions: energy depletion, increased mental distance or cynicism toward one's job, and reduced professional efficacy. Symptoms include fatigue, insomnia, irritability, and difficulty concentrating."}
+{"input": "how to let go of negative thoughts? /only:lex", "output": "lex: let go negative thoughts techniques\nlex: negative thinking patterns CBT mindfulness"}
+{"input": "how to let go of negative thoughts? /only:vec", "output": "vec: how to stop dwelling on negative thoughts and break rumination cycles\nvec: what mindfulness or cognitive techniques help release negative thinking"}
+{"input": "how to let go of negative thoughts? /only:hyde", "output": "hyde: To let go of negative thoughts, practice cognitive defusion: observe the thought without engaging it, label it (\"I'm having the thought that...\"), and let it pass like a cloud. Mindfulness meditation trains this skill. Write recurring worries in a journal, then close it\u2014this externalizes them. Challenge distortions by asking: \"Is this thought based on facts or assumptions?\""}
+{"input": "how to brew the perfect cup of tea /only:lex", "output": "lex: brew tea temperature steep time\nlex: tea brewing method loose leaf"}
+{"input": "how to brew the perfect cup of tea /only:vec", "output": "vec: what are the correct water temperatures and steeping times for different types of tea\nvec: how to brew loose leaf tea properly for the best flavor"}
+{"input": "how to brew the perfect cup of tea /only:hyde", "output": "hyde: Water temperature and steep time vary by tea type. Black tea: 200-212\u00b0F for 3-5 minutes. Green tea: 160-180\u00b0F for 2-3 minutes. White tea: 160-185\u00b0F for 4-5 minutes. Oolong: 185-205\u00b0F for 3-5 minutes. Use 1 teaspoon of loose leaf per 8 oz cup. Pre-warm the teapot with hot water for consistent extraction."}
+{"input": "what is anarchism /only:lex", "output": "lex: anarchism political philosophy anti-state\nlex: anarchism theory Kropotkin Bakunin mutual aid"}
+{"input": "what is anarchism /only:vec", "output": "vec: what is anarchism as a political philosophy and what do anarchists believe\nvec: how do different branches of anarchism envision a society without government"}
+{"input": "what is anarchism /only:hyde", "output": "hyde: Anarchism is a political philosophy that rejects involuntary, coercive hierarchy\u2014particularly the state\u2014and advocates for voluntary, cooperative social organization. Major branches include anarcho-communism (Kropotkin), which envisions communal ownership, anarcho-syndicalism, which organizes through labor unions, and individualist anarchism, which emphasizes personal autonomy."}
+{"input": "how to stay motivated daily? /only:lex", "output": "lex: daily motivation habits discipline routine\nlex: stay motivated goals productivity tips"}
+{"input": "how to stay motivated daily? /only:vec", "output": "vec: what are practical strategies to stay motivated and productive every day\nvec: how to maintain motivation when working toward long-term goals"}
+{"input": "how to stay motivated daily? /only:hyde", "output": "hyde: Set one clear priority each morning rather than a long to-do list. Break large goals into small daily tasks. Track streaks\u2014visual progress reinforces consistency. Pair difficult tasks with rewards. On low-motivation days, commit to just 5 minutes; starting is the hardest part, and momentum usually follows."}
+{"input": "list sort /only:lex", "output": "lex: sort list programming algorithm\nlex: list sort Python Java ascending descending\nlex: array sorting methods comparison"}
+{"input": "list sort /only:vec", "output": "vec: how to sort a list or array in different programming languages\nvec: what sorting algorithms are used for lists and how do they compare in performance"}
+{"input": "list sort /only:hyde", "output": "hyde: In Python, sort a list in-place with list.sort() or return a new sorted list with sorted(). Use key= for custom sorting: sorted(items, key=lambda x: x.name). In Java, use Collections.sort() or List.sort(). Common algorithms include quicksort (O(n log n) average), mergesort (stable, O(n log n)), and timsort (Python/Java default)."}
+{"input": "what was the renaissance period /only:lex", "output": "lex: Renaissance period 14th-17th century Europe\nlex: Renaissance art culture Florence rebirth"}
+{"input": "what was the renaissance period /only:vec", "output": "vec: what was the Renaissance period and why was it significant in European history\nvec: how did the Renaissance transform art, science, and culture in Europe"}
+{"input": "what was the renaissance period /only:hyde", "output": "hyde: The Renaissance (14th-17th century) was a cultural movement that began in Florence, Italy, marking the transition from the medieval period to modernity. It saw a revival of classical Greek and Roman art and philosophy. Key figures include Leonardo da Vinci, Michelangelo, and Galileo. The invention of the printing press accelerated the spread of new ideas across Europe."}
+{"input": "what is a smart thermostat? /only:lex", "output": "lex: smart thermostat WiFi programmable Nest Ecobee\nlex: smart thermostat energy savings features"}
+{"input": "what is a smart thermostat? /only:vec", "output": "vec: what is a smart thermostat and how does it save energy compared to a regular thermostat\nvec: how do smart thermostats like Nest and Ecobee learn and control home temperature"}
+{"input": "what is a smart thermostat? /only:hyde", "output": "hyde: A smart thermostat connects to WiFi and can be controlled via a smartphone app. Models like the Nest Learning Thermostat and Ecobee use sensors and machine learning to build a schedule based on your habits. They adjust heating and cooling automatically, reducing energy use by 10-15% on average compared to standard programmable thermostats."}
+{"input": "what is the great barrier reef /only:lex", "output": "lex: Great Barrier Reef Australia coral ecosystem\nlex: Great Barrier Reef marine biodiversity coral bleaching"}
+{"input": "what is the great barrier reef /only:vec", "output": "vec: what is the Great Barrier Reef and why is it important for marine biodiversity\nvec: where is the Great Barrier Reef located and what threats does it face"}
+{"input": "what is the great barrier reef /only:hyde", "output": "hyde: The Great Barrier Reef, off the coast of Queensland, Australia, is the world's largest coral reef system, stretching over 2,300 kilometers. It comprises nearly 3,000 individual reef systems and supports over 1,500 fish species, 400 coral species, and 30 species of whales and dolphins. Coral bleaching from rising ocean temperatures is its greatest threat."}
+{"input": "what is the significance of the sacred heart? /only:lex", "output": "lex: Sacred Heart Jesus Catholic devotion\nlex: Sacred Heart significance symbolism Christianity"}
+{"input": "what is the significance of the sacred heart? /only:vec", "output": "vec: what does the Sacred Heart of Jesus symbolize in Catholic tradition\nvec: what is the history and religious significance of devotion to the Sacred Heart"}
+{"input": "what is the significance of the sacred heart? /only:hyde", "output": "hyde: The Sacred Heart is a devotional image in Catholicism representing Jesus Christ's divine love for humanity. Popularized by St. Margaret Mary Alacoque's 17th-century visions, it depicts Christ's heart surrounded by a crown of thorns, flames, and a cross. The feast of the Sacred Heart is celebrated 19 days after Pentecost."}
+{"input": "what is survival camping? /only:lex", "output": "lex: survival camping wilderness skills bushcraft\nlex: survival camping gear shelter fire water"}
+{"input": "what is survival camping? /only:vec", "output": "vec: what is survival camping and what skills do you need to camp with minimal gear\nvec: how to prepare for a survival camping trip in the wilderness"}
+{"input": "what is survival camping? /only:hyde", "output": "hyde: Survival camping means spending time outdoors with minimal or no modern gear, relying on wilderness skills. Core skills include building a debris shelter, starting fire with a ferro rod or bow drill, purifying water by boiling or filtering, navigating with a map and compass, and foraging or trapping for food."}
+{"input": "how to fix wifi connection dropping /only:lex", "output": "lex: WiFi dropping connection fix troubleshoot\nlex: WiFi disconnecting frequently router reset"}
+{"input": "how to fix wifi connection dropping /only:vec", "output": "vec: how to troubleshoot a WiFi connection that keeps dropping or disconnecting\nvec: why does my WiFi keep cutting out and how do I fix it"}
+{"input": "how to fix wifi connection dropping /only:hyde", "output": "hyde: If your WiFi keeps dropping, try these steps: 1) Restart your router and modem by unplugging for 30 seconds. 2) Move closer to the router or remove obstructions. 3) Change the WiFi channel in router settings to reduce interference. 4) Update router firmware. 5) Check for driver updates on your device. 6) Disable power-saving mode for your wireless adapter."}
+{"input": "what are the key elements of horror writing? /only:lex", "output": "lex: horror writing elements techniques atmosphere\nlex: horror fiction suspense tension dread"}
+{"input": "what are the key elements of horror writing? /only:vec", "output": "vec: what literary elements and techniques make horror writing effective\nvec: how do horror authors create suspense, tension, and fear in their stories"}
+{"input": "what are the key elements of horror writing? /only:hyde", "output": "hyde: Effective horror writing relies on atmosphere, pacing, and the unknown. Build dread through setting\u2014dark, isolated, claustrophobic spaces. Use sensory details to ground the reader. Withhold information: what the reader imagines is scarier than what you show. Escalate tension gradually, then release it with a shock. Relatable characters make the stakes feel real."}
+{"input": "what is the importance of free press /only:lex", "output": "lex: free press importance democracy journalism\nlex: freedom of press First Amendment accountability"}
+{"input": "what is the importance of free press /only:vec", "output": "vec: why is a free press important for democracy and holding governments accountable\nvec: what role does press freedom play in protecting civil liberties and public information"}
+{"input": "what is the importance of free press /only:hyde", "output": "hyde: A free press serves as a watchdog on government and powerful institutions, exposing corruption, fraud, and abuse. The First Amendment protects press freedom in the United States. Without it, citizens lack access to independent information needed to make informed decisions. Countries with restricted press freedoms consistently rank lower on democracy indices."}
+{"input": "what are the best national parks? /only:lex", "output": "lex: best national parks USA visit\nlex: top national parks Yellowstone Yosemite Zion"}
+{"input": "what are the best national parks? /only:vec", "output": "vec: what are the most popular and scenic national parks to visit in the United States\nvec: which national parks offer the best hiking, scenery, and wildlife experiences"}
+{"input": "what are the best national parks? /only:hyde", "output": "hyde: Top US national parks include Yellowstone (geysers, wildlife), Yosemite (granite cliffs, waterfalls), Grand Canyon (layered red rock), Zion (slot canyons, river hikes), Glacier (pristine alpine lakes), and Acadia (Atlantic coastline). Visit during shoulder season (May or September) for fewer crowds and pleasant weather."}
+{"input": "what is deconstruction /only:lex", "output": "lex: deconstruction Derrida literary theory philosophy\nlex: deconstruction meaning binary oppositions text"}
+{"input": "what is deconstruction /only:vec", "output": "vec: what is deconstruction in philosophy and literary theory as developed by Jacques Derrida\nvec: how does deconstructionist analysis challenge fixed meaning in texts"}
+{"input": "what is deconstruction /only:hyde", "output": "hyde: Deconstruction, associated with Jacques Derrida, is a method of critical analysis that examines how meaning in texts is constructed through binary oppositions (speech/writing, presence/absence). Derrida argued that meaning is never fixed; it is always deferred through a chain of signifiers. Deconstruction reveals the internal contradictions and assumptions hidden within texts."}
+{"input": "how to repair a leaky faucet /only:lex", "output": "lex: leaky faucet repair fix dripping\nlex: faucet washer O-ring cartridge replacement"}
+{"input": "how to repair a leaky faucet /only:vec", "output": "vec: how to fix a dripping faucet by replacing the washer or cartridge\nvec: what are the step-by-step instructions for repairing a leaky kitchen or bathroom faucet"}
+{"input": "how to repair a leaky faucet /only:hyde", "output": "hyde: Turn off the water supply valves under the sink. Remove the faucet handle by unscrewing the decorative cap and handle screw. Pull out the stem or cartridge. For compression faucets, replace the rubber washer and O-ring. For cartridge faucets, replace the entire cartridge. Reassemble, turn the water back on, and test for leaks."}
+{"input": "what is the significance of the ganges river in hinduism? /only:lex", "output": "lex: Ganges River Hinduism sacred significance\nlex: Ganga river Hindu rituals purification"}
+{"input": "what is the significance of the ganges river in hinduism? /only:vec", "output": "vec: why is the Ganges River considered sacred in Hinduism\nvec: what religious rituals and beliefs are associated with the Ganges in Hindu tradition"}
+{"input": "what is the significance of the ganges river in hinduism? /only:hyde", "output": "hyde: The Ganges (Ganga) is Hinduism's holiest river, personified as the goddess Ganga. Hindus believe bathing in the Ganges washes away sins and that immersing ashes of the dead in the river frees the soul from the cycle of rebirth. The cities of Varanasi and Haridwar along the Ganges host major pilgrimage sites and cremation ghats."}
+{"input": "best places to buy bonsai trees /only:lex", "output": "lex: buy bonsai trees online nursery shop\nlex: bonsai tree purchase quality species"}
+{"input": "best places to buy bonsai trees /only:vec", "output": "vec: where are the best places to buy bonsai trees online or at local nurseries\nvec: which online retailers and nurseries sell high-quality bonsai trees for beginners"}
+{"input": "best places to buy bonsai trees /only:hyde", "output": "hyde: Reputable bonsai retailers include Bonsai Boy of New York, Brussel's Bonsai, and Eastern Leaf (online). Local bonsai nurseries and Japanese garden shops often carry better-quality specimens. For beginners, start with hardy species like Chinese elm, ficus, or juniper. Expect to pay $30-80 for a quality starter tree."}
+{"input": "what are the principles of physics /only:lex", "output": "lex: physics principles fundamental laws\nlex: Newton's laws thermodynamics relativity quantum"}
+{"input": "what are the principles of physics /only:vec", "output": "vec: what are the fundamental principles and laws of physics\nvec: how do Newton's laws, thermodynamics, and quantum mechanics form the foundations of physics"}
+{"input": "what are the principles of physics /only:hyde", "output": "hyde: The fundamental principles of physics include Newton's three laws of motion, the law of universal gravitation, the laws of thermodynamics (energy conservation, entropy), Maxwell's equations for electromagnetism, Einstein's special and general relativity, and quantum mechanics. These describe how matter, energy, space, and time interact at all scales."}
+{"input": "how to optimize website for seo /only:lex", "output": "lex: SEO optimization website search engine ranking\nlex: on-page SEO meta tags keywords content"}
+{"input": "how to optimize website for seo /only:vec", "output": "vec: what are the key steps to optimize a website for search engine rankings\nvec: how to improve on-page and technical SEO for better Google search results"}
+{"input": "how to optimize website for seo /only:hyde", "output": "hyde: On-page SEO: use target keywords in title tags, H1 headings, and meta descriptions. Write unique, high-quality content over 1,000 words. Optimize images with alt text and compression. Technical SEO: ensure fast page load times (under 3 seconds), mobile responsiveness, HTTPS, clean URL structure, and an XML sitemap submitted to Google Search Console."}
+{"input": "what are the sacred texts of buddhism /only:lex", "output": "lex: Buddhist sacred texts scriptures Tripitaka\nlex: Buddhism sutras Pali Canon Mahayana texts"}
+{"input": "what are the sacred texts of buddhism /only:vec", "output": "vec: what are the main sacred texts and scriptures of Buddhism\nvec: how do the Pali Canon and Mahayana sutras differ as Buddhist scriptures"}
+{"input": "what are the sacred texts of buddhism /only:hyde", "output": "hyde: The primary Buddhist scripture is the Tripitaka (Pali Canon), composed of three \"baskets\": the Vinaya Pitaka (monastic rules), Sutta Pitaka (discourses of the Buddha), and Abhidhamma Pitaka (philosophical analysis). Mahayana Buddhism adds texts like the Heart Sutra, Diamond Sutra, and Lotus Sutra, emphasizing the bodhisattva path."}
+{"input": "how to participate in public hearings /only:lex", "output": "lex: public hearing participation attend testify\nlex: public hearing comment speak local government"}
+{"input": "how to participate in public hearings /only:vec", "output": "vec: how can citizens participate and give testimony at public hearings\nvec: what are the steps to attend and speak at a local government public hearing"}
+{"input": "how to participate in public hearings /only:hyde", "output": "hyde: To participate in a public hearing, check your local government website for upcoming meetings and agendas. Sign up to speak in advance if required. Prepare a concise statement (usually 2-3 minutes). State your name and address for the record. Focus on facts and personal impact. You can also submit written comments before the deadline."}
+{"input": "what is a hypothesis /only:lex", "output": "lex: hypothesis definition scientific research\nlex: hypothesis testable prediction experiment"}
+{"input": "what is a hypothesis /only:vec", "output": "vec: what is a hypothesis in the scientific method and how is one formed\nvec: what makes a good scientific hypothesis and how is it different from a theory"}
+{"input": "what is a hypothesis /only:hyde", "output": "hyde: A hypothesis is a testable prediction about the relationship between two or more variables. In the scientific method, it follows observation and research: based on existing knowledge, you propose an explanation that can be tested through experimentation. A hypothesis must be falsifiable\u2014there must be a possible outcome that would prove it wrong."}
+{"input": "what is extreme sports photography? /only:lex", "output": "lex: extreme sports photography action camera\nlex: adventure sports photography techniques shutter speed"}
+{"input": "what is extreme sports photography? /only:vec", "output": "vec: what is extreme sports photography and what equipment and techniques does it require\nvec: how do photographers capture high-speed action shots in extreme sports"}
+{"input": "what is extreme sports photography? /only:hyde", "output": "hyde: Extreme sports photography captures athletes performing in high-risk activities like surfing, snowboarding, rock climbing, and base jumping. Photographers use fast shutter speeds (1/1000s or faster), continuous autofocus, and burst mode. Key gear includes weather-sealed DSLRs or mirrorless cameras, telephoto lenses (70-200mm), and GoPro-style action cameras for POV shots."}
+{"input": "how to live sustainably? /only:lex", "output": "lex: sustainable living tips eco-friendly lifestyle\nlex: reduce waste carbon footprint daily habits"}
+{"input": "how to live sustainably? /only:vec", "output": "vec: what are practical everyday habits for living a more sustainable and eco-friendly life\nvec: how can individuals reduce their carbon footprint and waste in daily living"}
+{"input": "how to live sustainably? /only:hyde", "output": "hyde: Sustainable living starts with reducing consumption: buy less, choose durable goods, and repair before replacing. Eat more plant-based meals, which have a lower carbon footprint. Use public transit, bike, or walk. Reduce waste through composting and recycling. Switch to renewable energy and use LED lighting. Carry reusable bags, bottles, and containers."}
+{"input": "what is epistemological relativism /only:lex", "output": "lex: epistemological relativism knowledge truth\nlex: epistemological relativism philosophy objectivity"}
+{"input": "what is epistemological relativism /only:vec", "output": "vec: what is epistemological relativism and how does it challenge objective truth claims\nvec: how does epistemological relativism argue that knowledge is relative to perspective or culture"}
+{"input": "what is epistemological relativism /only:hyde", "output": "hyde: Epistemological relativism holds that knowledge and truth are not absolute but are relative to the social, cultural, or historical context in which they are produced. Different communities may have equally valid but incompatible knowledge systems. Critics argue this leads to self-refutation: the claim that all knowledge is relative is itself presented as an absolute truth."}
+{"input": "what is mixed media art? /only:lex", "output": "lex: mixed media art techniques materials\nlex: mixed media collage painting assemblage"}
+{"input": "what is mixed media art? /only:vec", "output": "vec: what is mixed media art and what materials and techniques are commonly used\nvec: how do artists combine different media like paint, paper, and found objects in mixed media artwork"}
+{"input": "what is mixed media art? /only:hyde", "output": "hyde: Mixed media art combines two or more artistic media in a single work\u2014for example, acrylic paint with collaged paper, fabric, ink, and found objects. Techniques include layering, texturing with gels and paste, image transfers, and assemblage. The combination of materials creates visual depth and tactile richness that single-medium works cannot achieve."}
+{"input": "how to work at microsoft? /only:lex", "output": "lex: Microsoft jobs hiring apply career\nlex: Microsoft interview process software engineer"}
+{"input": "how to work at microsoft? /only:vec", "output": "vec: how to apply for a job at Microsoft and what is the interview process like\nvec: what qualifications and steps are needed to get hired at Microsoft"}
+{"input": "how to work at microsoft? /only:hyde", "output": "hyde: Apply through Microsoft's careers portal at careers.microsoft.com. Most technical roles require a CS degree or equivalent experience. The interview process typically includes a phone screen, online coding assessment, and an on-site loop of 4-5 interviews covering algorithms, system design, and behavioral questions. Prepare with LeetCode and system design practice."}
+{"input": "what are the characteristics of haiku? /only:lex", "output": "lex: haiku characteristics syllable structure\nlex: haiku poetry 5-7-5 Japanese nature"}
+{"input": "what are the characteristics of haiku? /only:vec", "output": "vec: what are the defining characteristics and rules of haiku poetry\nvec: how is a traditional Japanese haiku structured and what themes does it explore"}
+{"input": "what are the characteristics of haiku? /only:hyde", "output": "hyde: Haiku is a Japanese poetic form traditionally consisting of three lines with a 5-7-5 syllable pattern (or 17 morae in Japanese). Haiku typically captures a moment in nature and includes a kigo (seasonal word) and a kireji (cutting word) that creates a pause or shift. The poem juxtaposes two images to evoke emotion through suggestion rather than direct statement."}
+{"input": "what is plato's theory of forms /only:lex", "output": "lex: Plato theory of Forms Ideas philosophy\nlex: Platonic Forms abstract reality idealism"}
+{"input": "what is plato's theory of forms /only:vec", "output": "vec: what is Plato's theory of Forms and how does it explain reality\nvec: how did Plato distinguish between the world of Forms and the physical world"}
+{"input": "what is plato's theory of forms /only:hyde", "output": "hyde: Plato's theory of Forms posits that the physical world is a shadow of a higher, non-material reality consisting of perfect, eternal Forms (Ideas). A beautiful object participates in the Form of Beauty; a just action reflects the Form of Justice. True knowledge comes from understanding these abstract Forms through reason, not through sensory experience of the changeable physical world."}
+{"input": "what is the law of attraction? /only:lex", "output": "lex: law of attraction manifestation positive thinking\nlex: law of attraction belief visualization"}
+{"input": "what is the law of attraction? /only:vec", "output": "vec: what is the law of attraction and how is it supposed to work\nvec: does the law of attraction have any scientific basis or evidence"}
+{"input": "what is the law of attraction? /only:hyde", "output": "hyde: The law of attraction is the belief that positive or negative thoughts bring positive or negative experiences into a person's life. Proponents, popularized by the book \"The Secret,\" claim that visualizing desired outcomes and maintaining a positive mindset attracts those outcomes. Scientists generally consider it pseudoscience, though positive thinking can influence motivation and goal-directed behavior."}
+{"input": "what is literary parody? /only:lex", "output": "lex: literary parody satire imitation genre\nlex: parody literature examples humor exaggeration"}
+{"input": "what is literary parody? /only:vec", "output": "vec: what is literary parody and how does it use imitation for comedic or critical effect\nvec: what are famous examples of parody in literature"}
+{"input": "what is literary parody? /only:hyde", "output": "hyde: Literary parody imitates the style, conventions, or content of a specific work or genre for comedic or critical effect. It exaggerates distinctive features to expose flaws or absurdities. Examples include Don Quixote (parodying chivalric romances), Northanger Abbey (Gothic novels), and The Hitchhiker's Guide to the Galaxy (science fiction tropes)."}
+{"input": "how to invest in cryptocurrency safely? /only:lex", "output": "lex: cryptocurrency investing safely beginner\nlex: crypto investment security wallet exchange"}
+{"input": "how to invest in cryptocurrency safely? /only:vec", "output": "vec: how can beginners invest in cryptocurrency safely and minimize risk of loss\nvec: what security measures should you take when buying and storing cryptocurrency"}
+{"input": "how to invest in cryptocurrency safely? /only:hyde", "output": "hyde: To invest in crypto safely: use reputable exchanges like Coinbase or Kraken with two-factor authentication. Never invest more than you can afford to lose. Transfer holdings to a hardware wallet (Ledger, Trezor) for long-term storage. Diversify across Bitcoin and Ethereum rather than speculative altcoins. Beware of phishing scams and never share your seed phrase."}
+{"input": "what is a protagonist? /only:lex", "output": "lex: protagonist definition literature main character\nlex: protagonist role story narrative hero"}
+{"input": "what is a protagonist? /only:vec", "output": "vec: what is a protagonist in literature and what role do they play in a story\nvec: how does the protagonist differ from the antagonist in narrative fiction"}
+{"input": "what is a protagonist? /only:hyde", "output": "hyde: The protagonist is the central character of a narrative, the one whose goals and conflicts drive the plot. The story is told from their perspective or follows their journey. Protagonists are not always heroes\u2014they can be antiheroes or morally ambiguous characters. The antagonist opposes the protagonist, creating the central conflict of the story."}
+{"input": "how to prepare for a promotion review? /only:lex", "output": "lex: promotion review preparation performance\nlex: job promotion meeting self-assessment achievements"}
+{"input": "how to prepare for a promotion review? /only:vec", "output": "vec: how should an employee prepare for a promotion review meeting with their manager\nvec: what documentation and evidence should you gather before a promotion discussion"}
+{"input": "how to prepare for a promotion review? /only:hyde", "output": "hyde: Before your promotion review, compile a list of key accomplishments with measurable results (revenue generated, projects delivered, efficiency improvements). Gather positive feedback from colleagues and clients. Align your achievements with the next-level job description. Prepare specific examples demonstrating leadership, initiative, and impact. Practice articulating your case concisely."}
+{"input": "how to reduce personal water usage? /only:lex", "output": "lex: reduce water usage conservation tips home\nlex: save water household low-flow fixtures"}
+{"input": "how to reduce personal water usage? /only:vec", "output": "vec: what are practical ways to reduce water consumption at home\nvec: how can individuals conserve water in their daily routines and household"}
+{"input": "how to reduce personal water usage? /only:hyde", "output": "hyde: Install low-flow showerheads (2 GPM or less) and faucet aerators. Fix leaky faucets\u2014a drip wastes up to 3,000 gallons per year. Take shorter showers (5 minutes saves 12 gallons). Run dishwashers and washing machines only with full loads. Water gardens in the early morning to reduce evaporation. Collect rainwater for outdoor use."}
+{"input": "sustainable technology /only:lex", "output": "lex: sustainable technology green tech renewable energy\nlex: sustainable technology clean energy innovation"}
+{"input": "sustainable technology /only:vec", "output": "vec: what are examples of sustainable technologies that reduce environmental impact\nvec: how is technology being used to promote sustainability and fight climate change"}
+{"input": "sustainable technology /only:hyde", "output": "hyde: Sustainable technologies aim to reduce environmental impact while meeting human needs. Examples include solar panels and wind turbines for clean energy, electric vehicles, energy-efficient building materials, carbon capture systems, biodegradable plastics, precision agriculture that reduces water and pesticide use, and smart grids that optimize energy distribution."}
+{"input": "how do i vote in person /only:lex", "output": "lex: vote in person polling place Election Day\nlex: in-person voting process ID requirements"}
+{"input": "how do i vote in person /only:vec", "output": "vec: what are the steps to vote in person at a polling place on Election Day\nvec: what do I need to bring and expect when voting in person for the first time"}
+{"input": "how do i vote in person /only:hyde", "output": "hyde: To vote in person, check your registration status and find your polling location at vote.org or your state's election website. Bring a valid photo ID if required by your state. On Election Day, go to your assigned polling place, check in with a poll worker, receive your ballot, mark your choices, and submit your ballot through the scanner or ballot box."}
+{"input": "what is aquaponics? /only:lex", "output": "lex: aquaponics fish plants symbiotic system\nlex: aquaponics setup grow food fish tank"}
+{"input": "what is aquaponics? /only:vec", "output": "vec: what is aquaponics and how does it combine fish farming with plant growing\nvec: how does an aquaponics system work and what can you grow with it"}
+{"input": "what is aquaponics? /only:hyde", "output": "hyde: Aquaponics is a food production system that combines aquaculture (raising fish) with hydroponics (growing plants in water). Fish waste provides natural fertilizer for the plants, and the plants filter the water for the fish, creating a symbiotic cycle. Common setups use tilapia or goldfish with leafy greens, herbs, and tomatoes."}
+{"input": "what is the significance of the hajj in islam? /only:lex", "output": "lex: Hajj Islam pilgrimage Mecca significance\nlex: Hajj pillar Islam Kaaba rituals"}
+{"input": "what is the significance of the hajj in islam? /only:vec", "output": "vec: why is the Hajj pilgrimage to Mecca significant in Islam\nvec: what are the rituals and spiritual meaning of the Hajj for Muslims"}
+{"input": "what is the significance of the hajj in islam? /only:hyde", "output": "hyde: The Hajj is the fifth pillar of Islam, requiring every able-bodied Muslim who can afford it to make the pilgrimage to Mecca at least once in their lifetime. Performed during Dhul Hijjah, the rituals include circling the Kaaba seven times (tawaf), walking between Safa and Marwah, standing at Arafat, and the symbolic stoning of the devil at Mina."}
+{"input": "what is a hypothesis testing /only:lex", "output": "lex: hypothesis testing statistics null alternative\nlex: hypothesis test p-value significance level"}
+{"input": "what is a hypothesis testing /only:vec", "output": "vec: what is hypothesis testing in statistics and how does it work\nvec: how do you perform a hypothesis test using null and alternative hypotheses"}
+{"input": "what is a hypothesis testing /only:hyde", "output": "hyde: Hypothesis testing is a statistical method for making decisions using data. You state a null hypothesis (H0, no effect) and an alternative hypothesis (H1, effect exists). Collect data and calculate a test statistic. If the p-value is below the significance level (typically 0.05), reject H0. Common tests include t-test, chi-square, and ANOVA."}
+{"input": "how to publish a scientific article /only:lex", "output": "lex: publish scientific article journal peer review\nlex: scientific paper submission academic journal"}
+{"input": "how to publish a scientific article /only:vec", "output": "vec: what are the steps to publish a research article in a peer-reviewed scientific journal\nvec: how does the peer review and journal submission process work for scientific papers"}
+{"input": "how to publish a scientific article /only:hyde", "output": "hyde: To publish a scientific article: 1) Write the manuscript following IMRAD format (Introduction, Methods, Results, Discussion). 2) Choose a target journal matching your topic and impact level. 3) Format per the journal's author guidelines. 4) Submit through the journal's online portal. 5) Respond to peer reviewer comments during revision. The process typically takes 3-12 months."}
+{"input": "what are common themes in poetry? /only:lex", "output": "lex: poetry themes common literary motifs\nlex: poetry themes love death nature identity"}
+{"input": "what are common themes in poetry? /only:vec", "output": "vec: what are the most common themes explored in poetry across different periods\nvec: how do poets use recurring themes like love, death, and nature in their work"}
+{"input": "what are common themes in poetry? /only:hyde", "output": "hyde: Common poetry themes include love and desire, mortality and the passage of time, nature and the seasons, loss and grief, identity and self-discovery, war and conflict, beauty, spirituality, and social justice. These universal themes recur across periods\u2014from Sappho's love lyrics to Keats's meditations on mortality to contemporary poets exploring identity."}
+{"input": "how to write a resume /only:lex", "output": "lex: write resume format template job\nlex: resume writing tips work experience skills"}
+{"input": "how to write a resume /only:vec", "output": "vec: how to write an effective resume that stands out to employers and recruiters\nvec: what should be included in a resume and how should it be formatted"}
+{"input": "how to write a resume /only:hyde", "output": "hyde: A strong resume includes: contact information, a brief professional summary (2-3 sentences), work experience in reverse chronological order with bullet-point achievements, education, and relevant skills. Use action verbs (\"led,\" \"built,\" \"increased\") and quantify results (\"increased sales by 25%\"). Keep it to one page for under 10 years of experience. Tailor it to each job posting."}
+{"input": "what are key performance indicators /only:lex", "output": "lex: key performance indicators KPIs metrics\nlex: KPI examples business performance measurement"}
+{"input": "what are key performance indicators /only:vec", "output": "vec: what are key performance indicators and how are they used to measure business success\nvec: how do companies choose and track the right KPIs for their goals"}
+{"input": "what are key performance indicators /only:hyde", "output": "hyde: Key Performance Indicators (KPIs) are measurable values that demonstrate how effectively a company is achieving its objectives. Examples include revenue growth rate, customer acquisition cost, employee retention rate, and net promoter score. Effective KPIs are specific, measurable, achievable, relevant, and time-bound (SMART). They should align directly with strategic goals."}
+{"input": "how to find art inspiration online? /only:lex", "output": "lex: art inspiration online websites platforms\nlex: art inspiration Pinterest Behance DeviantArt"}
+{"input": "how to find art inspiration online? /only:vec", "output": "vec: where can artists find creative inspiration and references online\nvec: what websites and platforms are best for discovering art inspiration"}
+{"input": "how to find art inspiration online? /only:hyde", "output": "hyde: Top platforms for art inspiration include Pinterest (curated mood boards), Behance and Dribbble (professional portfolios), ArtStation (digital and concept art), DeviantArt (community art), and Instagram art hashtags. Museums also offer virtual collections: Google Arts & Culture, the Met's Open Access, and the Rijksmuseum's digital archive."}
+{"input": "what is the significance of logic in ethics? /only:lex", "output": "lex: logic ethics moral reasoning philosophy\nlex: logical arguments ethical theory validity"}
+{"input": "what is the significance of logic in ethics? /only:vec", "output": "vec: what role does logic play in ethical reasoning and moral philosophy\nvec: how do philosophers use logical arguments to evaluate ethical claims"}
+{"input": "what is the significance of logic in ethics? /only:hyde", "output": "hyde: Logic provides the structural framework for ethical reasoning. Valid arguments require that conclusions follow necessarily from premises. In ethics, logic helps identify fallacies, test the consistency of moral principles, and evaluate whether ethical claims are well-supported. For example, the logical form of universalizability in Kant's categorical imperative tests moral maxims for contradiction."}
+{"input": "how to engage in sustainable urban living? /only:lex", "output": "lex: sustainable urban living city eco-friendly\nlex: urban sustainability public transit green housing"}
+{"input": "how to engage in sustainable urban living? /only:vec", "output": "vec: what are practical ways to live sustainably in a city environment\nvec: how can urban residents reduce their environmental footprint in daily life"}
+{"input": "how to engage in sustainable urban living? /only:hyde", "output": "hyde: Sustainable urban living includes using public transit, biking, or walking instead of driving. Choose an energy-efficient apartment, reduce food waste through composting and meal planning, shop at local farmers markets, and support community gardens. Use shared resources like tool libraries and car-sharing services to reduce individual consumption."}
+{"input": "what is the concept of shalom in judaism? /only:lex", "output": "lex: shalom Judaism peace concept meaning\nlex: shalom Hebrew wholeness completeness Jewish"}
+{"input": "what is the concept of shalom in judaism? /only:vec", "output": "vec: what does the concept of shalom mean in Judaism beyond just peace\nvec: how is shalom understood as wholeness and completeness in Jewish theology"}
+{"input": "what is the concept of shalom in judaism? /only:hyde", "output": "hyde: Shalom in Judaism means far more than the absence of conflict. Derived from the Hebrew root meaning \"wholeness\" or \"completeness,\" shalom encompasses peace, harmony, welfare, and flourishing. It describes right relationships between people, with God, and with creation. The pursuit of shalom (rodef shalom) is a central ethical obligation in Jewish life."}
+{"input": "how do structuralism and functionalism differ /only:lex", "output": "lex: structuralism functionalism differences psychology\nlex: structuralism Wundt functionalism James psychology"}
+{"input": "how do structuralism and functionalism differ /only:vec", "output": "vec: what are the differences between structuralism and functionalism in psychology\nvec: how did Wundt's structuralism differ from William James's functionalism"}
+{"input": "how do structuralism and functionalism differ /only:hyde", "output": "hyde: Structuralism, founded by Wilhelm Wundt, sought to break down mental processes into their basic elements through introspection\u2014analyzing the structure of consciousness. Functionalism, led by William James, focused instead on the purpose of mental processes\u2014how the mind helps organisms adapt to their environment. Structuralism asked \"what is consciousness?\" while functionalism asked \"what is consciousness for?\""}
+{"input": "duolingo courses /only:lex", "output": "lex: Duolingo language courses available\nlex: Duolingo app languages learn"}
+{"input": "duolingo courses /only:vec", "output": "vec: what language courses are available on Duolingo and which are the most popular\nvec: how effective is Duolingo for learning a new language and what languages does it offer"}
+{"input": "duolingo courses /only:hyde", "output": "hyde: Duolingo offers courses in over 40 languages, including Spanish, French, German, Japanese, Korean, Mandarin, Italian, Portuguese, and Hindi. Each course uses gamified lessons with speaking, listening, reading, and writing exercises. Popular courses include Spanish for English speakers (the most enrolled) and English for Spanish speakers."}
+{"input": "how to hang artwork without nails /only:lex", "output": "lex: hang artwork without nails wall\nlex: picture hanging command strips adhesive hooks"}
+{"input": "how to hang artwork without nails /only:vec", "output": "vec: how to hang pictures and artwork on walls without using nails or drilling holes\nvec: what are the best no-damage methods for hanging frames on walls"}
+{"input": "how to hang artwork without nails /only:hyde", "output": "hyde: Command Strips by 3M hold up to 16 lbs and leave no wall damage\u2014press firmly for 30 seconds and wait 1 hour before hanging. Other nail-free options include adhesive hooks, velcro strips, magnetic frames, and picture hanging wire with adhesive anchors. For heavier pieces, use monkey hooks which require only a tiny hole, no hammer needed."}
+{"input": "how augmented reality is applied in different fields /only:lex", "output": "lex: augmented reality applications fields industry\nlex: AR technology healthcare education retail"}
+{"input": "how augmented reality is applied in different fields /only:vec", "output": "vec: how is augmented reality being used in healthcare, education, and retail industries\nvec: what are real-world applications of augmented reality across different fields"}
+{"input": "how augmented reality is applied in different fields /only:hyde", "output": "hyde: Augmented reality overlays digital content onto the real world and is applied across many fields. In healthcare, surgeons use AR to visualize anatomy during procedures. In education, AR apps bring textbook content to life in 3D. Retailers like IKEA use AR to let customers preview furniture in their homes. In manufacturing, AR guides workers through assembly with step-by-step overlays."}
+{"input": "what are the best soil types for roses /only:lex", "output": "lex: best soil roses growing type\nlex: rose garden soil pH loam drainage"}
+{"input": "what are the best soil types for roses /only:vec", "output": "vec: what type of soil do roses grow best in and how should it be prepared\nvec: what soil pH and composition are ideal for growing healthy rose bushes"}
+{"input": "what are the best soil types for roses /only:hyde", "output": "hyde: Roses thrive in well-draining loamy soil with a pH between 6.0 and 6.5. Amend heavy clay soil with compost and coarse sand to improve drainage. Mix in aged manure or rose-specific fertilizer before planting. Ensure soil holds moisture without becoming waterlogged. Mulch with 2-3 inches of organic material to retain moisture and regulate temperature."}
+{"input": "how to encourage siblings to get along? /only:lex", "output": "lex: siblings get along fighting conflict resolution\nlex: sibling rivalry reduce cooperation strategies"}
+{"input": "how to encourage siblings to get along? /only:vec", "output": "vec: how can parents encourage their children to get along and reduce sibling rivalry\nvec: what strategies help siblings resolve conflicts and build positive relationships"}
+{"input": "how to encourage siblings to get along? /only:hyde", "output": "hyde: Give each child one-on-one time to reduce competition for attention. Avoid comparing siblings or labeling them (\"the smart one\"). Teach conflict resolution: help them express feelings with \"I\" statements and find compromises. Praise cooperation when you see it. Set clear family rules about physical aggression and name-calling."}
+{"input": "what is the great wall of china? /only:lex", "output": "lex: Great Wall China history construction\nlex: Great Wall China length dynasty defense"}
+{"input": "what is the great wall of china? /only:vec", "output": "vec: what is the Great Wall of China and why was it built\nvec: how long is the Great Wall of China and which dynasties built it"}
+{"input": "what is the great wall of china? /only:hyde", "output": "hyde: The Great Wall of China is a series of fortifications built over centuries to protect Chinese states and empires from northern invasions. The most well-known sections were built during the Ming Dynasty (1368-1644). The total length, including all branches and sections across dynasties, is approximately 21,196 kilometers (13,171 miles)."}
+{"input": "how to attend a political rally /only:lex", "output": "lex: attend political rally event tips\nlex: political rally preparation safety what to bring"}
+{"input": "how to attend a political rally /only:vec", "output": "vec: how to find and attend a political rally or campaign event in your area\nvec: what should you know before attending your first political rally"}
+{"input": "how to attend a political rally /only:hyde", "output": "hyde: Find rallies through candidate websites, social media, or event platforms like Eventbrite. Register if required (RSVP is often free). Arrive early as venues fill up. Bring water, sunscreen if outdoors, a charged phone, and valid ID. Wear comfortable shoes. Be aware of your surroundings and know the exit locations. Follow posted rules about signs and bags."}
+{"input": "what is the function of a narrative arc? /only:lex", "output": "lex: narrative arc function story structure\nlex: narrative arc exposition climax resolution plot"}
+{"input": "what is the function of a narrative arc? /only:vec", "output": "vec: what is a narrative arc and how does it structure a story from beginning to end\nvec: what are the parts of a narrative arc and why is it important in storytelling"}
+{"input": "what is the function of a narrative arc? /only:hyde", "output": "hyde: A narrative arc is the structure that shapes a story's progression. It typically follows five stages: exposition (introduces characters and setting), rising action (builds conflict and tension), climax (the turning point), falling action (consequences unfold), and resolution (conflict is resolved). The arc gives readers a satisfying sense of progression and closure."}
+{"input": "arg parse /only:lex", "output": "lex: argparse Python command line arguments\nlex: argument parser CLI Python module"}
+{"input": "arg parse /only:vec", "output": "vec: how to use Python argparse module to parse command line arguments\nvec: how to define positional and optional arguments with argparse"}
+{"input": "arg parse /only:hyde", "output": "hyde: Use argparse to handle CLI arguments: parser = argparse.ArgumentParser(); parser.add_argument(\"file\"); args = parser.parse_args(). Supports positional args, optional flags, subcommands, and type validation."}
+{"input": "how to draw realistic portraits? /only:lex", "output": "lex: draw realistic portrait pencil technique\nlex: portrait drawing face proportions shading"}
+{"input": "how to draw realistic portraits? /only:vec", "output": "vec: how to draw a realistic human portrait with accurate proportions and shading\nvec: what techniques do artists use to draw lifelike faces with pencil"}
+{"input": "how to draw realistic portraits? /only:hyde", "output": "hyde: Start with a lightly sketched oval. Divide the face: eyes sit at the midpoint, the nose halfway between eyes and chin, and the mouth one-third below the nose. Use a grid or Loomis method for proportions. Build tonal values gradually\u2014light layers first, then darker shadows. Blend with a tortillon for smooth skin textures. Pay close attention to the light source direction."}
+{"input": "what is the impact of religion on culture? /only:lex", "output": "lex: religion impact culture society influence\nlex: religion culture art morality traditions"}
+{"input": "what is the impact of religion on culture? /only:vec", "output": "vec: how has religion shaped culture, art, and social norms throughout history\nvec: what influence does religion have on cultural values, laws, and traditions"}
+{"input": "what is the impact of religion on culture? /only:hyde", "output": "hyde: Religion has profoundly shaped cultures worldwide\u2014influencing art (Gothic cathedrals, Islamic calligraphy, Hindu temple sculpture), moral codes, legal systems (Sharia, Canon law), dietary practices, marriage customs, holidays, and music. Religious narratives provide shared identity and meaning. The Protestant work ethic, for example, influenced Western capitalism according to Max Weber."}
+{"input": "what is the ethics of war /only:lex", "output": "lex: ethics of war just war theory morality\nlex: just war ethics military conflict jus ad bellum"}
+{"input": "what is the ethics of war /only:vec", "output": "vec: what is just war theory and the ethical principles governing warfare\nvec: how do philosophers evaluate whether a war is morally justified"}
+{"input": "what is the ethics of war /only:hyde", "output": "hyde: Just war theory establishes criteria for morally permissible warfare. Jus ad bellum (right to go to war) requires just cause, legitimate authority, right intention, last resort, proportionality, and reasonable chance of success. Jus in bello (right conduct in war) requires distinction between combatants and civilians and proportional use of force."}
+{"input": "how to analyze scientific data statistically /only:lex", "output": "lex: statistical analysis scientific data methods\nlex: statistical tests data analysis research t-test ANOVA"}
+{"input": "how to analyze scientific data statistically /only:vec", "output": "vec: how to choose and apply the right statistical tests for analyzing scientific research data\nvec: what are the steps for performing statistical analysis on experimental data"}
+{"input": "how to analyze scientific data statistically /only:hyde", "output": "hyde: Choose your statistical test based on data type and research question. For comparing two group means, use an independent t-test (parametric) or Mann-Whitney U (non-parametric). For three or more groups, use one-way ANOVA. For correlations, use Pearson's r (continuous) or Spearman's rho (ordinal). Report effect sizes and confidence intervals alongside p-values."}
+{"input": "how to analyze experimental data /only:lex", "output": "lex: analyze experimental data methods results\nlex: experimental data analysis visualization interpretation"}
+{"input": "how to analyze experimental data /only:vec", "output": "vec: what are the steps to properly analyze and interpret experimental research data\nvec: how to organize, visualize, and draw conclusions from experimental results"}
+{"input": "how to analyze experimental data /only:hyde", "output": "hyde: Start by cleaning the data: remove outliers using predefined criteria and check for missing values. Calculate descriptive statistics (mean, median, standard deviation). Visualize distributions with histograms or box plots. Apply appropriate statistical tests to evaluate hypotheses. Interpret results in context of your research question and note limitations."}
+{"input": "climate action /only:lex", "output": "lex: climate action policy emissions reduction\nlex: climate action carbon neutral renewable energy 2026"}
+{"input": "climate action /only:vec", "output": "vec: what actions are governments and individuals taking to combat climate change\nvec: what are the most effective climate action strategies for reducing greenhouse gas emissions"}
+{"input": "climate action /only:hyde", "output": "hyde: Climate action encompasses policies and initiatives to reduce greenhouse gas emissions and adapt to climate change. Key strategies include transitioning to renewable energy, electrifying transportation, improving energy efficiency in buildings, protecting forests, and implementing carbon pricing. The Paris Agreement aims to limit warming to 1.5\u00b0C above pre-industrial levels."}
+{"input": "what are the main teachings of shinto? /only:lex", "output": "lex: Shinto teachings beliefs practices Japan\nlex: Shinto kami nature purity rituals"}
+{"input": "what are the main teachings of shinto? /only:vec", "output": "vec: what are the core beliefs and teachings of the Shinto religion in Japan\nvec: how does Shinto view nature, purity, and the spiritual world"}
+{"input": "what are the main teachings of shinto? /only:hyde", "output": "hyde: Shinto, Japan's indigenous religion, centers on the worship of kami\u2014spirits inhabiting natural features, ancestors, and sacred places. Core teachings emphasize purity (physical and spiritual cleanliness), harmony with nature, respect for ancestors, and community ritual. There is no single scripture; practice focuses on shrine worship, seasonal festivals (matsuri), and purification rites (harae)."}
+{"input": "chronic pain management clinics /only:lex", "output": "lex: chronic pain management clinic treatment\nlex: pain clinic multidisciplinary therapy near me"}
+{"input": "chronic pain management clinics /only:vec", "output": "vec: what services do chronic pain management clinics offer and how do they treat patients\nvec: how to find a reputable chronic pain management clinic for long-term treatment"}
+{"input": "chronic pain management clinics /only:hyde", "output": "hyde: Chronic pain management clinics use a multidisciplinary approach combining medication management, physical therapy, cognitive behavioral therapy, nerve blocks, and interventional procedures like epidural steroid injections. Teams typically include pain medicine physicians, physical therapists, and psychologists. Ask your primary care doctor for a referral or search the American Academy of Pain Medicine directory."}
+{"input": "what is a business consultant /only:lex", "output": "lex: business consultant role responsibilities\nlex: management consulting services\nlex: business advisory consultant"}
+{"input": "what is a business consultant /only:vec", "output": "vec: what does a business consultant do and what services do they provide\nvec: what qualifications and skills are needed to become a business consultant"}
+{"input": "what is a business consultant /only:hyde", "output": "hyde: A business consultant is a professional who advises organizations on strategy, operations, and management. They analyze business problems, identify inefficiencies, and recommend solutions to improve performance and profitability."}
+{"input": "what are the characteristics of classic literature? /only:lex", "output": "lex: classic literature characteristics traits\nlex: literary classics defining features"}
+{"input": "what are the characteristics of classic literature? /only:vec", "output": "vec: what qualities make a work of fiction considered classic literature\nvec: what distinguishes classic literature from other genres or time periods"}
+{"input": "what are the characteristics of classic literature? /only:hyde", "output": "hyde: Classic literature is defined by its enduring relevance, universal themes, and artistic merit. These works explore the human condition through complex characters, moral dilemmas, and language that transcends the era in which they were written."}
+{"input": "what is blockchain technology /only:lex", "output": "lex: blockchain technology distributed ledger\nlex: blockchain decentralized cryptographic\nlex: blockchain consensus mechanism"}
+{"input": "what is blockchain technology /only:vec", "output": "vec: how does blockchain technology work as a distributed ledger system\nvec: what are the technical components that make up a blockchain"}
+{"input": "what is blockchain technology /only:hyde", "output": "hyde: Blockchain is a distributed ledger technology where transactions are recorded in blocks linked by cryptographic hashes. Each block contains a timestamp and transaction data, forming an immutable chain validated by a network of nodes through consensus mechanisms."}
+{"input": "where to buy luxury bedding sets /only:lex", "output": "lex: luxury bedding sets buy online\nlex: high-end sheets duvet comforter\nlex: premium Egyptian cotton bedding"}
+{"input": "where to buy luxury bedding sets /only:vec", "output": "vec: where can I purchase high-quality luxury bedding sets online or in stores\nvec: which brands sell the best luxury sheets and duvet covers"}
+{"input": "where to buy luxury bedding sets /only:hyde", "output": "hyde: Shop our collection of luxury bedding sets crafted from 100% Egyptian cotton and Italian-woven sateen. Thread counts from 400 to 1000. Free shipping on orders over $200. Available in king, queen, and California king sizes."}
+{"input": "how to retire early /only:lex", "output": "lex: early retirement financial planning\nlex: FIRE financial independence retire early\nlex: early retirement savings rate"}
+{"input": "how to retire early /only:vec", "output": "vec: how much money do you need to save to retire before age 50\nvec: what financial strategies allow people to retire early through the FIRE movement"}
+{"input": "how to retire early /only:hyde", "output": "hyde: To retire early, aim to save 50-70% of your income and invest in low-cost index funds. At a 4% safe withdrawal rate, you need roughly 25x your annual expenses. A person spending $40,000/year needs about $1 million to retire."}
+{"input": "how climate change affects farming /only:lex", "output": "lex: climate change agriculture crop yields\nlex: global warming farming drought impact\nlex: climate change food production"}
+{"input": "how climate change affects farming /only:vec", "output": "vec: how does rising global temperature affect crop yields and food production\nvec: what effects does climate change have on soil quality and growing seasons for farmers"}
+{"input": "how climate change affects farming /only:hyde", "output": "hyde: Rising temperatures and shifting precipitation patterns reduce crop yields by 2-6% per decade. Droughts, heat stress, and unpredictable frost dates disrupt planting schedules, while increased CO2 levels alter nutrient content in staple crops like wheat and rice."}
+{"input": "how to assess car tire damage? /only:lex", "output": "lex: car tire damage inspection signs\nlex: tire wear tread depth sidewall\nlex: tire replacement damage indicators"}
+{"input": "how to assess car tire damage? /only:vec", "output": "vec: how do you inspect car tires for damage and know when they need replacement\nvec: what are the signs of dangerous tire wear or sidewall damage on a vehicle"}
+{"input": "how to assess car tire damage? /only:hyde", "output": "hyde: Check tire tread depth using the penny test\u2014insert a penny with Lincoln's head facing down. If you can see the top of his head, the tread is below 2/32\" and the tire needs replacing. Also inspect sidewalls for bulges, cracks, or cuts."}
+{"input": "kindle library /only:lex", "output": "lex: kindle library ebook collection\nlex: Amazon Kindle digital library management\nlex: kindle book organization archive"}
+{"input": "kindle library /only:vec", "output": "vec: how to manage and organize your ebook library on a Kindle device\nvec: how to borrow library books on Kindle through Libby or OverDrive"}
+{"input": "kindle library /only:hyde", "output": "hyde: Your Kindle Library stores all purchased and borrowed ebooks. Access it by tapping 'Library' on the home screen. Filter by 'Downloaded' or 'All' to see books stored on the device or in the cloud. Use collections to organize titles by genre or topic."}
+{"input": "how to plant wildflowers in clay soil? /only:lex", "output": "lex: wildflower planting clay soil\nlex: wildflower seeds heavy clay ground"}
+{"input": "how to plant wildflowers in clay soil? /only:vec", "output": "vec: what is the best method for growing wildflowers in heavy clay soil\nvec: which wildflower species thrive in clay soil conditions"}
+{"input": "how to plant wildflowers in clay soil? /only:hyde", "output": "hyde: To plant wildflowers in clay soil, amend the top 2-3 inches with coarse sand and compost to improve drainage. Choose clay-tolerant species like black-eyed Susan, coneflower, and bee balm. Sow seeds in fall or early spring, pressing them into the surface without burying deeply."}
+{"input": "how to photograph the milky way /only:lex", "output": "lex: milky way astrophotography camera settings\nlex: night sky photography milky way\nlex: milky way photo long exposure"}
+{"input": "how to photograph the milky way /only:vec", "output": "vec: what camera settings and equipment do you need to photograph the milky way\nvec: how to find the best location and time for milky way photography"}
+{"input": "how to photograph the milky way /only:hyde", "output": "hyde: Set your camera to manual mode with an aperture of f/2.8 or wider, ISO 3200-6400, and a shutter speed of 15-25 seconds using the 500 rule. Use a sturdy tripod and a wide-angle lens. Shoot during a new moon away from light pollution."}
+{"input": "what are ocean currents /only:lex", "output": "lex: ocean currents thermohaline circulation\nlex: ocean surface currents deep water\nlex: ocean current patterns global"}
+{"input": "what are ocean currents /only:vec", "output": "vec: what causes ocean currents and how do they circulate water around the globe\nvec: what is the difference between surface ocean currents and deep water thermohaline circulation"}
+{"input": "what are ocean currents /only:hyde", "output": "hyde: Ocean currents are continuous, directed movements of seawater driven by wind, temperature, salinity, and the Earth's rotation. Surface currents are driven primarily by wind patterns, while deep-water thermohaline circulation is driven by differences in water density."}
+{"input": "what is the concept of moral absolutism? /only:lex", "output": "lex: moral absolutism ethical theory\nlex: moral absolutism objective right wrong"}
+{"input": "what is the concept of moral absolutism? /only:vec", "output": "vec: what does moral absolutism mean as an ethical philosophy\nvec: how does moral absolutism differ from moral relativism in determining right and wrong"}
+{"input": "what is the concept of moral absolutism? /only:hyde", "output": "hyde: Moral absolutism holds that certain actions are inherently right or wrong regardless of context, culture, or consequence. Under this view, ethical rules are universal and unchanging\u2014lying is always wrong, for example, even if it could prevent harm."}
+{"input": "how to set up a smart home? /only:lex", "output": "lex: smart home setup devices hub\nlex: home automation WiFi Zigbee Z-Wave\nlex: smart home starter guide speakers lights"}
+{"input": "how to set up a smart home? /only:vec", "output": "vec: what devices and hubs do you need to set up a smart home automation system\nvec: how to connect smart lights thermostats and speakers in a home network"}
+{"input": "how to set up a smart home? /only:hyde", "output": "hyde: Start with a smart speaker like Amazon Echo or Google Nest as your central hub. Connect smart bulbs (Philips Hue, LIFX) and a smart thermostat (Nest, Ecobee) over WiFi or Zigbee. Use the companion app to create automations like turning off lights at bedtime."}
+{"input": "what is cycling commute? /only:lex", "output": "lex: cycling commute bike to work\nlex: bicycle commuting urban transportation"}
+{"input": "what is cycling commute? /only:vec", "output": "vec: what does it mean to commute by bicycle and what are the benefits\nvec: how do people use cycling as their daily commute to work in cities"}
+{"input": "what is cycling commute? /only:hyde", "output": "hyde: Cycling commute refers to using a bicycle as your primary transportation to and from work. Bike commuters typically ride 3-15 miles each way, saving on fuel costs while getting daily exercise. Many cities now have protected bike lanes and bike-share programs."}
+{"input": "how to approach ethical decision-making /only:lex", "output": "lex: ethical decision-making framework steps\nlex: ethical reasoning moral dilemma process"}
+{"input": "how to approach ethical decision-making /only:vec", "output": "vec: what frameworks or steps help with making ethical decisions in difficult situations\nvec: how do you systematically evaluate moral choices when facing an ethical dilemma"}
+{"input": "how to approach ethical decision-making /only:hyde", "output": "hyde: A structured approach to ethical decision-making involves: (1) identify the ethical issue, (2) gather relevant facts, (3) consider stakeholders affected, (4) evaluate options using ethical frameworks like utilitarianism or deontology, and (5) make and justify your decision."}
+{"input": "how to find a reliable realtor /only:lex", "output": "lex: find reliable realtor real estate agent\nlex: choosing trustworthy real estate agent"}
+{"input": "how to find a reliable realtor /only:vec", "output": "vec: how do you find and vet a trustworthy real estate agent for buying or selling a home\nvec: what qualities and credentials should you look for in a reliable realtor"}
+{"input": "how to find a reliable realtor /only:hyde", "output": "hyde: Check that the realtor is licensed in your state and has no disciplinary actions. Read online reviews, ask for references from recent clients, and verify their transaction history. A good agent should know the local market and communicate promptly."}
+{"input": "how to lease a car? /only:lex", "output": "lex: car lease process terms payments\nlex: vehicle leasing agreement negotiation"}
+{"input": "how to lease a car? /only:vec", "output": "vec: what are the steps to lease a car and what terms should you negotiate\nvec: how do car lease payments work and what fees are involved"}
+{"input": "how to lease a car? /only:hyde", "output": "hyde: To lease a car, negotiate the capitalized cost (sale price), money factor (interest rate), and residual value. Monthly payments are based on the difference between the cap cost and residual, divided by the lease term, plus a finance charge. Typical leases run 24-36 months."}
+{"input": "how do different cultures commemorate death? /only:lex", "output": "lex: death rituals funeral customs cultures\nlex: cultural death commemoration ceremonies"}
+{"input": "how do different cultures commemorate death? /only:vec", "output": "vec: what are the different ways cultures around the world honor and commemorate the dead\nvec: how do funeral rituals and mourning traditions vary across religions and cultures"}
+{"input": "how do different cultures commemorate death? /only:hyde", "output": "hyde: In Mexico, D\u00eda de los Muertos celebrates deceased loved ones with altars, marigolds, and sugar skulls. Hindu cremation ceremonies release the soul for reincarnation. In Ghana, elaborate fantasy coffins reflect the deceased's life. Japanese Obon festivals welcome ancestral spirits home."}
+{"input": "how to change a tire /only:lex", "output": "lex: change flat tire steps jack\nlex: car tire replacement spare"}
+{"input": "how to change a tire /only:vec", "output": "vec: what are the step-by-step instructions for changing a flat tire on the side of the road\nvec: how to safely jack up a car and replace a flat tire with the spare"}
+{"input": "how to change a tire /only:hyde", "output": "hyde: Loosen the lug nuts slightly before jacking. Place the jack under the vehicle frame near the flat tire and raise until the tire clears the ground. Remove lug nuts, pull off the flat, mount the spare, and hand-tighten the nuts in a star pattern. Lower the car and torque to 80-100 ft-lbs."}
+{"input": "how to develop a positive mindset? /only:lex", "output": "lex: positive mindset development habits\nlex: positive thinking mental attitude techniques"}
+{"input": "how to develop a positive mindset? /only:vec", "output": "vec: what daily habits and techniques help develop and maintain a positive mindset\nvec: how can you train your brain to think more positively and overcome negative thought patterns"}
+{"input": "how to develop a positive mindset? /only:hyde", "output": "hyde: Developing a positive mindset starts with awareness of negative self-talk. Replace \"I can't\" with \"I'm learning to.\" Practice daily gratitude by writing three things you're thankful for. Surround yourself with supportive people and limit exposure to negativity."}
+{"input": "what is bioinformatics /only:lex", "output": "lex: bioinformatics computational biology genomics\nlex: bioinformatics DNA sequence analysis"}
+{"input": "what is bioinformatics /only:vec", "output": "vec: what is the field of bioinformatics and how does it apply computational methods to biological data\nvec: how is bioinformatics used to analyze DNA sequences and genomic data"}
+{"input": "what is bioinformatics /only:hyde", "output": "hyde: Bioinformatics is an interdisciplinary field that combines biology, computer science, and statistics to analyze biological data. It involves developing algorithms and software to process DNA sequences, protein structures, and gene expression data from high-throughput experiments."}
+{"input": "how to prepare for a triathlon /only:lex", "output": "lex: triathlon training plan preparation\nlex: swim bike run triathlon training"}
+{"input": "how to prepare for a triathlon /only:vec", "output": "vec: what training plan should a beginner follow to prepare for their first triathlon\nvec: how to balance swimming cycling and running workouts when training for a triathlon"}
+{"input": "how to prepare for a triathlon /only:hyde", "output": "hyde: A 12-week sprint triathlon plan builds endurance across all three disciplines. Week 1: swim 2x (20 min), bike 2x (30 min), run 3x (20 min). Gradually increase volume by 10% per week. Include one brick workout (bike-to-run) weekly to simulate race-day transitions."}
+{"input": "how to paint a car? /only:lex", "output": "lex: car paint job spray booth steps\nlex: automotive painting primer clearcoat"}
+{"input": "how to paint a car? /only:vec", "output": "vec: what is the step-by-step process for painting a car at home or in a garage\nvec: what preparation and materials are needed to repaint a car yourself"}
+{"input": "how to paint a car? /only:hyde", "output": "hyde: Sand the existing paint with 400-grit wet sandpaper until smooth. Apply 2-3 coats of automotive primer, sanding between coats with 600-grit. Spray the base color in thin, even passes, allowing 15 minutes flash time between coats. Finish with 2-3 coats of clearcoat."}
+{"input": "lab test /only:lex", "output": "lex: lab test blood work results\nlex: laboratory diagnostic testing medical\nlex: lab test ordered interpretation"}
+{"input": "lab test /only:vec", "output": "vec: what types of medical lab tests are commonly ordered and what do the results mean\nvec: how to understand blood test results from a laboratory"}
+{"input": "lab test /only:hyde", "output": "hyde: Common lab tests include CBC (complete blood count), CMP (comprehensive metabolic panel), lipid panel, and thyroid function tests. A CBC measures white blood cells, red blood cells, hemoglobin, and platelets. Results outside the reference range may indicate infection, anemia, or other conditions."}
+{"input": "where to buy iphone 14 /only:lex", "output": "lex: buy iPhone 14 price deals\nlex: iPhone 14 purchase Apple store carrier"}
+{"input": "where to buy iphone 14 /only:vec", "output": "vec: where can you buy an iPhone 14 at the best price online or in retail stores\nvec: which stores and carriers currently sell the iPhone 14 and offer trade-in deals"}
+{"input": "where to buy iphone 14 /only:hyde", "output": "hyde: Buy iPhone 14 starting at $599 from Apple.com, or save with carrier deals from Verizon, AT&T, and T-Mobile. Trade in your old device for up to $400 off. Also available at Best Buy, Walmart, and Amazon with financing options."}
+{"input": "what is the categorical imperative /only:lex", "output": "lex: categorical imperative Kant ethics\nlex: Kantian categorical imperative universal law"}
+{"input": "what is the categorical imperative /only:vec", "output": "vec: what is Kant's categorical imperative and how does it function as a moral principle\nvec: how does the categorical imperative test whether an action is morally permissible"}
+{"input": "what is the categorical imperative /only:hyde", "output": "hyde: The categorical imperative, formulated by Immanuel Kant, states: \"Act only according to that maxim by which you can at the same time will that it should become a universal law.\" It requires that moral rules apply unconditionally to all rational beings, regardless of personal desires."}
+{"input": "latest research on renewable agriculture /only:lex", "output": "lex: renewable agriculture research 2025 2026\nlex: regenerative sustainable farming research\nlex: renewable agriculture soil carbon sequestration"}
+{"input": "latest research on renewable agriculture /only:vec", "output": "vec: what are the latest scientific findings on regenerative and renewable agriculture techniques\nvec: what recent research has been published on sustainable farming and soil health in 2025 or 2026"}
+{"input": "latest research on renewable agriculture /only:hyde", "output": "hyde: A 2025 study in Nature Food found that cover cropping and no-till practices increased soil organic carbon by 8-12% over five years. Researchers also demonstrated that integrating livestock grazing with crop rotation improved soil microbial diversity by 23%."}
+{"input": "cloud deploy /only:lex", "output": "lex: cloud deployment pipeline CI/CD\nlex: cloud deploy AWS Azure GCP\nlex: cloud infrastructure deployment automation"}
+{"input": "cloud deploy /only:vec", "output": "vec: how to deploy applications to cloud platforms like AWS, Azure, or Google Cloud\nvec: what tools and pipelines are used for automated cloud deployment"}
+{"input": "cloud deploy /only:hyde", "output": "hyde: Deploy to the cloud using `gcloud deploy` or configure a CI/CD pipeline with GitHub Actions. Define your infrastructure with Terraform or CloudFormation, build container images, push to a registry, and roll out to Kubernetes or serverless environments."}
+{"input": "what is the significance of day of the dead /only:lex", "output": "lex: Day of the Dead D\u00eda de los Muertos significance\nlex: Day of the Dead Mexican tradition meaning"}
+{"input": "what is the significance of day of the dead /only:vec", "output": "vec: what is the cultural and spiritual significance of Day of the Dead in Mexican tradition\nvec: why is D\u00eda de los Muertos celebrated and what does it mean to families in Mexico"}
+{"input": "what is the significance of day of the dead /only:hyde", "output": "hyde: D\u00eda de los Muertos, celebrated November 1-2, is a Mexican tradition honoring deceased loved ones. Families build ofrendas (altars) decorated with marigolds, photos, and the departed's favorite foods. It blends pre-Columbian Aztec beliefs with Catholic All Saints' and All Souls' Days."}
+{"input": "what is stonehenge /only:lex", "output": "lex: Stonehenge prehistoric monument England\nlex: Stonehenge purpose construction history"}
+{"input": "what is stonehenge /only:vec", "output": "vec: what is Stonehenge and why was it built on Salisbury Plain in England\nvec: what do archaeologists know about the history and purpose of Stonehenge"}
+{"input": "what is stonehenge /only:hyde", "output": "hyde: Stonehenge is a prehistoric stone circle on Salisbury Plain in Wiltshire, England, built in stages from roughly 3000 to 2000 BCE. The massive sarsen stones, some weighing 25 tons, were transported from Marlborough Downs 25 miles north. Its alignment with the summer solstice sunrise suggests astronomical or ceremonial function."}
+{"input": "bug fix /only:lex", "output": "lex: bug fix debugging software\nlex: bug fix code patch issue\nlex: software bug troubleshooting resolution"}
+{"input": "bug fix /only:vec", "output": "vec: how to identify and fix bugs in software code effectively\nvec: what is the process for debugging and resolving code issues"}
+{"input": "bug fix /only:hyde", "output": "hyde: To fix a bug, first reproduce it reliably and identify the exact conditions that trigger it. Use a debugger or add logging to narrow down the faulty code path. Write a regression test that captures the bug, then modify the code until the test passes."}
+{"input": "how to wax a car? /only:lex", "output": "lex: car wax application steps\nlex: wax car paint protection polish"}
+{"input": "how to wax a car? /only:vec", "output": "vec: what is the proper technique for waxing a car to protect the paint finish\nvec: how often should you wax a car and what products work best"}
+{"input": "how to wax a car? /only:hyde", "output": "hyde: Wash and dry the car thoroughly before waxing. Apply a thin layer of carnauba or synthetic wax with a foam applicator pad using circular motions. Work one panel at a time, let it haze for 5-10 minutes, then buff off with a clean microfiber towel."}
+{"input": "what is the veil of ignorance /only:lex", "output": "lex: veil of ignorance Rawls justice\nlex: John Rawls original position veil of ignorance"}
+{"input": "what is the veil of ignorance /only:vec", "output": "vec: what is John Rawls' veil of ignorance thought experiment in political philosophy\nvec: how does the veil of ignorance help determine principles of justice in a fair society"}
+{"input": "what is the veil of ignorance /only:hyde", "output": "hyde: The veil of ignorance is a thought experiment by John Rawls in A Theory of Justice (1971). It asks people to choose principles of justice from an \"original position\" where they don't know their own race, gender, wealth, or abilities. Rawls argues this produces fair, impartial rules."}
+{"input": "what are the challenges of multiculturalism /only:lex", "output": "lex: multiculturalism challenges social integration\nlex: multicultural society tensions cultural diversity"}
+{"input": "what are the challenges of multiculturalism /only:vec", "output": "vec: what social and political challenges arise in multicultural societies\nvec: how do multicultural nations deal with cultural conflict and integration difficulties"}
+{"input": "what are the challenges of multiculturalism /only:hyde", "output": "hyde: Multicultural societies face challenges including language barriers, cultural misunderstandings, and tensions between assimilation and cultural preservation. Debates arise over shared national identity, religious accommodation in public institutions, and equitable representation of minority groups."}
+{"input": "what are smart cities? /only:lex", "output": "lex: smart city technology IoT urban\nlex: smart cities infrastructure data sensors"}
+{"input": "what are smart cities? /only:vec", "output": "vec: what defines a smart city and what technologies do they use\nvec: how do smart cities use IoT sensors and data analytics to improve urban infrastructure"}
+{"input": "what are smart cities? /only:hyde", "output": "hyde: Smart cities integrate IoT sensors, data analytics, and connected infrastructure to improve urban services. Examples include adaptive traffic signals that reduce congestion by 25%, smart grids that optimize energy distribution, and sensors that monitor air quality and water systems in real time."}
+{"input": "how to optimize supply chain /only:lex", "output": "lex: supply chain optimization logistics\nlex: supply chain efficiency inventory management"}
+{"input": "how to optimize supply chain /only:vec", "output": "vec: what strategies and tools can companies use to optimize their supply chain operations\nvec: how do businesses reduce supply chain costs while improving delivery speed and reliability"}
+{"input": "how to optimize supply chain /only:hyde", "output": "hyde: Optimize your supply chain by implementing demand forecasting with machine learning, reducing safety stock through just-in-time inventory, and diversifying suppliers to mitigate risk. Use real-time tracking and warehouse management systems to cut lead times by 15-30%."}
+{"input": "what is an elevator pitch /only:lex", "output": "lex: elevator pitch short business presentation\nlex: elevator pitch 30-second summary"}
+{"input": "what is an elevator pitch /only:vec", "output": "vec: what is an elevator pitch and how do you structure an effective one\nvec: how do you deliver a compelling 30-second pitch for a business idea or job opportunity"}
+{"input": "what is an elevator pitch /only:hyde", "output": "hyde: An elevator pitch is a concise, 30-60 second summary of who you are and what you offer. Structure it as: hook (attention-grabbing opening), problem you solve, your solution, and a call to action. Practice until it sounds conversational, not rehearsed."}
+{"input": "how to rotate car tires? /only:lex", "output": "lex: car tire rotation pattern schedule\nlex: tire rotation front rear cross"}
+{"input": "how to rotate car tires? /only:vec", "output": "vec: how often should you rotate car tires and what pattern should you follow\nvec: what is the correct tire rotation procedure for front-wheel and all-wheel drive vehicles"}
+{"input": "how to rotate car tires? /only:hyde", "output": "hyde: Rotate tires every 5,000-7,500 miles. For front-wheel drive, move fronts straight to the rear and cross the rears to the front. For rear-wheel drive, move rears straight forward and cross the fronts to the rear. All-wheel drive uses the rearward cross pattern."}
+{"input": "how to participate in a pow wow /only:lex", "output": "lex: pow wow Native American attend participate\nlex: pow wow etiquette attendance protocol"}
+{"input": "how to participate in a pow wow /only:vec", "output": "vec: how can non-Native people respectfully attend and participate in a pow wow\nvec: what are the etiquette rules and customs visitors should follow at a pow wow"}
+{"input": "how to participate in a pow wow /only:hyde", "output": "hyde: When attending a pow wow, stand during grand entry and honor songs. Don't touch dancers' regalia without permission. Ask before photographing. Bring a lawn chair, as seating is limited. Some dances are intertribal and open to all\u2014the emcee will announce when visitors may join the circle."}
+{"input": "car rust /only:lex", "output": "lex: car rust prevention treatment\nlex: automotive rust repair body panel\nlex: car rust removal undercarriage"}
+{"input": "car rust /only:vec", "output": "vec: how to prevent and treat rust on a car body and undercarriage\nvec: what causes rust on cars and how can you repair rusted panels"}
+{"input": "car rust /only:hyde", "output": "hyde: Car rust forms when bare metal is exposed to moisture and salt. Treat surface rust by sanding to bare metal, applying rust converter, priming, and repainting. For structural rust, cut out the damaged section and weld in a patch panel. Prevent rust with regular washing and undercoating."}
+{"input": "what is moral obligation /only:lex", "output": "lex: moral obligation ethical duty\nlex: moral obligation philosophy definition"}
+{"input": "what is moral obligation /only:vec", "output": "vec: what does moral obligation mean in ethics and where do moral duties come from\nvec: how do philosophers define and justify moral obligations people have toward others"}
+{"input": "what is moral obligation /only:hyde", "output": "hyde: A moral obligation is a duty to act in accordance with ethical principles, regardless of legal requirements. For example, one may feel morally obligated to help a stranger in danger. Philosophers debate whether moral obligations stem from reason (Kant), consequences (Mill), or social contracts."}
+{"input": "what is the purpose of a thesis statement? /only:lex", "output": "lex: thesis statement purpose essay writing\nlex: thesis statement argument academic paper"}
+{"input": "what is the purpose of a thesis statement? /only:vec", "output": "vec: what role does a thesis statement play in an essay or academic paper\nvec: why is a strong thesis statement important and how should it be written"}
+{"input": "what is the purpose of a thesis statement? /only:hyde", "output": "hyde: A thesis statement presents the central argument of an essay in one or two sentences, typically at the end of the introduction. It tells the reader what the paper will argue and provides a roadmap for the evidence and analysis that follow. A strong thesis is specific, debatable, and supportable."}
+{"input": "how to attend a diplomatic event /only:lex", "output": "lex: diplomatic event attendance protocol etiquette\nlex: diplomatic reception dress code invitation"}
+{"input": "how to attend a diplomatic event /only:vec", "output": "vec: what are the etiquette rules and dress codes for attending a diplomatic event or reception\nvec: how do you get invited to and properly conduct yourself at a diplomatic function"}
+{"input": "how to attend a diplomatic event /only:hyde", "output": "hyde: At diplomatic events, follow the dress code specified on the invitation (black tie, business formal). Arrive punctually, greet the host first, and address ambassadors as \"Your Excellency.\" Exchange business cards with both hands. Avoid discussing controversial political topics unless invited to do so."}
+{"input": "what is renewable energy /only:lex", "output": "lex: renewable energy sources solar wind\nlex: renewable energy types clean power"}
+{"input": "what is renewable energy /only:vec", "output": "vec: what are the main types of renewable energy and how do they generate electricity\nvec: how do renewable energy sources like solar and wind power differ from fossil fuels"}
+{"input": "what is renewable energy /only:hyde", "output": "hyde: Renewable energy comes from naturally replenishing sources: solar, wind, hydroelectric, geothermal, and biomass. Solar panels convert sunlight into electricity using photovoltaic cells. Wind turbines capture kinetic energy from moving air. These sources produce little or no greenhouse gas emissions during operation."}
+{"input": "what is machine learning /only:lex", "output": "lex: machine learning algorithms training data\nlex: machine learning AI neural networks"}
+{"input": "what is machine learning /only:vec", "output": "vec: what is machine learning and how do algorithms learn from data to make predictions\nvec: how does machine learning differ from traditional programming and rule-based systems"}
+{"input": "what is machine learning /only:hyde", "output": "hyde: Machine learning is a subset of artificial intelligence where algorithms learn patterns from training data rather than following explicit rules. Given labeled examples, a supervised learning model adjusts its parameters to minimize prediction error. Common algorithms include linear regression, decision trees, and neural networks."}
+{"input": "what is the role of the protagonist? /only:lex", "output": "lex: protagonist role literary fiction\nlex: protagonist main character story function"}
+{"input": "what is the role of the protagonist? /only:vec", "output": "vec: what role does the protagonist play in driving the plot of a novel or story\nvec: how does the protagonist function as the central character in literary fiction"}
+{"input": "what is the role of the protagonist? /only:hyde", "output": "hyde: The protagonist is the central character whose goals and conflicts drive the narrative. They face obstacles, make choices, and undergo transformation through the story arc. Readers experience the plot primarily through the protagonist's perspective, creating emotional investment in their journey."}
+{"input": "api test /only:lex", "output": "lex: API testing automated endpoint\nlex: REST API test Postman integration\nlex: API endpoint validation testing"}
+{"input": "api test /only:vec", "output": "vec: how to write automated tests for REST API endpoints\nvec: what tools and methods are used for API testing and validation"}
+{"input": "api test /only:hyde", "output": "hyde: Test API endpoints using Postman or write automated tests with a framework like Jest or pytest. Send requests to each endpoint and assert status codes, response bodies, and headers. Example: `expect(response.status).toBe(200)` and validate the JSON schema of the response."}
+{"input": "how to improve civic engagement /only:lex", "output": "lex: civic engagement participation community\nlex: civic engagement voting local government"}
+{"input": "how to improve civic engagement /only:vec", "output": "vec: what are effective ways to increase civic engagement and community participation\nvec: how can citizens get more involved in local government and community decision-making"}
+{"input": "how to improve civic engagement /only:hyde", "output": "hyde: Improve civic engagement by attending city council meetings, volunteering for local organizations, and contacting elected officials about issues you care about. Register to vote and participate in every election, including local and midterm races. Join neighborhood associations and community boards."}
+{"input": "sustainable agriculture /only:lex", "output": "lex: sustainable agriculture farming methods\nlex: sustainable agriculture soil health crop rotation\nlex: sustainable agriculture environmental impact"}
+{"input": "sustainable agriculture /only:vec", "output": "vec: what farming practices make agriculture sustainable and environmentally friendly\nvec: how does sustainable agriculture balance food production with environmental conservation"}
+{"input": "sustainable agriculture /only:hyde", "output": "hyde: Sustainable agriculture maintains productivity while protecting natural resources. Key practices include crop rotation, cover cropping, integrated pest management, reduced tillage, and efficient water use. These methods improve soil health, reduce erosion, and lower dependence on synthetic fertilizers and pesticides."}
+{"input": "how to fix car door lock? /only:lex", "output": "lex: car door lock repair fix stuck\nlex: car door lock actuator replacement"}
+{"input": "how to fix car door lock? /only:vec", "output": "vec: how to diagnose and fix a car door lock that is stuck or not working\nvec: how to replace a broken car door lock actuator or mechanism"}
+{"input": "how to fix car door lock? /only:hyde", "output": "hyde: If the car door lock won't engage, check the fuse first. Test the lock with the key and remote separately. If the remote works but the button doesn't, the switch is faulty. If neither works, the lock actuator has likely failed. Remove the door panel, disconnect the actuator, and replace it."}
+{"input": "drug test /only:lex", "output": "lex: drug test urine screening types\nlex: drug test employment panel detection\nlex: drug testing workplace results"}
+{"input": "drug test /only:vec", "output": "vec: what types of drug tests are used for employment and what substances do they detect\nvec: how long do drugs stay detectable in urine blood and hair drug tests"}
+{"input": "drug test /only:hyde", "output": "hyde: The standard 5-panel drug test screens for marijuana (THC), cocaine, opiates, amphetamines, and PCP. Urine tests detect most substances for 1-7 days, except marijuana which can be detected for up to 30 days in heavy users. Hair follicle tests cover approximately 90 days."}
+{"input": "how to participate in lobbying efforts /only:lex", "output": "lex: lobbying participation advocacy government\nlex: citizen lobbying elected officials"}
+{"input": "how to participate in lobbying efforts /only:vec", "output": "vec: how can ordinary citizens participate in lobbying and advocacy to influence legislation\nvec: what steps are involved in organizing a lobbying effort for a political cause"}
+{"input": "how to participate in lobbying efforts /only:hyde", "output": "hyde: Citizens can lobby by contacting representatives via phone, email, or scheduled meetings. Prepare a one-page brief on your issue with specific policy asks. Join advocacy organizations that coordinate lobbying days at state capitols. Grassroots lobbying involves petitions, public comment periods, and organized letter-writing campaigns."}
+{"input": "how do you find inspiration for photography? /only:lex", "output": "lex: photography inspiration ideas creative\nlex: photography creative motivation techniques"}
+{"input": "how do you find inspiration for photography? /only:vec", "output": "vec: where do photographers find creative inspiration for new projects and subjects\nvec: what techniques help overcome creative block and find fresh ideas for photography"}
+{"input": "how do you find inspiration for photography? /only:hyde", "output": "hyde: Find photography inspiration by studying the work of photographers you admire on platforms like Flickr, 500px, and Instagram. Try a 365-day photo challenge. Walk familiar routes at different times of day. Limit yourself to one lens or shoot only in black and white to force creative thinking."}
+{"input": "how to install car led lights? /only:lex", "output": "lex: car LED lights installation wiring\nlex: LED headlight bulb install car"}
+{"input": "how to install car led lights? /only:vec", "output": "vec: how to install aftermarket LED lights on a car including wiring and connections\nvec: step-by-step guide for replacing car headlights or interior lights with LEDs"}
+{"input": "how to install car led lights? /only:hyde", "output": "hyde: To install LED headlights, open the hood and locate the headlight housing. Twist the bulb holder counterclockwise to remove the old halogen bulb. Insert the LED bulb, secure the heat sink or fan module, and connect the driver if included. Test both low and high beams before reassembling."}
+{"input": "how to critically analyze research papers /only:lex", "output": "lex: research paper critical analysis evaluation\nlex: academic paper critique methodology"}
+{"input": "how to critically analyze research papers /only:vec", "output": "vec: how do you critically evaluate the methodology and conclusions of a research paper\nvec: what framework should you use to analyze the strengths and weaknesses of an academic study"}
+{"input": "how to critically analyze research papers /only:hyde", "output": "hyde: When analyzing a research paper, evaluate: (1) Is the research question clearly stated? (2) Is the methodology appropriate and reproducible? (3) Is the sample size adequate? (4) Do the results support the conclusions? (5) Are limitations acknowledged? Check for conflicts of interest and citation of relevant prior work."}
+{"input": "what is mindfulness meditation /only:lex", "output": "lex: mindfulness meditation practice technique\nlex: mindfulness meditation awareness breathing"}
+{"input": "what is mindfulness meditation /only:vec", "output": "vec: what is mindfulness meditation and how do you practice it\nvec: what are the mental and physical health benefits of regular mindfulness meditation"}
+{"input": "what is mindfulness meditation /only:hyde", "output": "hyde: Mindfulness meditation involves focusing attention on the present moment without judgment. Sit comfortably, close your eyes, and observe your breath. When thoughts arise, acknowledge them without engaging and gently return focus to breathing. Start with 5-10 minutes daily and gradually increase duration."}
+{"input": "what is the digital divide /only:lex", "output": "lex: digital divide internet access inequality\nlex: digital divide technology gap socioeconomic"}
+{"input": "what is the digital divide /only:vec", "output": "vec: what is the digital divide and how does it affect people without internet access\nvec: what factors contribute to the technology gap between different socioeconomic groups"}
+{"input": "what is the digital divide /only:hyde", "output": "hyde: The digital divide refers to the gap between those who have access to computers and the internet and those who do not. Roughly 2.7 billion people worldwide remain offline. Factors include income, geography, age, and education. Rural areas and developing countries are disproportionately affected."}
+{"input": "what is nihilism /only:lex", "output": "lex: nihilism philosophy meaning Nietzsche\nlex: nihilism existential moral meaning"}
+{"input": "what is nihilism /only:vec", "output": "vec: what is nihilism as a philosophical position and what does it claim about meaning and values\nvec: how did Nietzsche and other philosophers develop and respond to nihilism"}
+{"input": "what is nihilism /only:hyde", "output": "hyde: Nihilism is the philosophical view that life lacks objective meaning, purpose, or intrinsic value. Existential nihilism holds that no action is inherently meaningful. Friedrich Nietzsche warned that the \"death of God\" would lead to nihilism but urged individuals to create their own values through the will to power."}
+{"input": "how to improve self-discipline? /only:lex", "output": "lex: self-discipline improvement habits willpower\nlex: self-discipline strategies consistency"}
+{"input": "how to improve self-discipline? /only:vec", "output": "vec: what daily habits and strategies help build stronger self-discipline\nvec: how can you train yourself to stay disciplined and follow through on goals"}
+{"input": "how to improve self-discipline? /only:hyde", "output": "hyde: Build self-discipline by starting with small commitments and increasing gradually. Make your bed every morning. Use the two-minute rule: if a task takes less than two minutes, do it now. Remove temptations from your environment and track your streaks to maintain momentum."}
+{"input": "what are the core practices of the bah\u00e1'\u00ed faith? /only:lex", "output": "lex: Bah\u00e1'\u00ed faith core practices worship\nlex: Bah\u00e1'\u00ed religion prayer fasting principles"}
+{"input": "what are the core practices of the bah\u00e1'\u00ed faith? /only:vec", "output": "vec: what are the main spiritual practices and rituals observed in the Bah\u00e1'\u00ed faith\nvec: what daily practices and religious obligations do Bah\u00e1'\u00eds follow"}
+{"input": "what are the core practices of the bah\u00e1'\u00ed faith? /only:hyde", "output": "hyde: Core Bah\u00e1'\u00ed practices include daily obligatory prayer (one of three prayers chosen by the individual), fasting during the Nineteen-Day Fast in March, participation in Nineteen-Day Feasts, and the recitation of \"All\u00e1h-u-Abh\u00e1\" 95 times daily. Bah\u00e1'\u00eds also observe the prohibition on backbiting and alcohol."}
+{"input": "what is highlining? /only:lex", "output": "lex: highlining slackline extreme height\nlex: highlining equipment safety rigging"}
+{"input": "what is highlining? /only:vec", "output": "vec: what is highlining and how does it differ from regular slacklining\nvec: what equipment and safety precautions are required for highlining at extreme heights"}
+{"input": "what is highlining? /only:hyde", "output": "hyde: Highlining is the practice of walking a slackline anchored at significant height, often between cliffs, buildings, or over canyons. Unlike standard slacklining, highliners wear a climbing harness tethered to the line with a leash. Lines are rigged with redundant anchors using static rope or webbing."}
+{"input": "how to travel to bali /only:lex", "output": "lex: travel Bali Indonesia flights visa\nlex: Bali trip planning itinerary transportation"}
+{"input": "how to travel to bali /only:vec", "output": "vec: how to plan a trip to Bali including flights, visas, and transportation\nvec: what do you need to know before traveling to Bali Indonesia for the first time"}
+{"input": "how to travel to bali /only:hyde", "output": "hyde: Fly into Ngurah Rai International Airport (DPS) in southern Bali. Many countries receive a 30-day visa on arrival for $500,000 IDR (~$35). Book a private driver for around $40-50/day to explore the island. Popular areas include Ubud for culture, Seminyak for dining, and Uluwatu for surfing."}
+{"input": "what caused the fall of the roman empire /only:lex", "output": "lex: fall Roman Empire causes decline\nlex: Roman Empire collapse reasons factors"}
+{"input": "what caused the fall of the roman empire /only:vec", "output": "vec: what were the main political military and economic causes of the fall of the Roman Empire\nvec: why did the Western Roman Empire collapse in 476 AD"}
+{"input": "what caused the fall of the roman empire /only:hyde", "output": "hyde: The fall of the Western Roman Empire in 476 AD resulted from multiple factors: military overextension, barbarian invasions (Visigoths, Vandals, Ostrogoths), economic decline from debasement of currency, political instability with rapid emperor turnover, and the shift of power to Constantinople."}
+{"input": "what is philosophy of mind /only:lex", "output": "lex: philosophy of mind consciousness problem\nlex: philosophy of mind mental states dualism"}
+{"input": "what is philosophy of mind /only:vec", "output": "vec: what does the philosophy of mind study about consciousness and mental states\nvec: what are the main theories in philosophy of mind such as dualism and physicalism"}
+{"input": "what is philosophy of mind /only:hyde", "output": "hyde: Philosophy of mind examines the nature of mental states, consciousness, and their relationship to the physical brain. Central questions include the mind-body problem: how do subjective experiences (qualia) arise from neural processes? Key positions include dualism, physicalism, functionalism, and property dualism."}
+{"input": "how to build a personal brand /only:lex", "output": "lex: personal brand building online presence\nlex: personal branding strategy social media"}
+{"input": "how to build a personal brand /only:vec", "output": "vec: how do you build a strong personal brand for career growth or entrepreneurship\nvec: what steps should you take to develop a recognizable personal brand online"}
+{"input": "how to build a personal brand /only:hyde", "output": "hyde: Build your personal brand by defining your niche and unique value proposition. Create consistent profiles across LinkedIn, Twitter, and a personal website. Publish content regularly\u2014blog posts, videos, or podcasts\u2014that demonstrates your expertise. Engage authentically with your audience and network at industry events."}
+{"input": "what is the significance of dialogue in philosophy? /only:lex", "output": "lex: dialogue philosophy Socratic method\nlex: philosophical dialogue significance discourse"}
+{"input": "what is the significance of dialogue in philosophy? /only:vec", "output": "vec: why is dialogue important as a method of philosophical inquiry and reasoning\nvec: how did Socratic dialogue shape Western philosophical tradition"}
+{"input": "what is the significance of dialogue in philosophy? /only:hyde", "output": "hyde: Dialogue has been central to philosophy since Plato's Socratic dialogues, where truth emerges through questioning and exchange rather than dogmatic assertion. The dialectical method exposes contradictions in arguments, refines ideas through challenge and response, and models philosophy as collaborative inquiry."}
+{"input": "what does it mean to write a biography? /only:lex", "output": "lex: biography writing nonfiction life story\nlex: biography research subject narrative"}
+{"input": "what does it mean to write a biography? /only:vec", "output": "vec: what is involved in writing a biography of someone's life\nvec: how do biographers research and structure a narrative about a person's life"}
+{"input": "what does it mean to write a biography? /only:hyde", "output": "hyde: Writing a biography means researching and narrating the story of a real person's life. Biographers conduct interviews, examine letters and documents, and verify facts through multiple sources. The narrative typically follows chronological structure while weaving in themes that defined the subject's character and impact."}
+{"input": "how to develop a writing habit? /only:lex", "output": "lex: writing habit daily routine discipline\nlex: writing habit consistency productivity"}
+{"input": "how to develop a writing habit? /only:vec", "output": "vec: how do you build and maintain a consistent daily writing habit\nvec: what strategies help writers overcome procrastination and write regularly"}
+{"input": "how to develop a writing habit? /only:hyde", "output": "hyde: Set a specific time and place to write every day, even if only for 15-20 minutes. Track your word count or time spent writing. Don't edit while drafting\u2014just get words on the page. Use writing prompts if you're stuck. Many successful authors, including Stephen King, recommend writing at least 1,000 words daily."}
+{"input": "what is green technology /only:lex", "output": "lex: green technology clean environmental\nlex: green technology sustainable energy efficiency"}
+{"input": "what is green technology /only:vec", "output": "vec: what is green technology and what industries does it apply to\nvec: how does green technology help reduce environmental impact and promote sustainability"}
+{"input": "what is green technology /only:hyde", "output": "hyde: Green technology encompasses innovations that reduce environmental impact, including solar panels, electric vehicles, energy-efficient buildings, biodegradable materials, and water purification systems. These technologies aim to conserve resources, reduce waste, and lower carbon emissions across manufacturing, energy, and transportation sectors."}
+{"input": "how to connect car bluetooth? /only:lex", "output": "lex: car Bluetooth pairing phone connect\nlex: car Bluetooth setup audio streaming"}
+{"input": "how to connect car bluetooth? /only:vec", "output": "vec: how to pair a smartphone to a car's Bluetooth system for calls and music\nvec: step-by-step instructions for connecting a phone to car Bluetooth for the first time"}
+{"input": "how to connect car bluetooth? /only:hyde", "output": "hyde: To connect via Bluetooth, enable Bluetooth on your phone and car infotainment system. On the car stereo, go to Settings > Bluetooth > Add Device. Select your car's name on your phone's Bluetooth list. Confirm the pairing code on both devices. The phone should automatically reconnect on future drives."}
+{"input": "what are the building blocks of life /only:lex", "output": "lex: building blocks of life molecules biochemistry\nlex: amino acids nucleic acids proteins cells"}
+{"input": "what are the building blocks of life /only:vec", "output": "vec: what are the fundamental molecular building blocks that make up all living organisms\nvec: how do amino acids, nucleic acids, and lipids form the basis of life on Earth"}
+{"input": "what are the building blocks of life /only:hyde", "output": "hyde: The building blocks of life are four types of organic molecules: proteins (made from amino acids), nucleic acids (DNA and RNA from nucleotides), carbohydrates (sugars and polysaccharides), and lipids (fats and phospholipids). These molecules self-assemble into cells, the basic unit of all living organisms."}
+{"input": "what is the role of a cinematographer? /only:lex", "output": "lex: cinematographer role film camera director of photography\nlex: cinematographer lighting shot composition"}
+{"input": "what is the role of a cinematographer? /only:vec", "output": "vec: what does a cinematographer do on a film set and what creative decisions do they make\nvec: how does the director of photography control lighting, camera, and visual storytelling in film"}
+{"input": "what is the role of a cinematographer? /only:hyde", "output": "hyde: The cinematographer, or director of photography (DP), is responsible for the visual look of a film. They select cameras, lenses, and lighting setups, and work with the director to plan shot composition and camera movement. The DP oversees the camera and electrical departments on set."}
+{"input": "landscape photography /only:lex", "output": "lex: landscape photography techniques composition\nlex: landscape photography camera lens settings\nlex: landscape photography golden hour"}
+{"input": "landscape photography /only:vec", "output": "vec: what camera settings and techniques produce stunning landscape photographs\nvec: how to compose and shoot landscape photography with proper exposure and depth of field"}
+{"input": "landscape photography /only:hyde", "output": "hyde: For landscape photography, use a wide-angle lens (16-35mm), aperture of f/8-f/11 for maximum sharpness, and a low ISO (100). Shoot during golden hour for warm, directional light. Use a tripod, compose with the rule of thirds, and include a strong foreground element to create depth."}
+{"input": "what are literary movements? /only:lex", "output": "lex: literary movements periods history\nlex: literary movements Romanticism Modernism Realism"}
+{"input": "what are literary movements? /only:vec", "output": "vec: what are the major literary movements in history and what defines each one\nvec: how do literary movements like Romanticism, Realism, and Modernism differ from each other"}
+{"input": "what are literary movements? /only:hyde", "output": "hyde: Literary movements are periods defined by shared styles, themes, and philosophies. Romanticism (1800-1850) emphasized emotion and nature. Realism (1850-1900) depicted ordinary life accurately. Modernism (1900-1945) experimented with form and stream of consciousness. Postmodernism questioned grand narratives through irony and fragmentation."}
+{"input": "what is the capital of france? /only:lex", "output": "lex: capital France Paris\nlex: Paris capital city France"}
+{"input": "what is the capital of france? /only:vec", "output": "vec: what city is the capital of France\nvec: where is the capital of France located and what is it known for"}
+{"input": "what is the capital of france? /only:hyde", "output": "hyde: Paris is the capital and largest city of France, located on the Seine River in northern France. With a population of over 2 million in the city proper and 12 million in the metropolitan area, it is the country's political, economic, and cultural center."}
+{"input": "golf play /only:lex", "output": "lex: golf playing tips beginner\nlex: golf swing technique course\nlex: golf rules gameplay etiquette"}
+{"input": "golf play /only:vec", "output": "vec: how do you play golf and what are the basic rules for beginners\nvec: what techniques and etiquette should new golfers learn before playing on a course"}
+{"input": "golf play /only:hyde", "output": "hyde: A round of golf consists of 18 holes. At each hole, tee off from the tee box, play through the fairway, and putt on the green. The objective is to complete each hole in the fewest strokes. Beginners should start at a driving range, learn basic grip and stance, and play executive (par-3) courses."}
+{"input": "build a treehouse /only:lex", "output": "lex: treehouse building construction plans\nlex: treehouse DIY wood platform tree"}
+{"input": "build a treehouse /only:vec", "output": "vec: how to design and build a treehouse safely in a backyard tree\nvec: what materials and tools do you need to build a treehouse for kids"}
+{"input": "build a treehouse /only:hyde", "output": "hyde: Choose a healthy hardwood tree (oak, maple, beech) with a trunk at least 12 inches in diameter. Use treehouse attachment bolts (TABs) rather than nails, which damage the tree. Build the platform at 6-8 feet high using pressure-treated lumber. Frame with 2x6 joists on 16-inch centers and deck with 5/4 boards."}
+{"input": "where to buy classic car parts /only:lex", "output": "lex: classic car parts buy online supplier\nlex: vintage car parts restoration OEM"}
+{"input": "where to buy classic car parts /only:vec", "output": "vec: where can you purchase replacement parts for classic and vintage cars\nvec: which online stores and suppliers specialize in classic car restoration parts"}
+{"input": "where to buy classic car parts /only:hyde", "output": "hyde: Find classic car parts at specialty suppliers like Summit Racing, Classic Industries, and Hemmings. Year One stocks OEM-quality parts for GM, Ford, and Mopar vehicles from the 1950s-80s. JEGS and Rock Auto also carry a wide selection. Check eBay Motors and swap meets for rare NOS (new old stock) parts."}
+{"input": "how to set business goals /only:lex", "output": "lex: business goals setting SMART strategy\nlex: business goal planning objectives targets"}
+{"input": "how to set business goals /only:vec", "output": "vec: how to set effective business goals using the SMART framework\nvec: what process should entrepreneurs follow to define and track business objectives"}
+{"input": "how to set business goals /only:hyde", "output": "hyde: Set business goals using the SMART framework: Specific (\"increase monthly revenue by 15%\"), Measurable (track with KPIs), Achievable (realistic given resources), Relevant (aligned with company mission), and Time-bound (complete by Q3). Break annual goals into quarterly milestones and review progress monthly."}
+{"input": "what are the characteristics of neolithic societies? /only:lex", "output": "lex: Neolithic society characteristics agriculture settlement\nlex: Neolithic period farming tools social structure"}
+{"input": "what are the characteristics of neolithic societies? /only:vec", "output": "vec: what were the key characteristics of Neolithic societies after the agricultural revolution\nvec: how did Neolithic communities organize their social structure, farming, and settlements"}
+{"input": "what are the characteristics of neolithic societies? /only:hyde", "output": "hyde: Neolithic societies (approximately 10,000-3,000 BCE) were characterized by the transition from hunting-gathering to agriculture. People domesticated plants and animals, formed permanent settlements, developed pottery and polished stone tools, and created increasingly complex social hierarchies with specialized labor roles."}
+{"input": "what is the significance of rituals in judaism? /only:lex", "output": "lex: Judaism rituals significance religious practice\nlex: Jewish rituals Shabbat observance tradition"}
+{"input": "what is the significance of rituals in judaism? /only:vec", "output": "vec: what role do rituals play in Jewish religious life and spiritual practice\nvec: why are rituals like Shabbat, kashrut, and prayer important in Judaism"}
+{"input": "what is the significance of rituals in judaism? /only:hyde", "output": "hyde: Rituals in Judaism (mitzvot) structure daily, weekly, and yearly life around sacred observance. Shabbat, observed from Friday evening to Saturday night, sanctifies time through rest, prayer, and family meals. Rituals connect Jews to their covenant with God, collective memory, and community identity across generations."}
+{"input": "how to increase productivity at work? /only:lex", "output": "lex: productivity work increase tips\nlex: workplace productivity time management techniques"}
+{"input": "how to increase productivity at work? /only:vec", "output": "vec: what proven strategies help people increase their productivity at work\nvec: how can you manage your time better to get more done during the workday"}
+{"input": "how to increase productivity at work? /only:hyde", "output": "hyde: Increase workplace productivity by time-blocking your calendar in 90-minute focus sessions. Tackle your hardest task first (eat the frog). Batch similar tasks like email and meetings. Eliminate distractions by silencing notifications. Use the Pomodoro Technique: 25 minutes of work, 5-minute break, repeat."}
+{"input": "what is panorama photography? /only:lex", "output": "lex: panorama photography wide angle stitching\nlex: panoramic photo technique camera rotation"}
+{"input": "what is panorama photography? /only:vec", "output": "vec: what is panorama photography and how do you capture and stitch panoramic images\nvec: what camera techniques and software are used to create panoramic photographs"}
+{"input": "what is panorama photography? /only:hyde", "output": "hyde: Panorama photography captures wide scenes by shooting multiple overlapping images and stitching them together. Use a tripod with a panoramic head, shoot in manual mode to keep exposure consistent, and overlap each frame by 30-50%. Stitch in software like Lightroom, PTGui, or Hugin."}
+{"input": "what are the key periods in chinese history /only:lex", "output": "lex: Chinese history periods dynasties timeline\nlex: China historical periods Qin Han Tang"}
+{"input": "what are the key periods in chinese history /only:vec", "output": "vec: what are the major periods and dynasties in Chinese history from ancient to modern times\nvec: how is Chinese history divided into dynastic periods and what defined each era"}
+{"input": "what are the key periods in chinese history /only:hyde", "output": "hyde: Key periods in Chinese history include: Shang Dynasty (1600-1046 BCE), Zhou Dynasty (1046-256 BCE), Qin Dynasty (221-206 BCE, first unified empire), Han Dynasty (206 BCE-220 CE), Tang Dynasty (618-907, golden age), Song Dynasty (960-1279), Ming Dynasty (1368-1644), Qing Dynasty (1644-1912), and the People's Republic (1949-present)."}
+{"input": "what are the elements of a good story? /only:lex", "output": "lex: story elements plot character setting\nlex: storytelling elements narrative structure"}
+{"input": "what are the elements of a good story? /only:vec", "output": "vec: what are the essential elements that make a story compelling and well-crafted\nvec: how do plot, character, setting, and conflict work together in a good story"}
+{"input": "what are the elements of a good story? /only:hyde", "output": "hyde: A good story requires compelling characters, a clear conflict, a structured plot (beginning, rising action, climax, resolution), a vivid setting, and a consistent point of view. Theme gives the story meaning beyond its events. Strong dialogue reveals character and advances the plot naturally."}
+{"input": "latest news in artificial intelligence research /only:lex", "output": "lex: artificial intelligence research news 2025 2026\nlex: AI research breakthroughs latest developments\nlex: machine learning AI news recent"}
+{"input": "latest news in artificial intelligence research /only:vec", "output": "vec: what are the most recent breakthroughs and developments in artificial intelligence research in 2025-2026\nvec: what new AI models and techniques have been published in the latest research"}
+{"input": "latest news in artificial intelligence research /only:hyde", "output": "hyde: In 2025-2026, AI research advanced with larger multimodal models capable of reasoning across text, image, and video. Key developments include improved chain-of-thought reasoning, AI agents that can use tools and write code, and open-weight models matching proprietary performance."}
+{"input": "what are the main beliefs of new age spirituality? /only:lex", "output": "lex: New Age spirituality beliefs practices\nlex: New Age movement spiritual holistic"}
+{"input": "what are the main beliefs of new age spirituality? /only:vec", "output": "vec: what are the central beliefs and practices of New Age spirituality\nvec: how does the New Age movement define spirituality, consciousness, and healing"}
+{"input": "what are the main beliefs of new age spirituality? /only:hyde", "output": "hyde: New Age spirituality encompasses diverse beliefs including holistic healing, the interconnectedness of all life, personal spiritual growth, and the existence of higher consciousness. Practitioners may draw from Eastern religions, astrology, crystal healing, meditation, and the idea that individuals can channel divine energy."}
+{"input": "how to plan a camping trip with kids /only:lex", "output": "lex: camping trip kids family planning\nlex: family camping children gear checklist"}
+{"input": "how to plan a camping trip with kids /only:vec", "output": "vec: how to plan and prepare for a family camping trip with young children\nvec: what gear and activities should you bring when camping with kids for the first time"}
+{"input": "how to plan a camping trip with kids /only:hyde", "output": "hyde: Plan a family camping trip by choosing a campground with bathrooms and short hiking trails. Pack extra layers, rain gear, and familiar snacks. Bring activities: nature scavenger hunts, glow sticks, and star charts. Set up camp early to let kids explore. Practice tent setup in the backyard first."}
+{"input": "how do philosophers conceptualize identity /only:lex", "output": "lex: personal identity philosophy self\nlex: identity philosophy Locke consciousness persistence"}
+{"input": "how do philosophers conceptualize identity /only:vec", "output": "vec: how do philosophers define and explain personal identity and what makes someone the same person over time\nvec: what are the major philosophical theories of identity from Locke to modern philosophy of mind"}
+{"input": "how do philosophers conceptualize identity /only:hyde", "output": "hyde: Philosophers debate what constitutes personal identity over time. John Locke argued identity rests on continuity of consciousness and memory. David Hume denied a fixed self, viewing identity as a bundle of perceptions. Derek Parfit argued identity is not what matters\u2014psychological continuity is."}
+{"input": "what is the role of civil society in politics /only:lex", "output": "lex: civil society political role organizations\nlex: civil society democracy NGOs advocacy"}
+{"input": "what is the role of civil society in politics /only:vec", "output": "vec: what role do civil society organizations play in democratic politics and governance\nvec: how does civil society influence government policy and hold political leaders accountable"}
+{"input": "what is the role of civil society in politics /only:hyde", "output": "hyde: Civil society\u2014NGOs, advocacy groups, unions, and community organizations\u2014serves as a check on government power. These groups mobilize citizens, advocate for policy changes, monitor elections, and provide services the state cannot. A strong civil society is considered essential for healthy democracy and government accountability."}
+{"input": "how to handle inflation impact /only:lex", "output": "lex: inflation impact personal finance manage\nlex: inflation coping strategies budget investment"}
+{"input": "how to handle inflation impact /only:vec", "output": "vec: how can individuals protect their finances and manage the impact of high inflation\nvec: what financial strategies help people cope with rising prices and reduced purchasing power"}
+{"input": "how to handle inflation impact /only:hyde", "output": "hyde: To handle inflation, review your budget and cut discretionary spending. Move savings to high-yield accounts or I-bonds that adjust for inflation. Lock in fixed-rate loans before rates rise. Invest in assets that historically outpace inflation: equities, real estate, and TIPS (Treasury Inflation-Protected Securities)."}
+{"input": "how is energy conserved during chemical reactions /only:lex", "output": "lex: energy conservation chemical reactions thermodynamics\nlex: chemical reaction energy transfer exothermic endothermic"}
+{"input": "how is energy conserved during chemical reactions /only:vec", "output": "vec: how does the law of conservation of energy apply to chemical reactions\nvec: how is energy transferred and conserved in exothermic and endothermic chemical reactions"}
+{"input": "how is energy conserved during chemical reactions /only:hyde", "output": "hyde: In chemical reactions, energy is neither created nor destroyed (first law of thermodynamics). Exothermic reactions release energy\u2014bonds formed in products are stronger than bonds broken in reactants. Endothermic reactions absorb energy\u2014more energy is needed to break reactant bonds than is released forming product bonds."}
+{"input": "how to make sourdough bread /only:lex", "output": "lex: sourdough bread recipe starter\nlex: sourdough bread baking fermentation dough"}
+{"input": "how to make sourdough bread /only:vec", "output": "vec: what is the step-by-step process for making sourdough bread from a starter\nvec: how do you feed a sourdough starter and bake a loaf of sourdough bread at home"}
+{"input": "how to make sourdough bread /only:hyde", "output": "hyde: Mix 100g active starter, 375g water, 500g bread flour, and 10g salt. Stretch and fold every 30 minutes for 2 hours, then bulk ferment 4-8 hours until doubled. Shape, place in a banneton, and cold-proof in the fridge overnight. Bake in a Dutch oven at 450\u00b0F: 20 min covered, 20 min uncovered."}
+{"input": "what is the philosophy of aesthetics /only:lex", "output": "lex: aesthetics philosophy beauty art\nlex: philosophy aesthetics theory judgment taste"}
+{"input": "what is the philosophy of aesthetics /only:vec", "output": "vec: what is the philosophy of aesthetics and how does it define beauty and art\nvec: how do philosophers like Kant and Hume approach questions of aesthetic judgment and taste"}
+{"input": "what is the philosophy of aesthetics /only:hyde", "output": "hyde: Aesthetics is the branch of philosophy concerned with the nature of beauty, art, and taste. Kant argued that aesthetic judgments are subjective yet claim universal validity\u2014when we call something beautiful, we expect others to agree. Hume held that taste varies but can be refined through experience and education."}
+{"input": "what to pack for a hike? /only:lex", "output": "lex: hiking packing list gear essentials\nlex: hiking pack checklist day hike"}
+{"input": "what to pack for a hike? /only:vec", "output": "vec: what essential items should you pack for a day hike in the outdoors\nvec: what gear and supplies do you need to bring on a hiking trip for safety and comfort"}
+{"input": "what to pack for a hike? /only:hyde", "output": "hyde: The ten essentials for hiking: navigation (map/compass/GPS), sun protection, insulation (extra layers), illumination (headlamp), first aid kit, fire starter, repair tools, nutrition (extra food), hydration (extra water), and emergency shelter. Also bring a whistle, trekking poles, and broken-in boots."}
+{"input": "what is the philosophy of existentialism? /only:lex", "output": "lex: existentialism philosophy Sartre Kierkegaard\nlex: existentialism existence precedes essence freedom"}
+{"input": "what is the philosophy of existentialism? /only:vec", "output": "vec: what is existentialist philosophy and what are its core claims about human freedom and meaning\nvec: how did Sartre, Kierkegaard, and Camus define existentialism and its key ideas"}
+{"input": "what is the philosophy of existentialism? /only:hyde", "output": "hyde: Existentialism holds that existence precedes essence\u2014humans are not born with a fixed nature but create themselves through choices. Sartre argued we are \"condemned to be free,\" fully responsible for our actions. Kierkegaard emphasized the anxiety of individual choice, while Camus explored the absurdity of seeking meaning in an indifferent universe."}
+{"input": "battery test /only:lex", "output": "lex: battery test multimeter voltage\nlex: battery test car 12V load\nlex: battery testing health capacity"}
+{"input": "battery test /only:vec", "output": "vec: how to test a battery's charge level and health using a multimeter or load tester\nvec: how to check if a car battery or device battery needs replacement"}
+{"input": "battery test /only:hyde", "output": "hyde: Test a 12V car battery with a multimeter set to DC volts. A fully charged battery reads 12.6V or higher. Between 12.0-12.4V indicates partial charge. Below 12.0V means the battery is discharged. For a load test, apply a load equal to half the CCA rating for 15 seconds\u2014voltage should stay above 9.6V."}
+{"input": "what is hdr photography? /only:lex", "output": "lex: HDR photography high dynamic range\nlex: HDR photo bracketing tone mapping"}
+{"input": "what is hdr photography? /only:vec", "output": "vec: what is HDR photography and how does it capture a wider range of light and shadow\nvec: how do you shoot and process HDR photos using exposure bracketing and tone mapping"}
+{"input": "what is hdr photography? /only:hyde", "output": "hyde: HDR (High Dynamic Range) photography combines multiple exposures of the same scene\u2014typically 3-5 bracketed shots\u2014to capture detail in both highlights and shadows. The images are merged using software like Photomatix or Lightroom, then tone-mapped to produce a single image with a wider dynamic range than a single exposure."}
+{"input": "what is the significance of literary awards? /only:lex", "output": "lex: literary awards significance publishing\nlex: literary prizes Nobel Pulitzer Booker impact"}
+{"input": "what is the significance of literary awards? /only:vec", "output": "vec: why are literary awards significant for authors and the publishing industry\nvec: how do prizes like the Nobel, Pulitzer, and Booker Prize affect book sales and literary reputation"}
+{"input": "what is the significance of literary awards? /only:hyde", "output": "hyde: Literary awards elevate authors' visibility and boost book sales\u2014Booker Prize winners typically see a 600% increase in sales. Awards canonize works in literary culture, influence academic curricula, and bring attention to underrepresented voices. They also shape publishers' marketing strategies and readers' choices."}
+{"input": "what is cubism? /only:lex", "output": "lex: Cubism art movement Picasso Braque\nlex: Cubism painting geometric abstraction"}
+{"input": "what is cubism? /only:vec", "output": "vec: what is Cubism as an art movement and how did it change visual representation in painting\nvec: how did Picasso and Braque develop Cubism and what are its defining visual characteristics"}
+{"input": "what is cubism? /only:hyde", "output": "hyde: Cubism, pioneered by Pablo Picasso and Georges Braque around 1907-1914, broke objects into geometric fragments and depicted multiple viewpoints simultaneously on a flat canvas. Analytic Cubism (1907-1912) deconstructed forms into monochrome facets. Synthetic Cubism (1912-1914) introduced collage, color, and simpler shapes."}
+{"input": "cache hit /only:lex", "output": "lex: cache hit rate ratio\nlex: CPU cache hit miss latency\nlex: web cache hit response time"}
+{"input": "cache hit /only:vec", "output": "vec: what happens when data is found in cache memory\nvec: how cache hits improve application performance versus cache misses"}
+{"input": "cache hit /only:hyde", "output": "hyde: A cache hit occurs when the requested data is found in the cache layer, avoiding a slower lookup to the backing store. Hit rates above 90% typically indicate effective caching."}
+{"input": "current applications of machine learning in research /only:lex", "output": "lex: machine learning research applications 2025 2026\nlex: ML models scientific research use cases\nlex: deep learning academic research tools"}
+{"input": "current applications of machine learning in research /only:vec", "output": "vec: how is machine learning being applied in scientific research today\nvec: what are the latest ways researchers use ML models in their studies"}
+{"input": "current applications of machine learning in research /only:hyde", "output": "hyde: Machine learning is now routinely used in genomics for variant calling, in climate science for weather prediction, and in materials science for discovering novel compounds. Recent breakthroughs include protein structure prediction and automated literature review."}
+{"input": "how to plant a vegetable garden /only:lex", "output": "lex: vegetable garden planting steps\nlex: backyard vegetable garden soil preparation\nlex: raised bed vegetable garden layout"}
+{"input": "how to plant a vegetable garden /only:vec", "output": "vec: what are the steps to start a vegetable garden from scratch\nvec: how to prepare soil and plant vegetables for beginners"}
+{"input": "how to plant a vegetable garden /only:hyde", "output": "hyde: Choose a site with 6-8 hours of direct sunlight. Amend the soil with compost, till to 12 inches deep, and plant seedlings after the last frost date. Space rows 18-24 inches apart depending on the crop."}
+{"input": "how does existentialism view authenticity /only:lex", "output": "lex: existentialism authenticity Sartre Heidegger\nlex: authentic existence existentialist philosophy"}
+{"input": "how does existentialism view authenticity /only:vec", "output": "vec: what does authenticity mean in existentialist philosophy\nvec: how do existentialist thinkers define living an authentic life"}
+{"input": "how does existentialism view authenticity /only:hyde", "output": "hyde: For Sartre, authenticity means acknowledging radical freedom and refusing bad faith\u2014the self-deception of pretending our choices are determined by external forces. Heidegger's Eigentlichkeit calls us to own our finitude rather than losing ourselves in das Man."}
+{"input": "what is the great depression /only:lex", "output": "lex: Great Depression 1929 economic collapse\nlex: Great Depression causes unemployment stock market crash"}
+{"input": "what is the great depression /only:vec", "output": "vec: what caused the Great Depression and how did it affect the economy\nvec: what were the major events and consequences of the Great Depression in the 1930s"}
+{"input": "what is the great depression /only:hyde", "output": "hyde: The Great Depression began with the stock market crash of October 1929 and lasted until the late 1930s. Unemployment peaked at 25%, thousands of banks failed, and GDP fell by nearly 30%. The New Deal introduced federal relief programs."}
+{"input": "what is the international court of justice /only:lex", "output": "lex: International Court of Justice ICJ United Nations\nlex: ICJ jurisdiction Hague rulings"}
+{"input": "what is the international court of justice /only:vec", "output": "vec: what is the purpose and function of the International Court of Justice\nvec: how does the ICJ at The Hague resolve disputes between countries"}
+{"input": "what is the international court of justice /only:hyde", "output": "hyde: The International Court of Justice (ICJ) is the principal judicial organ of the United Nations, located in The Hague, Netherlands. It settles legal disputes between states and gives advisory opinions on questions referred by UN organs."}
+{"input": "what is influencer marketing /only:lex", "output": "lex: influencer marketing social media brand promotion\nlex: influencer campaigns Instagram TikTok sponsorship"}
+{"input": "what is influencer marketing /only:vec", "output": "vec: how does influencer marketing work for promoting brands on social media\nvec: what is influencer marketing and why do companies pay content creators"}
+{"input": "what is influencer marketing /only:hyde", "output": "hyde: Influencer marketing is a strategy where brands partner with social media creators who have engaged followings to promote products. Campaigns may involve sponsored posts, affiliate links, or product reviews. ROI is measured through engagement rates, conversions, and reach."}
+{"input": "how to change a flat tire? /only:lex", "output": "lex: change flat tire steps jack lug nuts\nlex: flat tire replacement spare wheel"}
+{"input": "how to change a flat tire? /only:vec", "output": "vec: step-by-step instructions for changing a flat tire on the side of the road\nvec: how to safely jack up a car and replace a flat tire with the spare"}
+{"input": "how to change a flat tire? /only:hyde", "output": "hyde: Loosen the lug nuts before jacking. Place the jack under the frame near the flat tire, raise the vehicle, remove the lug nuts, swap in the spare, hand-tighten the nuts in a star pattern, lower the car, then torque to 80-100 ft-lbs."}
+{"input": "what is the significance of the lotus in buddhism? /only:lex", "output": "lex: lotus flower Buddhism symbolism\nlex: lotus Buddhist enlightenment purity"}
+{"input": "what is the significance of the lotus in buddhism? /only:vec", "output": "vec: why is the lotus flower an important symbol in Buddhism\nvec: what does the lotus represent in Buddhist art and teachings"}
+{"input": "what is the significance of the lotus in buddhism? /only:hyde", "output": "hyde: The lotus grows from muddy water yet blooms immaculately, symbolizing the journey from suffering to enlightenment. In Buddhist iconography, the Buddha is often depicted seated on a lotus throne, representing purity of mind arising from the world of samsara."}
+{"input": "code lint /only:lex", "output": "lex: code linter static analysis\nlex: linting tools ESLint Pylint code quality\nlex: lint rules syntax errors warnings"}
+{"input": "code lint /only:vec", "output": "vec: what is code linting and how do linting tools check source code for errors\nvec: how to set up a code linter for catching bugs and enforcing style rules"}
+{"input": "code lint /only:hyde", "output": "hyde: A linter performs static analysis on source code to detect syntax errors, stylistic issues, and potential bugs without executing the program. Popular linters include ESLint for JavaScript, Pylint for Python, and Clippy for Rust."}
+{"input": "what is content marketing /only:lex", "output": "lex: content marketing strategy blog SEO\nlex: content marketing audience engagement brand"}
+{"input": "what is content marketing /only:vec", "output": "vec: what is content marketing and how does it attract customers\nvec: how do businesses use content marketing to drive traffic and build trust"}
+{"input": "what is content marketing /only:hyde", "output": "hyde: Content marketing focuses on creating and distributing valuable, relevant content\u2014blog posts, videos, podcasts, whitepapers\u2014to attract and retain a target audience. Rather than directly promoting a product, it builds authority and nurtures leads through the sales funnel."}
+{"input": "what is the meaning of hanukkah /only:lex", "output": "lex: Hanukkah meaning Jewish festival of lights\nlex: Hanukkah menorah Maccabees temple rededication"}
+{"input": "what is the meaning of hanukkah /only:vec", "output": "vec: what is the history and significance of Hanukkah in Judaism\nvec: why do Jewish people celebrate Hanukkah and what does it commemorate"}
+{"input": "what is the meaning of hanukkah /only:hyde", "output": "hyde: Hanukkah commemorates the rededication of the Second Temple in Jerusalem after the Maccabean revolt against the Seleucid Empire in 164 BCE. The miracle of the oil\u2014one day's supply lasting eight days\u2014is celebrated by lighting the menorah each night."}
+{"input": "what is existential angst /only:lex", "output": "lex: existential angst anxiety Kierkegaard\nlex: existential dread absurdity freedom"}
+{"input": "what is existential angst /only:vec", "output": "vec: what does existential angst mean in philosophy\nvec: how do existentialist philosophers describe the feeling of existential anxiety"}
+{"input": "what is existential angst /only:hyde", "output": "hyde: Existential angst, or Angst, is the deep anxiety that arises from confronting freedom, mortality, and the absence of inherent meaning. Kierkegaard described it as the dizziness of freedom; Heidegger linked it to awareness of one's Being-toward-death."}
+{"input": "how to style open shelves /only:lex", "output": "lex: open shelf styling tips decor\nlex: kitchen open shelving arrangement display"}
+{"input": "how to style open shelves /only:vec", "output": "vec: how to arrange and decorate open shelves so they look good\nvec: what are tips for styling open shelves in a kitchen or living room"}
+{"input": "how to style open shelves /only:hyde", "output": "hyde: Group items in odd numbers and vary heights. Mix functional pieces like dishes with decorative objects like plants or small art. Leave 30% of the shelf empty to avoid clutter. Use a consistent color palette to tie everything together."}
+{"input": "linkedin profile /only:lex", "output": "lex: LinkedIn profile optimization headline\nlex: LinkedIn profile tips summary photo\nlex: LinkedIn profile writing professional"}
+{"input": "linkedin profile /only:vec", "output": "vec: how to create an effective LinkedIn profile that attracts recruiters\nvec: what should you include in your LinkedIn profile headline and summary"}
+{"input": "linkedin profile /only:hyde", "output": "hyde: Your LinkedIn headline should go beyond your job title\u2014include keywords and your value proposition. Use the summary section to tell your professional story in first person. Add a professional headshot; profiles with photos get 21x more views."}
+{"input": "what are the benefits of yoga /only:lex", "output": "lex: yoga benefits health flexibility stress\nlex: yoga physical mental health advantages"}
+{"input": "what are the benefits of yoga /only:vec", "output": "vec: what are the physical and mental health benefits of practicing yoga regularly\nvec: how does yoga improve flexibility, strength, and stress levels"}
+{"input": "what are the benefits of yoga /only:hyde", "output": "hyde: Regular yoga practice improves flexibility, builds core strength, and lowers cortisol levels. Studies show it reduces chronic back pain, lowers blood pressure, and decreases symptoms of anxiety and depression. Even 20 minutes daily produces measurable benefits."}
+{"input": "what is virtue ethics /only:lex", "output": "lex: virtue ethics Aristotle character moral\nlex: virtue ethics eudaimonia moral philosophy"}
+{"input": "what is virtue ethics /only:vec", "output": "vec: what is virtue ethics and how does it differ from other moral theories\nvec: how does Aristotle's virtue ethics define moral character and the good life"}
+{"input": "what is virtue ethics /only:hyde", "output": "hyde: Virtue ethics, rooted in Aristotle's Nicomachean Ethics, holds that morality centers on developing virtuous character traits\u2014courage, temperance, justice, prudence\u2014rather than following rules or calculating consequences. The goal is eudaimonia, or human flourishing."}
+{"input": "how to calculate carbon emissions? /only:lex", "output": "lex: carbon emissions calculation formula CO2\nlex: carbon footprint calculator methodology"}
+{"input": "how to calculate carbon emissions? /only:vec", "output": "vec: how do you calculate the carbon emissions from energy use and transportation\nvec: what formulas and data are used to measure carbon dioxide emissions"}
+{"input": "how to calculate carbon emissions? /only:hyde", "output": "hyde: To calculate CO2 emissions, multiply the activity data (e.g., kWh of electricity, liters of fuel) by the appropriate emission factor. For gasoline: 2.31 kg CO2 per liter burned. For grid electricity, use the regional emission factor, typically 0.3-0.9 kg CO2/kWh."}
+{"input": "how to start rock climbing /only:lex", "output": "lex: rock climbing beginner indoor gym\nlex: rock climbing gear shoes harness belay"}
+{"input": "how to start rock climbing /only:vec", "output": "vec: how to get started with rock climbing as a complete beginner\nvec: what equipment and skills do beginners need for indoor rock climbing"}
+{"input": "how to start rock climbing /only:hyde", "output": "hyde: Start at an indoor climbing gym where you can rent shoes and a harness. Take a belay certification class to learn rope handling. Begin on easy routes graded V0-V1 for bouldering or 5.6-5.8 for top-rope. Focus on footwork over arm strength."}
+{"input": "how to create a moon garden? /only:lex", "output": "lex: moon garden white flowers night-blooming plants\nlex: moon garden design layout fragrant plants"}
+{"input": "how to create a moon garden? /only:vec", "output": "vec: how to plan and plant a garden designed to be enjoyed at night\nvec: what plants and flowers work best in a moon garden"}
+{"input": "how to create a moon garden? /only:hyde", "output": "hyde: A moon garden features white and pale-colored flowers, silver foliage, and night-blooming plants that glow under moonlight. Include moonflower (Ipomoea alba), white nicotiana, night-blooming jasmine, dusty miller, and lamb's ear. Add light-colored gravel paths for reflection."}
+{"input": "what is the significance of the bildungsroman? /only:lex", "output": "lex: bildungsroman coming-of-age novel literary genre\nlex: bildungsroman significance literature examples"}
+{"input": "what is the significance of the bildungsroman? /only:vec", "output": "vec: what is a bildungsroman and why is it an important literary genre\nvec: how does the bildungsroman novel trace a character's growth and development"}
+{"input": "what is the significance of the bildungsroman? /only:hyde", "output": "hyde: The bildungsroman, or coming-of-age novel, follows a protagonist's psychological and moral development from youth to adulthood. Examples include Goethe's Wilhelm Meister, Dickens' Great Expectations, and Joyce's A Portrait of the Artist as a Young Man."}
+{"input": "what is moral behavior /only:lex", "output": "lex: moral behavior ethics right wrong conduct\nlex: moral behavior definition philosophy psychology"}
+{"input": "what is moral behavior /only:vec", "output": "vec: what defines moral behavior and how do people distinguish right from wrong\nvec: what is moral behavior according to ethics and psychology"}
+{"input": "what is moral behavior /only:hyde", "output": "hyde: Moral behavior refers to actions that conform to standards of right conduct within a society or ethical framework. It involves making choices that consider the well-being of others, guided by principles such as fairness, honesty, empathy, and respect for autonomy."}
+{"input": "how to use a rototiller? /only:lex", "output": "lex: rototiller operation tilling soil garden\nlex: rototiller how to use depth settings"}
+{"input": "how to use a rototiller? /only:vec", "output": "vec: step-by-step instructions for using a rototiller to prepare garden soil\nvec: how to operate a rototiller safely and effectively"}
+{"input": "how to use a rototiller? /only:hyde", "output": "hyde: Set the tilling depth to 6-8 inches for new beds. Walk slowly and let the tines do the work\u2014don't force it forward. Make overlapping passes in parallel rows. Avoid tilling wet soil, which creates compaction. Clean tines after each use."}
+{"input": "how to build a greenhouse? /only:lex", "output": "lex: greenhouse build DIY construction plans\nlex: greenhouse frame polycarbonate panels foundation"}
+{"input": "how to build a greenhouse? /only:vec", "output": "vec: how to build a small greenhouse in your backyard step by step\nvec: what materials and design are needed to construct a DIY greenhouse"}
+{"input": "how to build a greenhouse? /only:hyde", "output": "hyde: Start with a level foundation of treated lumber or concrete blocks. Build the frame from galvanized steel or cedar. Cover with 8mm twin-wall polycarbonate panels, which insulate better than glass. Include ridge vents for airflow and a door on the south-facing end."}
+{"input": "how to handle sibling rivalry? /only:lex", "output": "lex: sibling rivalry parenting tips conflict\nlex: sibling fighting jealousy children strategies"}
+{"input": "how to handle sibling rivalry? /only:vec", "output": "vec: how can parents manage sibling rivalry and reduce fighting between children\nvec: what strategies help siblings get along and resolve conflicts"}
+{"input": "how to handle sibling rivalry? /only:hyde", "output": "hyde: Avoid comparing siblings or taking sides. Acknowledge each child's feelings before mediating. Teach conflict resolution skills: use I-statements, take turns speaking, and brainstorm solutions together. Spend one-on-one time with each child to reduce jealousy."}
+{"input": "how to polish car paint? /only:lex", "output": "lex: car paint polish compound buffing\nlex: auto paint polishing scratch removal swirl marks"}
+{"input": "how to polish car paint? /only:vec", "output": "vec: how to polish car paint to remove scratches and restore shine\nvec: what is the correct technique for machine polishing automotive paint"}
+{"input": "how to polish car paint? /only:hyde", "output": "hyde: Wash and clay bar the surface first. Apply a small amount of polishing compound to a foam pad on a dual-action polisher. Work in 2x2 foot sections at 1200-1500 RPM with medium pressure. Wipe residue with a microfiber towel, then apply sealant or wax."}
+{"input": "what is intrinsic value /only:lex", "output": "lex: intrinsic value philosophy ethics\nlex: intrinsic value stock valuation finance"}
+{"input": "what is intrinsic value /only:vec", "output": "vec: what does intrinsic value mean in philosophy and in finance\nvec: how is intrinsic value defined as something valuable in itself regardless of consequences"}
+{"input": "what is intrinsic value /only:hyde", "output": "hyde: In philosophy, intrinsic value is the worth something has in itself, independent of its usefulness. Kant argued that rational beings have intrinsic value as ends in themselves. In finance, intrinsic value refers to the calculated true worth of an asset based on fundamentals."}
+{"input": "how to get rid of weeds naturally /only:lex", "output": "lex: natural weed killer organic herbicide\nlex: remove weeds without chemicals mulch vinegar"}
+{"input": "how to get rid of weeds naturally /only:vec", "output": "vec: what are natural methods for killing and preventing weeds in a garden\nvec: how to get rid of weeds without using chemical herbicides"}
+{"input": "how to get rid of weeds naturally /only:hyde", "output": "hyde: Apply a 3-4 inch layer of mulch to suppress weed growth. Pour boiling water directly on weeds in cracks. Spray a mixture of white vinegar, salt, and dish soap on foliage in full sun. Hand-pull weeds after rain when roots come out easily."}
+{"input": "what is the concept of original sin /only:lex", "output": "lex: original sin Christian theology Adam Eve\nlex: original sin doctrine fall of man"}
+{"input": "what is the concept of original sin /only:vec", "output": "vec: what is original sin in Christian theology and where does the idea come from\nvec: how does the concept of original sin explain human nature in Christianity"}
+{"input": "what is the concept of original sin /only:hyde", "output": "hyde: Original sin is the Christian doctrine that humanity inherited a sinful nature from Adam and Eve's disobedience in the Garden of Eden. Augustine of Hippo formalized the teaching, arguing that all humans are born in a state of sin, redeemable only through divine grace."}
+{"input": "how to build a successful brand /only:lex", "output": "lex: brand building strategy identity positioning\nlex: brand identity logo messaging target audience"}
+{"input": "how to build a successful brand /only:vec", "output": "vec: what steps are needed to build a strong and recognizable brand\nvec: how do companies create a successful brand identity and positioning"}
+{"input": "how to build a successful brand /only:hyde", "output": "hyde: Define your brand's mission, values, and target audience. Develop a distinctive visual identity\u2014logo, color palette, typography. Craft a consistent brand voice across all channels. Differentiate with a clear value proposition and deliver on your brand promise consistently."}
+{"input": "what are the teachings of the baha'i faith? /only:lex", "output": "lex: Baha'i faith teachings principles Baha'u'llah\nlex: Baha'i beliefs unity humanity religion"}
+{"input": "what are the teachings of the baha'i faith? /only:vec", "output": "vec: what are the core beliefs and teachings of the Baha'i faith\nvec: what did Baha'u'llah teach about unity, equality, and world peace"}
+{"input": "what are the teachings of the baha'i faith? /only:hyde", "output": "hyde: The Baha'i faith, founded by Baha'u'llah in 19th-century Persia, teaches the oneness of God, the oneness of religion, and the oneness of humanity. Core principles include elimination of prejudice, equality of men and women, universal education, and harmony of science and religion."}
+{"input": "how to potty train a toddler? /only:lex", "output": "lex: potty training toddler tips methods\nlex: toddler toilet training readiness signs"}
+{"input": "how to potty train a toddler? /only:vec", "output": "vec: how to potty train a toddler and what are the signs of readiness\nvec: what is the best approach to potty training a 2-year-old child"}
+{"input": "how to potty train a toddler? /only:hyde", "output": "hyde: Watch for readiness signs: staying dry for 2 hours, showing interest in the toilet, and communicating the need to go. Start with a child-sized potty, establish a routine after meals and naps, use positive reinforcement, and expect accidents\u2014avoid punishment."}
+{"input": "how to reduce waste in everyday life? /only:lex", "output": "lex: reduce waste zero waste lifestyle tips\nlex: waste reduction recycling composting reuse"}
+{"input": "how to reduce waste in everyday life? /only:vec", "output": "vec: what are practical ways to reduce household waste in daily life\nvec: how can individuals cut down on trash and move toward zero waste living"}
+{"input": "how to reduce waste in everyday life? /only:hyde", "output": "hyde: Bring reusable bags, bottles, and containers when shopping. Buy in bulk to reduce packaging. Compost food scraps instead of sending them to landfill. Choose products with minimal packaging, repair items before replacing, and donate what you no longer need."}
+{"input": "how international relations affect trade /only:lex", "output": "lex: international relations trade policy tariffs\nlex: geopolitics trade agreements bilateral multilateral"}
+{"input": "how international relations affect trade /only:vec", "output": "vec: how do international political relationships influence global trade and tariffs\nvec: what is the connection between diplomacy and international trade policy"}
+{"input": "how international relations affect trade /only:hyde", "output": "hyde: Diplomatic relations directly shape trade flows through tariffs, sanctions, and trade agreements. Countries with strong bilateral ties negotiate favorable terms\u2014like the USMCA between the US, Mexico, and Canada\u2014while geopolitical tensions can trigger trade wars and export controls."}
+{"input": "what is business continuity planning /only:lex", "output": "lex: business continuity planning BCP disaster recovery\nlex: BCP risk assessment contingency plan"}
+{"input": "what is business continuity planning /only:vec", "output": "vec: what is a business continuity plan and why do organizations need one\nvec: how do companies create a business continuity plan for disaster recovery"}
+{"input": "what is business continuity planning /only:hyde", "output": "hyde: Business continuity planning (BCP) ensures an organization can maintain critical functions during and after a disruption. It includes risk assessment, identifying essential operations, establishing recovery time objectives, and defining procedures for communication, IT recovery, and alternate work sites."}
+{"input": "how to have a successful playdate? /only:lex", "output": "lex: playdate tips children toddler socializing\nlex: kids playdate activities hosting"}
+{"input": "how to have a successful playdate? /only:vec", "output": "vec: how to plan and host a successful playdate for young children\nvec: what tips help make a playdate fun and smooth for kids and parents"}
+{"input": "how to have a successful playdate? /only:hyde", "output": "hyde: Keep playdates short\u201490 minutes is ideal for toddlers. Prepare a few structured activities but allow free play. Put away special toys to avoid conflicts. Have snacks ready, discuss allergies with the other parent beforehand, and supervise without hovering."}
+{"input": "what are the major forms of poetry? /only:lex", "output": "lex: poetry forms types sonnet haiku epic\nlex: poetic forms verse structures literary"}
+{"input": "what are the major forms of poetry? /only:vec", "output": "vec: what are the main types and forms of poetry in literature\nvec: how do different poetry forms like sonnets, haiku, and free verse differ"}
+{"input": "what are the major forms of poetry? /only:hyde", "output": "hyde: Major poetic forms include the sonnet (14 lines, iambic pentameter), haiku (3 lines, 5-7-5 syllables), epic (long narrative), ballad (storytelling with rhyme), ode (lyrical praise), limerick (humorous five-line form), villanelle (19 lines with refrains), and free verse (no fixed structure)."}
+{"input": "when to plant tulip bulbs? /only:lex", "output": "lex: tulip bulbs planting time season fall\nlex: tulip bulb planting depth spacing"}
+{"input": "when to plant tulip bulbs? /only:vec", "output": "vec: what time of year should you plant tulip bulbs for spring blooms\nvec: when is the best season to plant tulips and how deep should the bulbs go"}
+{"input": "when to plant tulip bulbs? /only:hyde", "output": "hyde: Plant tulip bulbs in fall, 6-8 weeks before the ground freezes\u2014typically October to November in most zones. Set bulbs 6-8 inches deep, pointed end up, spaced 4-6 inches apart. They need a cold period of 12-16 weeks to bloom in spring."}
+{"input": "where to buy raised garden beds? /only:lex", "output": "lex: raised garden beds buy online store\nlex: raised bed garden kits cedar metal"}
+{"input": "where to buy raised garden beds? /only:vec", "output": "vec: where can I buy raised garden beds and what materials are best\nvec: what are the best places to purchase raised bed garden kits"}
+{"input": "where to buy raised garden beds? /only:hyde", "output": "hyde: Raised garden beds are available at Home Depot, Lowe's, and garden centers. Online retailers like Gardener's Supply, Amazon, and Birdies offer metal and cedar kits. Cedar is rot-resistant and long-lasting; galvanized steel beds are durable and modern-looking."}
+{"input": "how to plant a tree properly? /only:lex", "output": "lex: tree planting technique hole depth root ball\nlex: plant tree correctly mulch watering"}
+{"input": "how to plant a tree properly? /only:vec", "output": "vec: what is the correct way to plant a tree so it grows healthy\nvec: how deep and wide should the hole be when planting a new tree"}
+{"input": "how to plant a tree properly? /only:hyde", "output": "hyde: Dig a hole 2-3 times wider than the root ball but only as deep. Set the tree so the root flare sits at ground level. Backfill with native soil, water deeply, and apply 2-4 inches of mulch in a ring, keeping it away from the trunk to prevent rot."}
+{"input": "what is the role of enzymes in digestion /only:lex", "output": "lex: enzymes digestion amylase protease lipase\nlex: digestive enzymes stomach intestine breakdown"}
+{"input": "what is the role of enzymes in digestion /only:vec", "output": "vec: how do enzymes help break down food during the digestive process\nvec: what role do specific enzymes like amylase and protease play in digestion"}
+{"input": "what is the role of enzymes in digestion /only:hyde", "output": "hyde: Digestive enzymes catalyze the breakdown of macronutrients into absorbable units. Amylase in saliva and the pancreas breaks starch into sugars. Pepsin in the stomach cleaves proteins. Lipase from the pancreas breaks fats into fatty acids and glycerol in the small intestine."}
+{"input": "what to wear for rock climbing /only:lex", "output": "lex: rock climbing clothing gear outfit\nlex: climbing shoes harness chalk bag apparel"}
+{"input": "what to wear for rock climbing /only:vec", "output": "vec: what clothes and gear should you wear for indoor or outdoor rock climbing\nvec: what is the best clothing to wear when rock climbing for comfort and safety"}
+{"input": "what to wear for rock climbing /only:hyde", "output": "hyde: Wear stretchy, moisture-wicking pants or shorts that allow full range of motion. Choose a fitted athletic shirt\u2014avoid loose fabric that catches on holds. Climbing shoes should fit snugly. Bring a chalk bag for grip and a harness for roped routes."}
+{"input": "latest uses of bioinformatics in research /only:lex", "output": "lex: bioinformatics research applications 2025 2026\nlex: bioinformatics genomics proteomics computational biology"}
+{"input": "latest uses of bioinformatics in research /only:vec", "output": "vec: how is bioinformatics being used in current scientific research\nvec: what are the newest bioinformatics tools and applications in genomics and drug discovery"}
+{"input": "latest uses of bioinformatics in research /only:hyde", "output": "hyde: Recent bioinformatics advances include single-cell RNA sequencing analysis pipelines, AlphaFold-based protein structure prediction for drug targets, CRISPR off-target analysis algorithms, and large-scale metagenomic assembly for microbiome studies."}
+{"input": "how the scientific community addresses research bias /only:lex", "output": "lex: research bias scientific community peer review\nlex: scientific bias mitigation replication reproducibility"}
+{"input": "how the scientific community addresses research bias /only:vec", "output": "vec: how do scientists identify and reduce bias in research studies\nvec: what methods does the scientific community use to address research bias and ensure reproducibility"}
+{"input": "how the scientific community addresses research bias /only:hyde", "output": "hyde: To combat research bias, journals require pre-registration of study protocols, blinded peer review, and reporting of negative results. Replication studies verify findings. Statistical safeguards like p-value corrections and effect size reporting reduce publication bias."}
+{"input": "what is ethical dilemma in real life /only:lex", "output": "lex: ethical dilemma real life examples\nlex: moral dilemma everyday situations conflict"}
+{"input": "what is ethical dilemma in real life /only:vec", "output": "vec: what are examples of ethical dilemmas people face in everyday life\nvec: how do real-life ethical dilemmas force people to choose between conflicting values"}
+{"input": "what is ethical dilemma in real life /only:hyde", "output": "hyde: A common ethical dilemma is discovering a coworker falsifying expense reports\u2014report them and risk the relationship, or stay silent and condone dishonesty. Other examples include whistleblowing, end-of-life medical decisions, and allocating scarce resources during emergencies."}
+{"input": "best techniques for street photography /only:lex", "output": "lex: street photography techniques composition tips\nlex: street photography candid camera settings"}
+{"input": "best techniques for street photography /only:vec", "output": "vec: what are the best techniques for capturing compelling street photographs\nvec: how do street photographers take candid shots of people in public spaces"}
+{"input": "best techniques for street photography /only:hyde", "output": "hyde: Shoot at f/8 for deep depth of field and zone focus at 3 meters for quick candid shots. Use a 28mm or 35mm lens. Anticipate moments\u2014find good light or backgrounds and wait for subjects to enter the frame. Shoot from the hip to stay inconspicuous."}
+{"input": "how to become a researcher /only:lex", "output": "lex: become researcher academic career path\nlex: research career PhD graduate school publish"}
+{"input": "how to become a researcher /only:vec", "output": "vec: what steps do you need to take to become a professional researcher\nvec: how do you build a career in academic or scientific research"}
+{"input": "how to become a researcher /only:hyde", "output": "hyde: Start with an undergraduate degree in your field, seek research assistant positions, and publish early. Apply to graduate programs for a master's or PhD. Build a publication record, attend conferences, and network with established researchers. Postdoctoral positions lead to faculty or industry research roles."}
+{"input": "web socket /only:lex", "output": "lex: WebSocket protocol real-time connection\nlex: WebSocket API JavaScript server client\nlex: WebSocket vs HTTP persistent connection"}
+{"input": "web socket /only:vec", "output": "vec: how do WebSockets work for real-time bidirectional communication\nvec: how to implement a WebSocket connection between a client and server"}
+{"input": "web socket /only:hyde", "output": "hyde: WebSocket provides full-duplex communication over a single TCP connection. After an HTTP upgrade handshake, client and server can send messages in both directions without polling. Use `new WebSocket('ws://host/path')` on the client and a library like ws on the server."}
+{"input": "what is lean manufacturing /only:lex", "output": "lex: lean manufacturing Toyota production system\nlex: lean manufacturing waste reduction kaizen"}
+{"input": "what is lean manufacturing /only:vec", "output": "vec: what is lean manufacturing and what principles does it follow\nvec: how does lean manufacturing eliminate waste and improve production efficiency"}
+{"input": "what is lean manufacturing /only:hyde", "output": "hyde: Lean manufacturing, derived from the Toyota Production System, aims to minimize waste (muda) while maximizing value. Its five principles: define value from the customer's perspective, map the value stream, create flow, establish pull, and pursue perfection through continuous improvement (kaizen)."}
+{"input": "what are writing prompts? /only:lex", "output": "lex: writing prompts creative fiction ideas\nlex: writing prompts exercises journal story starters"}
+{"input": "what are writing prompts? /only:vec", "output": "vec: what are writing prompts and how do writers use them for inspiration\nvec: how do writing prompts help overcome writer's block and spark creativity"}
+{"input": "what are writing prompts? /only:hyde", "output": "hyde: Writing prompts are short scenarios, questions, or opening lines designed to spark creative writing. Examples: \"Write about a door that appeared overnight\" or \"Describe your earliest memory from a stranger's perspective.\" They help overcome writer's block and build a daily writing habit."}
+{"input": "how to capture bokeh effect /only:lex", "output": "lex: bokeh effect photography aperture lens\nlex: bokeh background blur shallow depth of field"}
+{"input": "how to capture bokeh effect /only:vec", "output": "vec: how to achieve a bokeh effect with blurred background in photography\nvec: what camera settings and lenses produce the best bokeh"}
+{"input": "how to capture bokeh effect /only:hyde", "output": "hyde: Use a wide aperture (f/1.4 to f/2.8) to create shallow depth of field. A fast prime lens like a 50mm f/1.8 or 85mm f/1.4 produces smooth bokeh. Increase the distance between subject and background, and get close to your subject for maximum blur."}
+{"input": "what is a controlled experiment /only:lex", "output": "lex: controlled experiment scientific method variables\nlex: control group experimental group independent variable"}
+{"input": "what is a controlled experiment /only:vec", "output": "vec: what is a controlled experiment and how does it work in science\nvec: how do scientists set up control and experimental groups in a controlled experiment"}
+{"input": "what is a controlled experiment /only:hyde", "output": "hyde: A controlled experiment tests a hypothesis by changing one independent variable while keeping all other conditions constant. The control group receives no treatment, while the experimental group does. Comparing outcomes isolates the effect of the variable being tested."}
+{"input": "what is telemedicine /only:lex", "output": "lex: telemedicine telehealth virtual doctor visit\nlex: telemedicine remote healthcare video consultation"}
+{"input": "what is telemedicine /only:vec", "output": "vec: what is telemedicine and how does it deliver healthcare remotely\nvec: how do patients use telemedicine for virtual doctor appointments"}
+{"input": "what is telemedicine /only:hyde", "output": "hyde: Telemedicine uses video calls, phone consultations, and remote monitoring to deliver healthcare without in-person visits. Patients can consult doctors from home for diagnoses, prescriptions, and follow-ups. It expanded rapidly during COVID-19 and now covers specialties from dermatology to psychiatry."}
+{"input": "what are the teachings of jainism /only:lex", "output": "lex: Jainism teachings principles ahimsa karma\nlex: Jain philosophy non-violence Mahavira"}
+{"input": "what are the teachings of jainism /only:vec", "output": "vec: what are the core teachings and beliefs of Jainism\nvec: what did Mahavira teach about non-violence and the path to liberation in Jainism"}
+{"input": "what are the teachings of jainism /only:hyde", "output": "hyde: Jainism, taught by Mahavira in the 6th century BCE, centers on ahimsa (non-violence), satya (truth), and aparigraha (non-attachment). Jains believe the soul is eternal, bound by karma accumulated through actions. Liberation (moksha) is achieved through right faith, right knowledge, and right conduct."}
+{"input": "what is sustainable living /only:lex", "output": "lex: sustainable living eco-friendly lifestyle\nlex: sustainable living reduce reuse recycle carbon footprint"}
+{"input": "what is sustainable living /only:vec", "output": "vec: what does sustainable living mean and how can people practice it\nvec: what are the key principles and habits of a sustainable lifestyle"}
+{"input": "what is sustainable living /only:hyde", "output": "hyde: Sustainable living means reducing your environmental impact by consuming fewer resources, choosing renewable energy, eating locally, minimizing waste, and favoring durable goods over disposable ones. It applies to housing, transportation, food, clothing, and daily consumption habits."}
+{"input": "xml parse /only:lex", "output": "lex: XML parser parsing library\nlex: XML DOM SAX parser programming\nlex: XML parse Python JavaScript Java"}
+{"input": "xml parse /only:vec", "output": "vec: how to parse XML documents programmatically in different languages\nvec: what are the common methods for reading and parsing XML files in code"}
+{"input": "xml parse /only:hyde", "output": "hyde: To parse XML in Python, use `xml.etree.ElementTree`: `tree = ET.parse('file.xml'); root = tree.getroot()`. For streaming large files, use SAX with `xml.sax`. In JavaScript, use `DOMParser` or libraries like `fast-xml-parser`."}
+{"input": "how does compound interest work /only:lex", "output": "lex: compound interest formula calculation rate\nlex: compound interest savings investment growth"}
+{"input": "how does compound interest work /only:vec", "output": "vec: how does compound interest grow money over time compared to simple interest\nvec: what is the formula for compound interest and how is it calculated"}
+{"input": "how does compound interest work /only:hyde", "output": "hyde: Compound interest is calculated on both the principal and accumulated interest. The formula is A = P(1 + r/n)^(nt), where P is principal, r is annual rate, n is compounding frequency, and t is time in years. Monthly compounding on $10,000 at 5% yields $16,470 after 10 years."}
+{"input": "what is the role of reason in ethics /only:lex", "output": "lex: reason ethics moral philosophy rationalism\nlex: reason morality Kant rational ethical judgment"}
+{"input": "what is the role of reason in ethics /only:vec", "output": "vec: what role does reason play in making moral and ethical decisions\nvec: how do philosophers like Kant argue that reason is the foundation of ethics"}
+{"input": "what is the role of reason in ethics /only:hyde", "output": "hyde: Kant held that reason alone can determine moral duty through the categorical imperative: act only according to maxims you could universalize. Rationalist ethics contrasts with sentimentalism (Hume), which grounds morality in emotion rather than rational deliberation."}
+{"input": "videography tips /only:lex", "output": "lex: videography tips filming techniques camera\nlex: video production shooting composition stabilization"}
+{"input": "videography tips /only:vec", "output": "vec: what are practical tips for improving videography and video shooting quality\nvec: how to shoot better video with camera movement, lighting, and composition techniques"}
+{"input": "videography tips /only:hyde", "output": "hyde: Stabilize shots with a gimbal or tripod. Follow the rule of thirds for framing. Shoot at 24fps for cinematic feel or 60fps for smooth slow motion. Use three-point lighting. Record clean audio separately with a lavalier or shotgun mic\u2014audio quality matters more than resolution."}
+{"input": "how to choose a daycare? /only:lex", "output": "lex: daycare choose selection criteria childcare\nlex: daycare center evaluation safety ratio"}
+{"input": "how to choose a daycare? /only:vec", "output": "vec: what should parents look for when choosing a daycare for their child\nvec: how to evaluate and compare daycare centers for quality and safety"}
+{"input": "how to choose a daycare? /only:hyde", "output": "hyde: Visit multiple centers and observe interactions between staff and children. Check the staff-to-child ratio (1:4 for infants is ideal), licensing status, cleanliness, and safety measures. Ask about daily routines, curriculum, discipline policies, and staff qualifications and turnover."}
+{"input": "how to replace car alternator? /only:lex", "output": "lex: replace car alternator DIY steps\nlex: alternator replacement belt removal installation"}
+{"input": "how to replace car alternator? /only:vec", "output": "vec: step-by-step instructions for replacing a car alternator yourself\nvec: how to remove and install a new alternator in a vehicle"}
+{"input": "how to replace car alternator? /only:hyde", "output": "hyde: Disconnect the negative battery terminal. Remove the serpentine belt by releasing the tensioner. Unplug the electrical connectors and unbolt the alternator. Install the new unit, reconnect the wiring, route the belt back on, and reconnect the battery. Test by checking voltage at 13.5-14.5V."}
+{"input": "how to create a youtube channel /only:lex", "output": "lex: create YouTube channel setup steps\nlex: YouTube channel start grow subscribers content"}
+{"input": "how to create a youtube channel /only:vec", "output": "vec: how to set up and launch a new YouTube channel from scratch\nvec: what steps do you need to take to create and grow a YouTube channel"}
+{"input": "how to create a youtube channel /only:hyde", "output": "hyde: Sign in to YouTube with a Google account, click Create a Channel, and choose your channel name. Upload a profile picture and banner. Write a channel description with keywords. Plan a content schedule, create your first video, and optimize titles, thumbnails, and tags for search."}
+{"input": "what is dualism in mind-body philosophy /only:lex", "output": "lex: mind-body dualism Descartes substance\nlex: dualism philosophy of mind mental physical"}
+{"input": "what is dualism in mind-body philosophy /only:vec", "output": "vec: what is mind-body dualism and how does Descartes explain the relationship between mind and body\nvec: how does dualism in philosophy argue that mind and body are separate substances"}
+{"input": "what is dualism in mind-body philosophy /only:hyde", "output": "hyde: Cartesian dualism, proposed by Ren\u00e9 Descartes, holds that mind and body are two distinct substances: res cogitans (thinking substance) and res extensa (extended substance). The mind is non-physical and conscious; the body is physical and mechanistic. Their interaction remains the central problem."}
+{"input": "what is cliffhanger? /only:lex", "output": "lex: cliffhanger literary device narrative suspense\nlex: cliffhanger ending story plot tension"}
+{"input": "what is cliffhanger? /only:vec", "output": "vec: what is a cliffhanger in storytelling and how does it create suspense\nvec: how do writers use cliffhangers to keep readers or viewers engaged"}
+{"input": "what is cliffhanger? /only:hyde", "output": "hyde: A cliffhanger is a narrative device that ends a chapter, episode, or story at a moment of high suspense, leaving the outcome unresolved. It compels the audience to continue reading or watching. The term originates from serialized fiction where characters were literally left hanging from cliffs."}
+{"input": "how to volunteer for civic initiatives /only:lex", "output": "lex: volunteer civic initiatives community service\nlex: volunteering local government community projects"}
+{"input": "how to volunteer for civic initiatives /only:vec", "output": "vec: how can someone find and volunteer for civic engagement and community initiatives\nvec: what are ways to get involved in local civic volunteer opportunities"}
+{"input": "how to volunteer for civic initiatives /only:hyde", "output": "hyde: Check your city's website or community board for volunteer openings on advisory committees, park cleanups, and voter registration drives. Organizations like VolunteerMatch and local nonprofits connect volunteers with civic projects. Attend town hall meetings to learn about current needs."}
+{"input": "how does hinduism view the divine cycle of creation? /only:lex", "output": "lex: Hinduism creation cycle Brahma Vishnu Shiva\nlex: Hindu cosmology srishti sthiti pralaya"}
+{"input": "how does hinduism view the divine cycle of creation? /only:vec", "output": "vec: how does Hinduism explain the cosmic cycle of creation, preservation, and destruction\nvec: what is the Hindu view of the divine cycle involving Brahma, Vishnu, and Shiva"}
+{"input": "how does hinduism view the divine cycle of creation? /only:hyde", "output": "hyde: In Hindu cosmology, creation is cyclical. Brahma creates the universe, Vishnu preserves it, and Shiva destroys it so it can be reborn. Each cycle spans a kalpa (4.32 billion years). The universe undergoes endless cycles of srishti (creation), sthiti (preservation), and pralaya (dissolution)."}
+{"input": "what is consequentialist ethics /only:lex", "output": "lex: consequentialism ethics utilitarianism outcomes\nlex: consequentialist moral theory consequences actions"}
+{"input": "what is consequentialist ethics /only:vec", "output": "vec: what is consequentialist ethics and how does it judge the morality of actions\nvec: how does consequentialism differ from deontological ethics in evaluating right and wrong"}
+{"input": "what is consequentialist ethics /only:hyde", "output": "hyde: Consequentialism judges actions solely by their outcomes. The most influential form, utilitarianism (Bentham, Mill), holds that the right action maximizes overall happiness or well-being. Unlike deontology, which focuses on duties and rules, consequentialism permits any action if the results are good."}
+{"input": "how to promote environmental awareness? /only:lex", "output": "lex: environmental awareness promotion education campaigns\nlex: promote environmental sustainability community outreach"}
+{"input": "how to promote environmental awareness? /only:vec", "output": "vec: how can individuals and organizations promote environmental awareness in their communities\nvec: what are effective strategies for raising public awareness about environmental issues"}
+{"input": "how to promote environmental awareness? /only:hyde", "output": "hyde: Organize community cleanups, host documentary screenings, and partner with schools for environmental education programs. Use social media campaigns with clear calls to action. Start a local recycling or composting initiative. Create informational signage at parks and public spaces."}
+{"input": "how to practice self-love /only:lex", "output": "lex: self-love self-care practices mental health\nlex: self-love habits self-compassion boundaries"}
+{"input": "how to practice self-love /only:vec", "output": "vec: what are practical ways to practice self-love and self-compassion daily\nvec: how to build self-love through healthy habits and positive self-talk"}
+{"input": "how to practice self-love /only:hyde", "output": "hyde: Practice self-love by setting boundaries, speaking to yourself with kindness, and prioritizing rest without guilt. Journal about what you appreciate about yourself. Replace self-criticism with curiosity: ask \"what do I need right now?\" instead of \"what's wrong with me?\""}
+{"input": "what is companion planting with vegetables /only:lex", "output": "lex: companion planting vegetables garden chart\nlex: companion planting tomato basil marigold"}
+{"input": "what is companion planting with vegetables /only:vec", "output": "vec: what is companion planting and which vegetables grow well together\nvec: how does companion planting benefit vegetable gardens and deter pests"}
+{"input": "what is companion planting with vegetables /only:hyde", "output": "hyde: Companion planting pairs vegetables that benefit each other. Basil planted near tomatoes repels aphids and may improve flavor. Marigolds deter nematodes around most vegetables. The Three Sisters\u2014corn, beans, and squash\u2014is a classic trio: corn supports beans, beans fix nitrogen, squash shades soil."}
+{"input": "how to set achievable goals? /only:lex", "output": "lex: set achievable goals SMART goal setting\nlex: goal setting strategy actionable realistic"}
+{"input": "how to set achievable goals? /only:vec", "output": "vec: how to set realistic and achievable goals using the SMART framework\nvec: what techniques help people set goals they can actually accomplish"}
+{"input": "how to set achievable goals? /only:hyde", "output": "hyde: Use the SMART framework: Specific (define exactly what you want), Measurable (quantify progress), Achievable (within your capabilities), Relevant (aligned with larger objectives), Time-bound (set a deadline). Break large goals into weekly milestones and track progress visually."}
+{"input": "how do scientists study animal behavior /only:lex", "output": "lex: animal behavior study ethology methods\nlex: animal behavior research observation field experiments"}
+{"input": "how do scientists study animal behavior /only:vec", "output": "vec: what methods do scientists use to study and analyze animal behavior\nvec: how do ethologists observe and research animal behavior in the wild and in labs"}
+{"input": "how do scientists study animal behavior /only:hyde", "output": "hyde: Ethologists use direct observation, video tracking, and GPS telemetry to study animal behavior in natural habitats. Lab experiments control variables to test hypotheses about cognition and social behavior. Focal sampling follows one individual; scan sampling records group behavior at intervals."}
+{"input": "how to maintain motivation through challenges? /only:lex", "output": "lex: maintain motivation challenges resilience\nlex: staying motivated difficult times strategies"}
+{"input": "how to maintain motivation through challenges? /only:vec", "output": "vec: how to stay motivated when facing setbacks and difficult challenges\nvec: what strategies help maintain motivation during tough periods in life or work"}
+{"input": "how to maintain motivation through challenges? /only:hyde", "output": "hyde: Break the challenge into small wins to maintain a sense of progress. Revisit your original purpose\u2014why did you start? Celebrate incremental achievements. Build accountability through a partner or group. Accept setbacks as data rather than failure, and adjust your approach rather than your goal."}
+{"input": "what is the philosophy of mind /only:lex", "output": "lex: philosophy of mind consciousness mental states\nlex: philosophy of mind problem qualia dualism physicalism"}
+{"input": "what is the philosophy of mind /only:vec", "output": "vec: what is the philosophy of mind and what questions does it explore\nvec: how does philosophy of mind address consciousness, mental states, and the mind-body problem"}
+{"input": "what is the philosophy of mind /only:hyde", "output": "hyde: Philosophy of mind investigates the nature of consciousness, mental states, and their relationship to the physical brain. Central questions include the hard problem of consciousness (why subjective experience exists), whether mental states reduce to brain states, and the nature of intentionality and qualia."}
+{"input": "enum class /only:lex", "output": "lex: enum class C++ Java strongly typed\nlex: enum class Python enumeration members\nlex: enum class scoped enumeration"}
+{"input": "enum class /only:vec", "output": "vec: how to define and use enum classes in C++ or Java for type-safe enumerations\nvec: what is the difference between an enum and an enum class in C++"}
+{"input": "enum class /only:hyde", "output": "hyde: In C++11, `enum class` creates a scoped, strongly typed enumeration. Unlike plain enums, values don't implicitly convert to int and must be accessed with the scope operator: `enum class Color { Red, Green, Blue }; Color c = Color::Red;`"}
+{"input": "how to sell art on etsy? /only:lex", "output": "lex: sell art Etsy shop setup listing\nlex: Etsy art shop pricing shipping prints"}
+{"input": "how to sell art on etsy? /only:vec", "output": "vec: how to set up an Etsy shop to sell original art and prints\nvec: what tips help artists successfully sell artwork on Etsy"}
+{"input": "how to sell art on etsy? /only:hyde", "output": "hyde: Create an Etsy seller account and set up your shop with a clear brand name and banner. Photograph art in natural light with a neutral background. Write detailed listings with keywords buyers search for. Price to cover materials, time, Etsy fees (6.5%), and shipping. Offer prints alongside originals."}
+{"input": "what is virtue epistemology /only:lex", "output": "lex: virtue epistemology intellectual virtues knowledge\nlex: virtue epistemology Sosa Zagzebski epistemic"}
+{"input": "what is virtue epistemology /only:vec", "output": "vec: what is virtue epistemology and how does it differ from traditional theories of knowledge\nvec: how does virtue epistemology evaluate knowledge based on intellectual character traits"}
+{"input": "what is virtue epistemology /only:hyde", "output": "hyde: Virtue epistemology evaluates beliefs based on the intellectual character of the knower rather than just the properties of the belief. Ernest Sosa's reliabilism treats virtues as reliable cognitive faculties; Linda Zagzebski's responsibilism focuses on traits like open-mindedness, intellectual courage, and thoroughness."}
+{"input": "what is ethical egoism /only:lex", "output": "lex: ethical egoism moral theory self-interest\nlex: ethical egoism Ayn Rand rational selfishness"}
+{"input": "what is ethical egoism /only:vec", "output": "vec: what is ethical egoism and how does it differ from psychological egoism\nvec: how does ethical egoism argue that acting in self-interest is morally right"}
+{"input": "what is ethical egoism /only:hyde", "output": "hyde: Ethical egoism holds that agents ought to act in their own self-interest. Unlike psychological egoism (a descriptive claim that people always act selfishly), ethical egoism is normative\u2014it prescribes self-interest as the moral standard. Ayn Rand's rational self-interest is a well-known variant."}
+{"input": "tech fix /only:lex", "output": "lex: tech troubleshooting fix repair computer\nlex: technology fix common problems software hardware\nlex: tech support fix device issue"}
+{"input": "tech fix /only:vec", "output": "vec: how to troubleshoot and fix common technology problems with computers and devices\nvec: what are basic tech fixes for common software and hardware issues"}
+{"input": "tech fix /only:hyde", "output": "hyde: Start with a restart\u2014it resolves most transient issues. Clear browser cache for web problems. Check cables and connections for hardware failures. Update drivers and firmware. For persistent crashes, check event logs and run diagnostics. Factory reset as a last resort after backing up data."}
+{"input": "how to evaluate scientific sources /only:lex", "output": "lex: evaluate scientific sources credibility peer-reviewed\nlex: scientific source evaluation criteria journal"}
+{"input": "how to evaluate scientific sources /only:vec", "output": "vec: how to evaluate whether a scientific source or study is credible and reliable\nvec: what criteria should you use to assess the quality of scientific research papers"}
+{"input": "how to evaluate scientific sources /only:hyde", "output": "hyde: Check if the study is published in a peer-reviewed journal with an impact factor. Examine the sample size, methodology, and statistical analysis. Look for conflicts of interest in funding disclosures. Verify the authors' credentials and institutional affiliations. Check citation count and whether results have been replicated."}
+{"input": "what is taoism /only:lex", "output": "lex: Taoism Daoism Lao Tzu Tao Te Ching\nlex: Taoism philosophy wu wei yin yang"}
+{"input": "what is taoism /only:vec", "output": "vec: what are the core beliefs and principles of Taoism\nvec: what did Lao Tzu teach in the Tao Te Ching about the way and harmony with nature"}
+{"input": "what is taoism /only:hyde", "output": "hyde: Taoism (Daoism) is a Chinese philosophical and spiritual tradition rooted in the Tao Te Ching by Lao Tzu. The Tao (\"the Way\") is the fundamental, nameless force underlying all things. Core concepts include wu wei (effortless action), yin-yang balance, simplicity, and harmony with nature."}
+{"input": "how neural networks function /only:lex", "output": "lex: neural network layers neurons weights backpropagation\nlex: neural network deep learning forward pass activation"}
+{"input": "how neural networks function /only:vec", "output": "vec: how do artificial neural networks process data and learn from training\nvec: what is the architecture and learning mechanism of a neural network"}
+{"input": "how neural networks function /only:hyde", "output": "hyde: A neural network processes input through layers of interconnected neurons. Each neuron computes a weighted sum of its inputs, applies an activation function (ReLU, sigmoid), and passes the result forward. Training uses backpropagation to adjust weights by computing gradients of the loss function."}
+{"input": "how to maintain a bonsai tree? /only:lex", "output": "lex: bonsai tree care maintenance watering pruning\nlex: bonsai trimming repotting soil fertilizer"}
+{"input": "how to maintain a bonsai tree? /only:vec", "output": "vec: how to properly care for and maintain a bonsai tree at home\nvec: what are the watering, pruning, and soil requirements for bonsai trees"}
+{"input": "how to maintain a bonsai tree? /only:hyde", "output": "hyde: Water bonsai when the top half-inch of soil feels dry\u2014never on a schedule. Place in bright indirect light for indoor species or full sun for outdoor varieties. Prune new growth to maintain shape. Repot every 2-3 years in spring using well-draining akadama-based soil. Fertilize biweekly during growing season."}
+{"input": "what role does language play in philosophy /only:lex", "output": "lex: language philosophy linguistic turn Wittgenstein\nlex: philosophy of language meaning reference semantics"}
+{"input": "what role does language play in philosophy /only:vec", "output": "vec: what role does language play in philosophical inquiry and analysis\nvec: how did Wittgenstein and analytic philosophers view the relationship between language and thought"}
+{"input": "what role does language play in philosophy /only:hyde", "output": "hyde: The linguistic turn of the 20th century made language central to philosophy. Wittgenstein argued that philosophical problems arise from misunderstandings of language. Analytic philosophers examine how meaning, reference, and truth conditions work. Ordinary language philosophy holds that everyday usage resolves many metaphysical puzzles."}
+{"input": "how to fight pests organically /only:lex", "output": "lex: organic pest control garden insects\nlex: organic pesticide neem oil insecticidal soap"}
+{"input": "how to fight pests organically /only:vec", "output": "vec: how to control garden pests using organic and natural methods\nvec: what organic pest control methods work for vegetable gardens"}
+{"input": "how to fight pests organically /only:hyde", "output": "hyde: Spray neem oil or insecticidal soap to kill soft-bodied pests like aphids and whiteflies. Introduce beneficial insects: ladybugs eat aphids, parasitic wasps target caterpillars. Use row covers to physically exclude pests. Apply diatomaceous earth around plant bases for slugs and beetles."}
+{"input": "what is the role of research institutions /only:lex", "output": "lex: research institutions universities role science\nlex: research institutions funding labs innovation"}
+{"input": "what is the role of research institutions /only:vec", "output": "vec: what role do research institutions and universities play in advancing science\nvec: how do research institutions contribute to knowledge creation and innovation"}
+{"input": "what is the role of research institutions /only:hyde", "output": "hyde: Research institutions\u2014universities, government labs, and private research organizations\u2014drive scientific progress through funded investigations, peer-reviewed publications, and training of new researchers. They provide infrastructure (labs, equipment, libraries), facilitate collaboration, and translate findings into real-world applications."}
+{"input": "what is narrative ethics /only:lex", "output": "lex: narrative ethics storytelling moral philosophy\nlex: narrative ethics literature moral reasoning"}
+{"input": "what is narrative ethics /only:vec", "output": "vec: what is narrative ethics and how does storytelling relate to moral understanding\nvec: how do narrative ethicists use stories and literature to explore moral questions"}
+{"input": "what is narrative ethics /only:hyde", "output": "hyde: Narrative ethics holds that moral understanding is shaped by the stories we tell and hear. Rather than abstract principles, it emphasizes particular cases and lived experience. Literature, patient narratives in medicine, and personal testimony illuminate moral complexity that rules-based ethics may miss."}
+{"input": "ai ops /only:lex", "output": "lex: AIOps artificial intelligence IT operations\nlex: AIOps monitoring anomaly detection automation\nlex: AIOps MLOps machine learning operations"}
+{"input": "ai ops /only:vec", "output": "vec: what is AIOps and how does AI improve IT operations management\nvec: how do AIOps platforms use machine learning for monitoring and incident response"}
+{"input": "ai ops /only:hyde", "output": "hyde: AIOps (Artificial Intelligence for IT Operations) applies machine learning to IT operations data\u2014logs, metrics, events\u2014to detect anomalies, predict outages, and automate incident response. Platforms like Datadog, Splunk, and Moogsoft correlate alerts to reduce noise and speed up root cause analysis."}
+{"input": "how to negotiate a business deal /only:lex", "output": "lex: negotiate business deal tactics strategy\nlex: business negotiation skills contract terms"}
+{"input": "how to negotiate a business deal /only:vec", "output": "vec: what are effective strategies for negotiating a business deal successfully\nvec: how to prepare for and conduct a business negotiation to reach a favorable agreement"}
+{"input": "how to negotiate a business deal /only:hyde", "output": "hyde: Prepare by researching the other party's priorities and constraints. Define your BATNA (best alternative to a negotiated agreement) and walk-away point. Open with an ambitious but defensible anchor. Listen more than you talk. Focus on interests, not positions, to find creative win-win solutions."}
+{"input": "how to protest peacefully /only:lex", "output": "lex: peaceful protest demonstration rights organizing\nlex: nonviolent protest civil disobedience activism"}
+{"input": "how to protest peacefully /only:vec", "output": "vec: how to organize and participate in a peaceful protest effectively\nvec: what are the principles and logistics of peaceful demonstration and nonviolent activism"}
+{"input": "how to protest peacefully /only:hyde", "output": "hyde: Know your rights: peaceful assembly is protected by the First Amendment. Organize with clear goals, designated marshals, and a planned route. Coordinate with local authorities for permits. Bring water, ID, and emergency contacts. Stay nonviolent, document with video, and have legal observers present."}
+{"input": "how to start oil painting? /only:lex", "output": "lex: oil painting beginner supplies techniques\nlex: oil painting start canvas brushes paints medium"}
+{"input": "how to start oil painting? /only:vec", "output": "vec: how to get started with oil painting as a beginner\nvec: what supplies and techniques do beginners need to start oil painting"}
+{"input": "how to start oil painting? /only:hyde", "output": "hyde: Start with a basic set of oil paints: titanium white, cadmium yellow, cadmium red, ultramarine blue, and burnt umber. Use medium-grade bristle brushes in sizes 4, 8, and 12. Work on pre-primed canvas. Thin early layers with odorless mineral spirits and use linseed oil for later layers (fat over lean)."}
+{"input": "what is the significance of archetypes? /only:lex", "output": "lex: archetypes Carl Jung collective unconscious\nlex: archetypes significance literature psychology"}
+{"input": "what is the significance of archetypes? /only:vec", "output": "vec: what is the significance of archetypes in psychology and literature\nvec: how did Carl Jung define archetypes and why do they appear across cultures"}
+{"input": "what is the significance of archetypes? /only:hyde", "output": "hyde: Carl Jung described archetypes as universal, inherited patterns in the collective unconscious\u2014the Hero, the Shadow, the Trickster, the Great Mother. They recur across myths, dreams, and stories worldwide because they reflect fundamental human experiences and psychological structures shared by all cultures."}
+{"input": "how to mix colors in oil painting? /only:lex", "output": "lex: oil painting color mixing palette technique\nlex: mix oil paint colors complementary warm cool"}
+{"input": "how to mix colors in oil painting? /only:vec", "output": "vec: how to mix oil paint colors to achieve the right hues and values\nvec: what is the proper technique for blending and mixing colors in oil painting"}
+{"input": "how to mix colors in oil painting? /only:hyde", "output": "hyde: Mix on a glass or wood palette using a palette knife for clean blends. Start with the lighter color and add the darker one gradually. To mute a color, mix in its complement: add green to red, purple to yellow. Mix value (light/dark) separately from hue for better control."}
+{"input": "how do different religions define good and evil? /only:lex", "output": "lex: good evil religion definition theology\nlex: good evil Christianity Islam Buddhism Hinduism"}
+{"input": "how do different religions define good and evil? /only:vec", "output": "vec: how do different world religions define and explain the concepts of good and evil\nvec: what are the religious perspectives on good versus evil across Christianity, Islam, Buddhism, and Hinduism"}
+{"input": "how do different religions define good and evil? /only:hyde", "output": "hyde: Christianity frames evil as separation from God through sin, with goodness as alignment with divine will. Islam teaches that evil arises from disobeying Allah's commands. Buddhism sees evil as rooted in ignorance, greed, and hatred rather than a cosmic force. Hinduism links good and evil to dharma and karma."}
+{"input": "sail boat /only:lex", "output": "lex: sailboat sailing types rigging\nlex: sailboat buy beginner learn to sail\nlex: sailboat parts hull keel mast"}
+{"input": "sail boat /only:vec", "output": "vec: what are the different types of sailboats and how do they work\nvec: how to get started with sailboat sailing as a beginner"}
+{"input": "sail boat /only:hyde", "output": "hyde: Sailboats are propelled by wind acting on sails. Common types include dinghies (small, single-hull), keelboats (weighted keel for stability), catamarans (twin hulls), and sloops (single mast, fore-and-aft rigged). Key parts include the hull, mast, boom, jib, mainsail, rudder, and keel."}
+{"input": "how crispr technology works /only:lex", "output": "lex: CRISPR Cas9 gene editing mechanism\nlex: CRISPR technology DNA guide RNA"}
+{"input": "how crispr technology works /only:vec", "output": "vec: how does CRISPR-Cas9 gene editing technology work at the molecular level\nvec: what is the mechanism by which CRISPR cuts and edits DNA sequences"}
+{"input": "how crispr technology works /only:hyde", "output": "hyde: CRISPR-Cas9 uses a guide RNA (gRNA) complementary to the target DNA sequence. The gRNA directs the Cas9 nuclease to the precise genomic location, where it creates a double-strand break. The cell's repair machinery then either disrupts the gene (NHEJ) or inserts a new sequence (HDR) using a provided template."}
+{"input": "hair cut /only:lex", "output": "lex: haircut styles men women trends\nlex: haircut salon barbershop near me\nlex: haircut techniques layered fade trim"}
+{"input": "hair cut /only:vec", "output": "vec: what are the popular haircut styles and how to choose the right one\nvec: how to communicate what haircut you want to a stylist or barber"}
+{"input": "hair cut /only:hyde", "output": "hyde: Popular haircuts include the bob, pixie cut, and layers for women, and the fade, crew cut, and textured crop for men. Choose based on face shape: round faces suit angular cuts, long faces benefit from volume at the sides. Bring reference photos to your appointment for clear communication."}
+{"input": "how to develop an art portfolio? /only:lex", "output": "lex: art portfolio development pieces selection\nlex: art portfolio presentation layout artist"}
+{"input": "how to develop an art portfolio? /only:vec", "output": "vec: how to build a strong art portfolio for school applications or professional work\nvec: what should an art portfolio include and how should it be organized"}
+{"input": "how to develop an art portfolio? /only:hyde", "output": "hyde: Select 15-20 of your strongest, most cohesive pieces that demonstrate range and skill. Open and close with your best work. Show process sketches alongside finished pieces. Use consistent, high-quality photography. For digital portfolios, use platforms like Behance or a personal website with clean navigation."}
+{"input": "what is atmospheric science /only:lex", "output": "lex: atmospheric science meteorology climate weather\nlex: atmospheric science atmosphere composition dynamics"}
+{"input": "what is atmospheric science /only:vec", "output": "vec: what is atmospheric science and what topics does it study\nvec: how does atmospheric science explain weather, climate, and the Earth's atmosphere"}
+{"input": "what is atmospheric science /only:hyde", "output": "hyde: Atmospheric science studies the Earth's atmosphere\u2014its composition, structure, and dynamics. Sub-fields include meteorology (weather forecasting), climatology (long-term patterns), atmospheric chemistry (ozone, pollutants), and atmospheric physics (radiation, cloud formation). It underpins weather prediction and climate change research."}
+{"input": "how to apply for a mortgage /only:lex", "output": "lex: mortgage application process requirements\nlex: apply mortgage home loan pre-approval credit score"}
+{"input": "how to apply for a mortgage /only:vec", "output": "vec: what are the steps to apply for a home mortgage loan\nvec: how to prepare your finances and documents to apply for a mortgage"}
+{"input": "how to apply for a mortgage /only:hyde", "output": "hyde: Check your credit score (aim for 620+, 740+ for best rates). Save for a down payment of 3-20%. Get pre-approved with a lender by submitting W-2s, pay stubs, bank statements, and tax returns. Compare rates from multiple lenders. Once you find a home, submit the full application and await underwriting."}
+{"input": "how to analyze political polls /only:lex", "output": "lex: political poll analysis methodology\nlex: polling data interpretation margin error\nlex: election survey statistics"}
+{"input": "how to analyze political polls /only:vec", "output": "vec: what methods are used to analyze and interpret political polling data\nvec: how to evaluate the accuracy and reliability of election polls\nvec: understanding margin of error and sample size in political surveys"}
+{"input": "how to analyze political polls /only:hyde", "output": "hyde: To analyze a political poll, start by examining the sample size, methodology, and margin of error. A poll of 1,000 likely voters with a \u00b13% margin means the true value falls within that range 95% of the time. Compare results across multiple polls using polling averages to reduce noise."}
+{"input": "how does the body maintain homeostasis /only:lex", "output": "lex: homeostasis regulation human body\nlex: negative feedback loop physiology\nlex: body temperature pH blood glucose regulation"}
+{"input": "how does the body maintain homeostasis /only:vec", "output": "vec: what mechanisms does the human body use to maintain internal stability\nvec: how do feedback loops help regulate body temperature and blood sugar levels"}
+{"input": "how does the body maintain homeostasis /only:hyde", "output": "hyde: The body maintains homeostasis through negative feedback loops. When blood glucose rises after a meal, the pancreas releases insulin, signaling cells to absorb glucose. When body temperature drops, the hypothalamus triggers shivering and vasoconstriction to conserve heat."}
+{"input": "how to transplant seedlings? /only:lex", "output": "lex: transplant seedlings garden\nlex: seedling hardening off repotting\nlex: moving seedlings outdoors soil"}
+{"input": "how to transplant seedlings? /only:vec", "output": "vec: what is the correct process for transplanting seedlings from pots into the garden\nvec: when and how should you harden off and transplant young plants outdoors"}
+{"input": "how to transplant seedlings? /only:hyde", "output": "hyde: Transplant seedlings after hardening them off for 7-10 days. Dig a hole slightly larger than the root ball, gently remove the seedling from its pot, and place it at the same depth it was growing. Water thoroughly and mulch around the base to retain moisture."}
+{"input": "how to interpret graphs and charts /only:lex", "output": "lex: reading graphs charts data visualization\nlex: interpret bar line pie chart\nlex: graph axis scale data trends"}
+{"input": "how to interpret graphs and charts /only:vec", "output": "vec: how do you read and interpret different types of graphs and charts correctly\nvec: what should you look for when analyzing data presented in visual charts"}
+{"input": "how to interpret graphs and charts /only:hyde", "output": "hyde: To interpret a graph, first read the title and axis labels to understand what is being measured. Identify the scale and units. For line charts, look at trends over time. For bar charts, compare heights across categories. Always check whether the y-axis starts at zero, as truncated axes can exaggerate differences."}
+{"input": "how to start a sketchbook? /only:lex", "output": "lex: sketchbook practice beginner drawing\nlex: daily sketching habit art journal\nlex: first sketchbook tips supplies"}
+{"input": "how to start a sketchbook? /only:vec", "output": "vec: how do beginners start and maintain a regular sketchbook practice\nvec: what supplies and techniques should you use when starting your first sketchbook"}
+{"input": "how to start a sketchbook? /only:hyde", "output": "hyde: Start your sketchbook by choosing a book with paper weight of at least 80gsm. Begin with simple observational drawings of everyday objects. Draw for 10-15 minutes daily without worrying about perfection. Use pencil, pen, or whatever feels comfortable. Date each page to track your progress."}
+{"input": "what are the main teachings of jainism? /only:lex", "output": "lex: jainism core teachings principles\nlex: ahimsa anekantavada aparigraha jain\nlex: jain dharma beliefs nonviolence"}
+{"input": "what are the main teachings of jainism? /only:vec", "output": "vec: what are the central beliefs and philosophical teachings of Jainism\nvec: how do Jain principles like ahimsa and anekantavada guide ethical living"}
+{"input": "what are the main teachings of jainism? /only:hyde", "output": "hyde: Jainism teaches three core principles: ahimsa (nonviolence toward all living beings), anekantavada (many-sidedness of truth), and aparigraha (non-attachment to possessions). The path to liberation involves the Three Jewels: right faith, right knowledge, and right conduct. Jains practice strict vegetarianism and asceticism."}
+{"input": "how to choose curtains for living room /only:lex", "output": "lex: living room curtain selection fabric\nlex: curtain length style window treatment\nlex: drapes color pattern room decor"}
+{"input": "how to choose curtains for living room /only:vec", "output": "vec: how do you choose the right curtains for a living room based on style and function\nvec: what curtain fabric length and color work best for different living room windows"}
+{"input": "how to choose curtains for living room /only:hyde", "output": "hyde: Choose curtains that hang 1-2 inches above the floor for a polished look. For a small living room, use light-colored sheer fabrics to maximize natural light. Mount the curtain rod 4-6 inches above the window frame and extend it 3-8 inches beyond each side to make windows appear larger."}
+{"input": "how to take macro photos /only:lex", "output": "lex: macro photography technique close-up\nlex: macro lens focus stacking lighting\nlex: close-up photography camera settings"}
+{"input": "how to take macro photos /only:vec", "output": "vec: what camera settings and equipment do you need for macro photography\nvec: how to achieve sharp focus and good lighting in close-up macro shots"}
+{"input": "how to take macro photos /only:hyde", "output": "hyde: For macro photography, use a dedicated macro lens (60mm or 100mm) or extension tubes. Set your aperture to f/8-f/16 for sufficient depth of field. Use a tripod and remote shutter to eliminate camera shake. Focus stacking\u2014taking multiple shots at different focus distances\u2014produces sharp images throughout the subject."}
+{"input": "how to write a query letter? /only:lex", "output": "lex: query letter writing literary agent\nlex: book manuscript submission query format\nlex: query letter hook synopsis comp titles"}
+{"input": "how to write a query letter? /only:vec", "output": "vec: how do you write an effective query letter to a literary agent for your novel\nvec: what structure and elements should a query letter include for book submissions"}
+{"input": "how to write a query letter? /only:hyde", "output": "hyde: A query letter has three paragraphs: the hook (a compelling one-sentence pitch), the mini-synopsis (250 words covering the protagonist, conflict, and stakes), and the bio (your credentials and comp titles). Address the agent by name, mention why you chose them, and keep the entire letter under one page."}
+{"input": "what are plasmids /only:lex", "output": "lex: plasmid DNA circular extrachromosomal\nlex: plasmid bacteria gene transfer cloning\nlex: plasmid vector molecular biology"}
+{"input": "what are plasmids /only:vec", "output": "vec: what are plasmids and what role do they play in bacterial genetics\nvec: how are plasmids used as vectors in molecular biology and genetic engineering"}
+{"input": "what are plasmids /only:hyde", "output": "hyde: Plasmids are small, circular, double-stranded DNA molecules found in bacteria that replicate independently of chromosomal DNA. They often carry genes for antibiotic resistance. In genetic engineering, plasmids serve as vectors to insert foreign genes into host cells for cloning and protein expression."}
+{"input": "how do scientists accurately measure time /only:lex", "output": "lex: atomic clock time measurement precision\nlex: cesium clock seconds SI definition\nlex: timekeeping scientific instruments"}
+{"input": "how do scientists accurately measure time /only:vec", "output": "vec: how do atomic clocks and other instruments allow scientists to measure time with extreme precision\nvec: what is the scientific definition of a second and how is it measured"}
+{"input": "how do scientists accurately measure time /only:hyde", "output": "hyde: The SI second is defined by the cesium-133 atom, which oscillates 9,192,631,770 times per second. Atomic clocks use this transition frequency to achieve accuracy within one second over millions of years. Optical lattice clocks using strontium atoms are even more precise, losing less than one second over the age of the universe."}
+{"input": "how to build a professional network? /only:lex", "output": "lex: professional networking career connections\nlex: LinkedIn networking events industry contacts\nlex: building professional relationships mentorship"}
+{"input": "how to build a professional network? /only:vec", "output": "vec: what are effective strategies for building and maintaining a professional network\nvec: how can attending events and using LinkedIn help grow your career network"}
+{"input": "how to build a professional network? /only:hyde", "output": "hyde: Build your professional network by attending industry conferences, joining professional associations, and engaging on LinkedIn. Follow up within 48 hours of meeting someone new. Offer value before asking for favors\u2014share articles, make introductions, or provide feedback. Schedule regular coffee chats to maintain relationships."}
+{"input": "what is the significance of sacred symbols? /only:lex", "output": "lex: sacred symbols religious meaning\nlex: spiritual symbols cross om menorah lotus\nlex: religious iconography symbolism significance"}
+{"input": "what is the significance of sacred symbols? /only:vec", "output": "vec: what role do sacred symbols play in religious and spiritual traditions\nvec: how do symbols like the cross, om, and menorah carry meaning in their respective faiths"}
+{"input": "what is the significance of sacred symbols? /only:hyde", "output": "hyde: Sacred symbols serve as tangible expressions of spiritual truths across religions. The Christian cross represents sacrifice and redemption, the Hindu Om embodies the primordial sound of creation, and the Jewish menorah symbolizes divine light. These symbols anchor believers' faith and create shared identity within communities."}
+{"input": "how to succeed in a digital marketing career? /only:lex", "output": "lex: digital marketing career skills\nlex: SEO social media analytics marketing job\nlex: digital marketing certifications portfolio"}
+{"input": "how to succeed in a digital marketing career? /only:vec", "output": "vec: what skills and experience do you need to build a successful digital marketing career\nvec: how to get started in digital marketing and advance to senior roles"}
+{"input": "how to succeed in a digital marketing career? /only:hyde", "output": "hyde: A digital marketing career requires proficiency in SEO, paid advertising (Google Ads, Meta Ads), content marketing, email marketing, and analytics tools like Google Analytics. Build a portfolio with real campaigns. Earn certifications from Google, HubSpot, or Meta. Entry-level roles include marketing coordinator or social media specialist."}
+{"input": "how to plan a trip to europe? /only:lex", "output": "lex: Europe trip planning itinerary budget\nlex: European travel visa flights accommodations\nlex: backpacking Europe route booking tips"}
+{"input": "how to plan a trip to europe? /only:vec", "output": "vec: how do you plan and budget for a multi-country trip across Europe\nvec: what are the steps for organizing flights, accommodations, and itineraries for European travel"}
+{"input": "how to plan a trip to europe? /only:hyde", "output": "hyde: Plan your Europe trip 3-6 months ahead. Book flights early for the best fares. Get a Eurail pass if visiting 3+ countries. Budget \u20ac50-150/day depending on the country. Book accommodations on Booking.com or Hostelworld. Check visa requirements\u2014US citizens can stay 90 days in the Schengen Area without a visa."}
+{"input": "how machine learning influences businesses /only:lex", "output": "lex: machine learning business applications\nlex: ML AI enterprise automation prediction\nlex: machine learning revenue customer analytics"}
+{"input": "how machine learning influences businesses /only:vec", "output": "vec: how are businesses using machine learning to improve operations and decision-making\nvec: what impact does machine learning have on business revenue and efficiency"}
+{"input": "how machine learning influences businesses /only:hyde", "output": "hyde: Machine learning transforms businesses through demand forecasting, customer churn prediction, fraud detection, and recommendation engines. Retailers use ML to optimize pricing and inventory. Banks deploy ML models for credit scoring. Companies using ML-driven analytics report 5-10% increases in revenue through personalized marketing."}
+{"input": "what are the main characteristics of memoirs? /only:lex", "output": "lex: memoir characteristics literary genre\nlex: memoir vs autobiography personal narrative\nlex: memoir writing elements structure"}
+{"input": "what are the main characteristics of memoirs? /only:vec", "output": "vec: what distinguishes a memoir from other forms of autobiographical writing\nvec: what are the key literary features and structure of a memoir"}
+{"input": "what are the main characteristics of memoirs? /only:hyde", "output": "hyde: A memoir focuses on a specific theme or period in the author's life, unlike an autobiography which covers an entire life chronologically. Key characteristics include a first-person narrative voice, emotional honesty, reflection on personal growth, vivid sensory details, and a thematic arc that gives the story universal resonance."}
+{"input": "how do sikhs practice their faith /only:lex", "output": "lex: Sikh faith practices worship\nlex: gurdwara langar five Ks Sikhism\nlex: Sikh prayer Guru Granth Sahib"}
+{"input": "how do sikhs practice their faith /only:vec", "output": "vec: what are the daily religious practices and rituals observed by Sikhs\nvec: how do Sikhs worship in the gurdwara and observe the five Ks"}
+{"input": "how do sikhs practice their faith /only:hyde", "output": "hyde: Sikhs practice their faith through daily prayers (Nitnem), including Japji Sahib at dawn. They worship at the gurdwara, where the Guru Granth Sahib is read aloud. Baptized Sikhs wear the five Ks: kesh (uncut hair), kangha (comb), kara (steel bracelet), kachera (undergarment), and kirpan (ceremonial sword). Langar, the communal kitchen, serves free meals to all visitors."}
+{"input": "what are the foundations of feminist ethics /only:lex", "output": "lex: feminist ethics care theory foundations\nlex: feminist moral philosophy gender justice\nlex: ethics of care Gilligan Noddings feminist"}
+{"input": "what are the foundations of feminist ethics /only:vec", "output": "vec: what are the core principles and philosophical foundations of feminist ethics\nvec: how does feminist ethics differ from traditional moral philosophy in its approach to care and justice"}
+{"input": "what are the foundations of feminist ethics /only:hyde", "output": "hyde: Feminist ethics emerged from Carol Gilligan's critique of Kohlberg's moral development theory, arguing that women's moral reasoning emphasizes care and relationships rather than abstract principles of justice. Nel Noddings developed the ethics of care, centering moral life on attentiveness, responsibility, and responsiveness to the needs of particular others."}
+{"input": "how do antibiotics work /only:lex", "output": "lex: antibiotics mechanism action bacteria\nlex: antibiotic cell wall protein synthesis inhibition\nlex: bactericidal bacteriostatic penicillin"}
+{"input": "how do antibiotics work /only:vec", "output": "vec: how do antibiotics kill or inhibit the growth of bacteria in the human body\nvec: what are the different mechanisms by which antibiotics target bacterial cells"}
+{"input": "how do antibiotics work /only:hyde", "output": "hyde: Antibiotics work by targeting structures unique to bacteria. Penicillin and cephalosporins inhibit cell wall synthesis, causing bacteria to burst. Tetracyclines block the 30S ribosomal subunit, preventing protein synthesis. Fluoroquinolones inhibit DNA gyrase, stopping bacterial DNA replication. Antibiotics are classified as bactericidal (kill bacteria) or bacteriostatic (stop growth)."}
+{"input": "what is geothermal energy? /only:lex", "output": "lex: geothermal energy heat earth power\nlex: geothermal power plant electricity generation\nlex: geothermal renewable energy underground"}
+{"input": "what is geothermal energy? /only:vec", "output": "vec: how does geothermal energy work and how is it used to generate electricity\nvec: what are the advantages and limitations of geothermal energy as a renewable source"}
+{"input": "what is geothermal energy? /only:hyde", "output": "hyde: Geothermal energy harnesses heat from the Earth's interior. Hot water and steam from underground reservoirs drive turbines to generate electricity. Geothermal power plants operate at over 90% capacity factor, far higher than wind or solar. Iceland generates 25% of its electricity from geothermal sources."}
+{"input": "how does a bill become a law /only:lex", "output": "lex: bill becomes law legislative process\nlex: US Congress legislation committee vote\nlex: bill passage House Senate president sign"}
+{"input": "how does a bill become a law /only:vec", "output": "vec: what are the steps a bill goes through in the US Congress to become a law\nvec: how does the legislative process work from bill introduction to presidential signature"}
+{"input": "how does a bill become a law /only:hyde", "output": "hyde: A bill is introduced in the House or Senate and assigned to a committee. The committee holds hearings, marks up the bill, and votes. If passed, it goes to the full chamber for debate and a vote. Both chambers must pass identical versions. Differences are resolved in a conference committee. The final bill goes to the President, who can sign it into law or veto it."}
+{"input": "what is the difference between ethics and morals /only:lex", "output": "lex: ethics vs morals difference\nlex: ethics morals philosophy distinction\nlex: moral principles ethical systems comparison"}
+{"input": "what is the difference between ethics and morals /only:vec", "output": "vec: what is the distinction between ethics and morals in philosophy\nvec: how do personal morals differ from ethical systems and codes of conduct"}
+{"input": "what is the difference between ethics and morals /only:hyde", "output": "hyde: Ethics refers to systematic, philosophical frameworks for determining right and wrong\u2014such as utilitarianism or deontology. Morals are personal beliefs about right and wrong shaped by culture, religion, and upbringing. Ethics are prescriptive rules applied to groups (medical ethics, business ethics), while morals are individual convictions."}
+{"input": "what was the silk road /only:lex", "output": "lex: Silk Road ancient trade route\nlex: Silk Road China Rome trade network\nlex: Silk Road history commerce cultural exchange"}
+{"input": "what was the silk road /only:vec", "output": "vec: what was the historical Silk Road and what goods and ideas were traded along it\nvec: how did the Silk Road connect civilizations between China and the Mediterranean"}
+{"input": "what was the silk road /only:hyde", "output": "hyde: The Silk Road was a network of trade routes connecting China to the Mediterranean from the 2nd century BCE to the 15th century CE. Merchants traded silk, spices, gold, and jade. Beyond goods, the Silk Road facilitated the spread of Buddhism, Islam, papermaking, and gunpowder across Eurasia."}
+{"input": "what is the significance of beauty in philosophy /only:lex", "output": "lex: beauty philosophy aesthetics significance\nlex: aesthetics Kant Plato beauty philosophical\nlex: philosophy of beauty sublime art"}
+{"input": "what is the significance of beauty in philosophy /only:vec", "output": "vec: how have philosophers understood and defined the concept of beauty throughout history\nvec: what is the philosophical significance of beauty in aesthetics from Plato to Kant"}
+{"input": "what is the significance of beauty in philosophy /only:hyde", "output": "hyde: In Plato's Symposium, beauty is a ladder ascending from physical attraction to the Form of Beauty itself. Kant distinguished between the beautiful (harmonious, universal pleasure) and the sublime (overwhelming grandeur). For Hegel, beauty in art reveals truth through sensory form. Contemporary aesthetics debates whether beauty is objective or culturally constructed."}
+{"input": "how to communicate with elected officials /only:lex", "output": "lex: contact elected officials representatives\nlex: write letter call congressman senator\nlex: constituent advocacy elected official communication"}
+{"input": "how to communicate with elected officials /only:vec", "output": "vec: what are effective ways to communicate your concerns to elected officials\nvec: how to write letters or make phone calls to your congressional representatives"}
+{"input": "how to communicate with elected officials /only:hyde", "output": "hyde: The most effective way to reach your elected officials is a phone call to their district office. Identify yourself as a constituent, state the bill number, and clearly state your position in under 60 seconds. Personalized letters are more impactful than form emails. Attend town halls for face-to-face interaction."}
+{"input": "what is phenomenology /only:lex", "output": "lex: phenomenology philosophy Husserl\nlex: phenomenological method consciousness experience\nlex: phenomenology Heidegger Merleau-Ponty intentionality"}
+{"input": "what is phenomenology /only:vec", "output": "vec: what is phenomenology and how does it study conscious experience\nvec: how did Husserl and Heidegger develop phenomenology as a philosophical method"}
+{"input": "what is phenomenology /only:hyde", "output": "hyde: Phenomenology is a philosophical method founded by Edmund Husserl that studies the structures of conscious experience as they appear to the subject. Through \"bracketing\" (epoch\u00e9), the phenomenologist suspends assumptions about the external world to describe phenomena as they are experienced. Heidegger extended this into an analysis of Being-in-the-world."}
+{"input": "how to enhance concentration /only:lex", "output": "lex: improve concentration focus techniques\nlex: attention span deep work focus tips\nlex: concentration exercises mindfulness pomodoro"}
+{"input": "how to enhance concentration /only:vec", "output": "vec: what techniques and habits can help you improve focus and concentration\nvec: how can mindfulness and time management methods like Pomodoro improve attention"}
+{"input": "how to enhance concentration /only:hyde", "output": "hyde: Improve concentration by eliminating distractions: silence notifications, use website blockers, and work in a quiet environment. The Pomodoro Technique\u201425 minutes of focused work followed by a 5-minute break\u2014builds sustained attention. Regular exercise, adequate sleep (7-9 hours), and mindfulness meditation physically strengthen the brain's prefrontal cortex."}
+{"input": "what is the theory of relativity /only:lex", "output": "lex: theory of relativity Einstein\nlex: special general relativity spacetime gravity\nlex: E=mc2 Einstein relativity physics"}
+{"input": "what is the theory of relativity /only:vec", "output": "vec: what are Einstein's special and general theories of relativity and what do they explain\nvec: how does the theory of relativity describe the relationship between space time and gravity"}
+{"input": "what is the theory of relativity /only:hyde", "output": "hyde: Einstein's special relativity (1905) states that the speed of light is constant for all observers and that time dilates at high velocities (E=mc\u00b2). General relativity (1915) describes gravity not as a force but as the curvature of spacetime caused by mass and energy. Massive objects bend spacetime, and objects follow curved paths."}
+{"input": "what is depth of field? /only:lex", "output": "lex: depth of field photography aperture\nlex: DOF shallow deep focus bokeh\nlex: aperture f-stop focal length depth field"}
+{"input": "what is depth of field? /only:vec", "output": "vec: what is depth of field in photography and how does aperture affect it\nvec: how do aperture, focal length, and distance control the depth of field in a photo"}
+{"input": "what is depth of field? /only:hyde", "output": "hyde: Depth of field (DOF) is the range of distance in a photo that appears acceptably sharp. A wide aperture (f/1.8) produces a shallow DOF with a blurred background (bokeh), ideal for portraits. A narrow aperture (f/16) produces deep DOF where everything is sharp, suited for landscapes. Focal length and subject distance also affect DOF."}
+{"input": "how to write a haiku /only:lex", "output": "lex: haiku poem writing syllable\nlex: haiku 5-7-5 Japanese poetry\nlex: haiku nature season kigo structure"}
+{"input": "how to write a haiku /only:vec", "output": "vec: what are the rules and structure for writing a traditional haiku poem\nvec: how do you compose a haiku with the 5-7-5 syllable pattern and seasonal reference"}
+{"input": "how to write a haiku /only:hyde", "output": "hyde: A haiku is a three-line Japanese poem with a 5-7-5 syllable structure. Traditional haiku includes a kigo (seasonal word) and a kireji (cutting word) that creates a pause or shift. Example: \"An old silent pond / A frog jumps into the pond\u2014 / Splash! Silence again.\" Focus on a single moment in nature observed with clarity."}
+{"input": "how to address misinformation in politics /only:lex", "output": "lex: political misinformation combat fact-checking\nlex: fake news disinformation media literacy\nlex: countering political misinformation strategies"}
+{"input": "how to address misinformation in politics /only:vec", "output": "vec: what strategies can be used to identify and counter political misinformation\nvec: how can media literacy and fact-checking help address false political claims"}
+{"input": "how to address misinformation in politics /only:hyde", "output": "hyde: Combat political misinformation by checking claims against nonpartisan fact-checkers like PolitiFact, Snopes, and FactCheck.org. Verify the original source before sharing. Teach media literacy skills: examine the URL, author credentials, and whether other outlets confirm the story. Prebunking\u2014warning people about manipulation techniques before exposure\u2014is more effective than debunking after the fact."}
+{"input": "what is the philosophy of humor? /only:lex", "output": "lex: philosophy of humor laughter theory\nlex: incongruity superiority relief theory humor\nlex: humor philosophy comedy Bergson"}
+{"input": "what is the philosophy of humor? /only:vec", "output": "vec: what are the main philosophical theories that explain why things are funny\nvec: how do incongruity theory, superiority theory, and relief theory explain humor"}
+{"input": "what is the philosophy of humor? /only:hyde", "output": "hyde: Three major theories explain humor. Superiority theory (Hobbes) says we laugh at others' misfortunes. Relief theory (Freud) says laughter releases nervous energy. Incongruity theory (Kant, Schopenhauer) says humor arises when expectations are violated\u2014we laugh at the gap between what we expect and what occurs."}
+{"input": "how does determinism challenge free will /only:lex", "output": "lex: determinism free will debate\nlex: causal determinism libertarian compatibilism\nlex: free will philosophy hard determinism"}
+{"input": "how does determinism challenge free will /only:vec", "output": "vec: how does philosophical determinism pose a challenge to the concept of free will\nvec: can free will exist if every event is causally determined by prior events"}
+{"input": "how does determinism challenge free will /only:hyde", "output": "hyde: Determinism holds that every event, including human choices, is the inevitable result of prior causes. If our decisions are fully determined by brain states, genetics, and environment, then free will appears illusory. Compatibilists like Hume argue free will means acting on one's desires without external coercion, which is compatible with determinism."}
+{"input": "how to write compelling endings? /only:lex", "output": "lex: writing compelling story ending\nlex: novel ending techniques resolution climax\nlex: satisfying conclusion fiction writing"}
+{"input": "how to write compelling endings? /only:vec", "output": "vec: what techniques do authors use to write powerful and satisfying story endings\nvec: how to craft a compelling ending that resolves the plot and resonates emotionally"}
+{"input": "how to write compelling endings? /only:hyde", "output": "hyde: A compelling ending resolves the central conflict while delivering an emotional payoff. Techniques include the circular ending (returning to an opening image with new meaning), the surprise twist (recontextualizing everything), and the resonant final image. Avoid deus ex machina. The ending should feel both surprising and inevitable\u2014earned by what came before."}
+{"input": "how to make scientific presentations engaging /only:lex", "output": "lex: scientific presentation engaging tips\nlex: science talk slides audience storytelling\nlex: research presentation design delivery"}
+{"input": "how to make scientific presentations engaging /only:vec", "output": "vec: how can scientists make their research presentations more engaging and accessible\nvec: what techniques improve the delivery and visual design of scientific talks"}
+{"input": "how to make scientific presentations engaging /only:hyde", "output": "hyde: Make scientific presentations engaging by opening with a question or surprising finding rather than an outline slide. Use large visuals and minimal text\u2014no more than 6 words per slide. Tell a story: setup the problem, build tension with the data, and deliver the conclusion as a punchline. Practice to stay under time and make eye contact."}
+{"input": "how to draw with a graphic tablet? /only:lex", "output": "lex: graphic tablet drawing digital art\nlex: Wacom drawing tablet pen pressure\nlex: digital drawing tablet beginner setup"}
+{"input": "how to draw with a graphic tablet? /only:vec", "output": "vec: how do you set up and start drawing with a graphic tablet for digital art\nvec: what are tips for beginners learning to draw on a Wacom or similar tablet"}
+{"input": "how to draw with a graphic tablet? /only:hyde", "output": "hyde: Set up your graphic tablet by installing the driver software and calibrating pen pressure. Start in a drawing program like Clip Studio Paint or Krita. The key challenge is hand-eye coordination\u2014you draw on the tablet but look at the screen. Practice simple lines and circles to build muscle memory. Adjust pressure sensitivity curves to match your drawing style."}
+{"input": "how to build a capsule wardrobe /only:lex", "output": "lex: capsule wardrobe essentials minimalist\nlex: capsule wardrobe build pieces mix match\nlex: minimalist wardrobe basics clothing"}
+{"input": "how to build a capsule wardrobe /only:vec", "output": "vec: how do you create a capsule wardrobe with a minimal set of versatile clothing pieces\nvec: what are the essential items and steps to build a functional capsule wardrobe"}
+{"input": "how to build a capsule wardrobe /only:hyde", "output": "hyde: A capsule wardrobe consists of 30-40 versatile pieces that mix and match. Start by choosing a neutral color palette (black, navy, white, beige). Include 2-3 pairs of pants, 5-7 tops, 2 jackets, 2 pairs of shoes, and 1-2 dresses or suits. Remove items you haven't worn in a year. Invest in quality basics over trendy pieces."}
+{"input": "what was the impact of the berlin wall? /only:lex", "output": "lex: Berlin Wall impact fall 1989\nlex: Berlin Wall Cold War Germany division\nlex: Berlin Wall consequences reunification"}
+{"input": "what was the impact of the berlin wall? /only:vec", "output": "vec: what was the historical impact of the Berlin Wall on Germany and the Cold War\nvec: how did the fall of the Berlin Wall in 1989 change Europe and global politics"}
+{"input": "what was the impact of the berlin wall? /only:hyde", "output": "hyde: The Berlin Wall divided East and West Berlin from 1961 to 1989, symbolizing the Iron Curtain between communist and capitalist worlds. Its fall on November 9, 1989, triggered German reunification in 1990 and accelerated the collapse of communist regimes across Eastern Europe, effectively ending the Cold War."}
+{"input": "classic literature /only:lex", "output": "lex: classic literature novels canon\nlex: classic books literary fiction great works\nlex: classic literature reading list authors"}
+{"input": "classic literature /only:vec", "output": "vec: what are the most important works of classic literature and why are they significant\nvec: which classic novels and authors are considered essential reading in the Western literary canon"}
+{"input": "classic literature /only:hyde", "output": "hyde: Classic literature includes works that have stood the test of time for their artistic merit, universal themes, and cultural influence. Essential classics include Homer's Odyssey, Shakespeare's Hamlet, Austen's Pride and Prejudice, Dostoevsky's Crime and Punishment, and Fitzgerald's The Great Gatsby."}
+{"input": "how to make slime at home /only:lex", "output": "lex: homemade slime recipe DIY\nlex: slime glue borax contact solution\nlex: make slime kids craft"}
+{"input": "how to make slime at home /only:vec", "output": "vec: what ingredients and steps do you need to make slime at home\nvec: how to make homemade slime using glue and borax or contact lens solution"}
+{"input": "how to make slime at home /only:hyde", "output": "hyde: Mix 1/2 cup of white PVA glue with 1/2 cup of liquid starch or 1 tablespoon of borax dissolved in 1 cup of water. Stir until the slime pulls away from the bowl. Knead with your hands for 2-3 minutes until smooth. Add food coloring or glitter before mixing for a custom look. Store in an airtight container."}
+{"input": "what is the ethics of climate change /only:lex", "output": "lex: climate change ethics moral responsibility\nlex: climate ethics justice intergenerational\nlex: environmental ethics carbon emissions moral"}
+{"input": "what is the ethics of climate change /only:vec", "output": "vec: what are the ethical and moral dimensions of climate change and environmental responsibility\nvec: how do philosophers approach questions of climate justice and intergenerational obligation"}
+{"input": "what is the ethics of climate change /only:hyde", "output": "hyde: Climate ethics addresses who bears moral responsibility for carbon emissions and their consequences. Key questions include intergenerational justice (obligations to future generations), distributive justice (developing nations suffer most but polluted least), and the tragedy of the commons. Philosophers debate whether current generations owe a carbon debt to those who will inherit a warmer world."}
+{"input": "what are leadership qualities /only:lex", "output": "lex: leadership qualities traits effective\nlex: leader skills communication vision integrity\nlex: leadership characteristics management"}
+{"input": "what are leadership qualities /only:vec", "output": "vec: what personal qualities and traits define an effective leader\nvec: which skills and characteristics are most important for strong leadership"}
+{"input": "what are leadership qualities /only:hyde", "output": "hyde: Effective leaders demonstrate integrity, clear communication, empathy, and decisiveness. They articulate a compelling vision and inspire others to work toward shared goals. Key qualities include emotional intelligence, accountability, adaptability under pressure, and the ability to delegate while empowering team members to take ownership."}
+{"input": "what is the difference between a credit score and a credit report /only:lex", "output": "lex: credit score vs credit report difference\nlex: credit report FICO score bureaus\nlex: credit score number credit report history"}
+{"input": "what is the difference between a credit score and a credit report /only:vec", "output": "vec: what is the difference between a credit score and a credit report\nvec: how does a credit report relate to the credit score number lenders use"}
+{"input": "what is the difference between a credit score and a credit report /only:hyde", "output": "hyde: A credit report is a detailed record of your credit history maintained by bureaus (Equifax, Experian, TransUnion). It lists accounts, payment history, balances, and inquiries. A credit score is a three-digit number (300-850) calculated from your credit report data. FICO scores weigh payment history (35%), amounts owed (30%), length of history (15%), new credit (10%), and credit mix (10%)."}
+{"input": "how to make homemade pizza /only:lex", "output": "lex: homemade pizza dough recipe\nlex: pizza from scratch oven toppings\nlex: make pizza dough sauce crust"}
+{"input": "how to make homemade pizza /only:vec", "output": "vec: how do you make pizza from scratch at home with homemade dough and sauce\nvec: what is the best recipe for homemade pizza dough and how do you bake it"}
+{"input": "how to make homemade pizza /only:hyde", "output": "hyde: Mix 3 cups flour, 1 packet yeast, 1 tsp salt, 1 tbsp olive oil, and 1 cup warm water. Knead for 10 minutes and let rise 1 hour. Stretch the dough on a floured surface, spread tomato sauce, add mozzarella and toppings. Bake at 475\u00b0F (245\u00b0C) on a preheated pizza stone for 10-12 minutes until the crust is golden."}
+{"input": "how to improve workplace productivity /only:lex", "output": "lex: workplace productivity improvement strategies\nlex: employee productivity time management office\nlex: work efficiency focus deep work"}
+{"input": "how to improve workplace productivity /only:vec", "output": "vec: what strategies and techniques can improve productivity in the workplace\nvec: how can employees and managers increase work output and reduce wasted time"}
+{"input": "how to improve workplace productivity /only:hyde", "output": "hyde: Improve workplace productivity by eliminating unnecessary meetings, batching similar tasks together, and protecting blocks of uninterrupted focus time. Use the Eisenhower Matrix to prioritize tasks by urgency and importance. Managers should set clear goals, reduce bureaucratic overhead, and ensure employees have the tools and autonomy they need."}
+{"input": "what is the role of clergy in christianity /only:lex", "output": "lex: clergy role Christianity priest pastor\nlex: Christian minister ordained church leadership\nlex: priest pastor deacon church clergy duties"}
+{"input": "what is the role of clergy in christianity /only:vec", "output": "vec: what roles and responsibilities do clergy members serve in Christian churches\nvec: how do priests, pastors, and deacons function within different Christian denominations"}
+{"input": "what is the role of clergy in christianity /only:hyde", "output": "hyde: Christian clergy serve as spiritual leaders, administering sacraments, preaching sermons, and providing pastoral care. In Catholicism, ordained priests celebrate Mass, hear confessions, and perform baptisms. Protestant pastors focus on preaching and teaching Scripture. Deacons serve the community through charity and administrative support. The clergy structure varies widely across denominations."}
+{"input": "how does virtue ethics work /only:lex", "output": "lex: virtue ethics Aristotle moral character\nlex: virtue ethics eudaimonia character traits\nlex: Aristotelian ethics virtues vices"}
+{"input": "how does virtue ethics work /only:vec", "output": "vec: how does virtue ethics evaluate moral action based on character rather than rules\nvec: what is Aristotle's approach to virtue ethics and how does it define the good life"}
+{"input": "how does virtue ethics work /only:hyde", "output": "hyde: Virtue ethics, rooted in Aristotle's Nicomachean Ethics, holds that moral action flows from virtuous character rather than following rules (deontology) or maximizing outcomes (consequentialism). Virtues like courage, temperance, and justice are developed through practice. The goal is eudaimonia\u2014human flourishing\u2014achieved by living according to reason and cultivating the mean between excess and deficiency."}
+{"input": "what are the challenges of climate science /only:lex", "output": "lex: climate science challenges research\nlex: climate modeling uncertainty data gaps\nlex: climate change research limitations predictions"}
+{"input": "what are the challenges of climate science /only:vec", "output": "vec: what are the major scientific challenges in studying and predicting climate change\nvec: why is climate modeling difficult and what uncertainties do climate scientists face"}
+{"input": "what are the challenges of climate science /only:hyde", "output": "hyde: Climate science faces challenges including modeling complex feedback loops (clouds, ocean currents, ice sheets), limited historical data from pre-instrumental periods, and the chaotic nature of weather systems. Regional predictions are harder than global ones. Tipping points\u2014thresholds beyond which changes become irreversible\u2014are difficult to predict with current models."}
+{"input": "how to reduce stress naturally /only:lex", "output": "lex: reduce stress naturally techniques\nlex: stress relief meditation exercise breathing\nlex: natural stress management relaxation"}
+{"input": "how to reduce stress naturally /only:vec", "output": "vec: what natural methods and lifestyle changes can help reduce stress without medication\nvec: how do exercise, meditation, and breathing techniques reduce stress levels"}
+{"input": "how to reduce stress naturally /only:hyde", "output": "hyde: Reduce stress naturally by exercising 30 minutes daily\u2014aerobic exercise lowers cortisol and releases endorphins. Practice deep breathing: inhale for 4 counts, hold for 7, exhale for 8. Meditate for 10 minutes each morning. Limit caffeine and alcohol, sleep 7-9 hours, and spend time in nature. Progressive muscle relaxation and journaling also help."}
+{"input": "how to start trail running /only:lex", "output": "lex: trail running beginner start\nlex: trail running shoes gear technique\nlex: off-road running trails tips"}
+{"input": "how to start trail running /only:vec", "output": "vec: how do beginners get started with trail running and what gear is needed\nvec: what training tips and safety advice should new trail runners follow"}
+{"input": "how to start trail running /only:hyde", "output": "hyde: Start trail running on well-marked, relatively flat trails. Invest in trail running shoes with lugged soles for traction. Run by effort, not pace\u2014expect to be 1-2 minutes per mile slower than road pace. Walk the uphills, run the flats and downhills. Carry water on runs over 45 minutes. Watch your footing and shorten your stride on technical terrain."}
+{"input": "how to write a literary essay? /only:lex", "output": "lex: literary essay writing analysis\nlex: literary analysis thesis evidence essay\nlex: English literature essay structure argument"}
+{"input": "how to write a literary essay? /only:vec", "output": "vec: how do you write a strong literary analysis essay with a clear thesis and evidence\nvec: what is the structure and approach for writing an essay analyzing a work of literature"}
+{"input": "how to write a literary essay? /only:hyde", "output": "hyde: A literary essay argues a specific thesis about a text using evidence from the work itself. Open with a hook and thesis statement. Each body paragraph should present a claim, textual evidence (quotations), and analysis explaining how the evidence supports your argument. Use close reading to examine language, imagery, symbolism, and structure. Conclude by synthesizing your argument."}
+{"input": "sustainable development goals /only:lex", "output": "lex: sustainable development goals SDGs UN\nlex: SDG 2030 agenda United Nations\nlex: UN sustainability goals poverty climate"}
+{"input": "sustainable development goals /only:vec", "output": "vec: what are the United Nations Sustainable Development Goals and what do they aim to achieve\nvec: how are the 17 SDGs structured and what progress has been made toward the 2030 agenda"}
+{"input": "sustainable development goals /only:hyde", "output": "hyde: The 17 Sustainable Development Goals (SDGs) were adopted by the United Nations in 2015 as a universal call to action by 2030. They include: No Poverty (SDG 1), Zero Hunger (SDG 2), Good Health (SDG 3), Quality Education (SDG 4), Gender Equality (SDG 5), Clean Water (SDG 6), and Climate Action (SDG 13), among others."}
+{"input": "how to navigate with gps /only:lex", "output": "lex: GPS navigation outdoor use\nlex: GPS coordinates waypoint route handheld\nlex: GPS device map navigation hiking"}
+{"input": "how to navigate with gps /only:vec", "output": "vec: how do you use a GPS device or app for outdoor navigation and route finding\nvec: how to read GPS coordinates and set waypoints for hiking or travel"}
+{"input": "how to navigate with gps /only:hyde", "output": "hyde: To navigate with GPS, first mark your starting point as a waypoint. Enter your destination coordinates or select a point on the map. The GPS receiver triangulates your position using signals from at least 4 satellites. Follow the bearing and distance readings to your waypoint. Always carry a paper map and compass as backup in case of battery failure."}
+{"input": "how to conduct a scientific experiment /only:lex", "output": "lex: scientific experiment method steps\nlex: scientific method hypothesis variables control\nlex: experiment design procedure data collection"}
+{"input": "how to conduct a scientific experiment /only:vec", "output": "vec: what are the steps involved in designing and conducting a proper scientific experiment\nvec: how do you set up controls, variables, and data collection for a science experiment"}
+{"input": "how to conduct a scientific experiment /only:hyde", "output": "hyde: A scientific experiment follows these steps: 1) Ask a question, 2) Research background, 3) Form a hypothesis, 4) Design the experiment with independent, dependent, and controlled variables, 5) Collect data through repeated trials, 6) Analyze results using statistics, 7) Draw conclusions. Always include a control group and change only one variable at a time."}
+{"input": "digital transformation strategy implementation /only:lex", "output": "lex: digital transformation strategy enterprise\nlex: digital transformation implementation roadmap\nlex: enterprise digitalization technology adoption"}
+{"input": "digital transformation strategy implementation /only:vec", "output": "vec: how do organizations plan and implement a digital transformation strategy\nvec: what are the key phases and challenges of enterprise digital transformation"}
+{"input": "digital transformation strategy implementation /only:hyde", "output": "hyde: Digital transformation strategy begins with assessing current technology maturity and identifying high-impact processes for digitization. Build a roadmap with quick wins (cloud migration, workflow automation) and long-term goals (data-driven decision making, AI integration). Assign executive sponsorship, train employees, and measure success with KPIs like cycle time reduction and customer satisfaction scores."}
+{"input": "how to improve sleep quality naturally? /only:lex", "output": "lex: improve sleep quality natural remedies\nlex: sleep hygiene tips better rest\nlex: insomnia natural treatment melatonin"}
+{"input": "how to improve sleep quality naturally? /only:vec", "output": "vec: what natural methods and sleep hygiene habits improve the quality of sleep\nvec: how can you fall asleep faster and sleep more deeply without medication"}
+{"input": "how to improve sleep quality naturally? /only:hyde", "output": "hyde: Improve sleep quality by maintaining a consistent schedule\u2014go to bed and wake at the same time daily. Keep your bedroom cool (65-68\u00b0F), dark, and quiet. Avoid screens for 1 hour before bed since blue light suppresses melatonin. Limit caffeine after noon. Exercise regularly but not within 3 hours of bedtime. Try magnesium supplements or chamomile tea."}
+{"input": "how to build customer loyalty /only:lex", "output": "lex: customer loyalty retention strategies\nlex: loyalty program repeat customers brand\nlex: customer retention engagement satisfaction"}
+{"input": "how to build customer loyalty /only:vec", "output": "vec: what strategies do businesses use to build long-term customer loyalty and retention\nvec: how do loyalty programs and customer experience drive repeat business"}
+{"input": "how to build customer loyalty /only:hyde", "output": "hyde: Build customer loyalty by delivering consistent quality and exceeding expectations. Implement a points-based loyalty program offering meaningful rewards. Personalize communications using purchase history data. Respond to complaints within 24 hours and resolve them generously. Customers who feel valued spend 67% more than new customers. Track Net Promoter Score to measure loyalty over time."}
+{"input": "what is consequentialism /only:lex", "output": "lex: consequentialism ethics moral theory\nlex: consequentialism utilitarianism outcomes\nlex: consequentialist ethics Mill Bentham"}
+{"input": "what is consequentialism /only:vec", "output": "vec: what is consequentialism and how does it evaluate the morality of actions\nvec: how does consequentialist ethics judge right and wrong based on outcomes and consequences"}
+{"input": "what is consequentialism /only:hyde", "output": "hyde: Consequentialism is a moral theory holding that the rightness of an action depends solely on its outcomes. The most well-known form is utilitarianism (Bentham, Mill), which aims to maximize overall happiness or well-being. An action is morally right if it produces the best consequences for the greatest number of people, regardless of the actor's intentions."}
+{"input": "how does philosophy approach artificial intelligence? /only:lex", "output": "lex: philosophy artificial intelligence AI ethics\nlex: AI philosophy consciousness mind machine\nlex: philosophy of AI Turing test Chinese room"}
+{"input": "how does philosophy approach artificial intelligence? /only:vec", "output": "vec: how do philosophers analyze questions about artificial intelligence and machine consciousness\nvec: what philosophical problems does AI raise about minds, consciousness, and moral status"}
+{"input": "how does philosophy approach artificial intelligence? /only:hyde", "output": "hyde: Philosophers approach AI through questions of consciousness (can machines be conscious?), the Chinese Room argument (Searle argued symbol manipulation isn't understanding), the Turing test (behavioral equivalence), and moral status (should sentient AI have rights?). The alignment problem\u2014ensuring AI systems pursue human values\u2014has become a central concern in philosophy of technology."}
+{"input": "how to reduce sugar intake /only:lex", "output": "lex: reduce sugar intake diet\nlex: cut sugar cravings low sugar eating\nlex: sugar consumption health alternatives"}
+{"input": "how to reduce sugar intake /only:vec", "output": "vec: what practical strategies help reduce daily sugar consumption and manage cravings\nvec: how can you cut back on added sugar in your diet without feeling deprived"}
+{"input": "how to reduce sugar intake /only:hyde", "output": "hyde: Reduce sugar intake by reading nutrition labels\u2014sugar hides in sauces, bread, and yogurt under names like dextrose, maltose, and high-fructose corn syrup. Replace sugary drinks with water or sparkling water. Eat whole fruit instead of juice. Gradually reduce sugar in coffee over 2 weeks. Protein and fiber at each meal stabilize blood sugar and reduce cravings."}
+{"input": "building resilience /only:lex", "output": "lex: building resilience mental toughness\nlex: emotional resilience coping skills adversity\nlex: psychological resilience strategies stress"}
+{"input": "building resilience /only:vec", "output": "vec: how can individuals build emotional and psychological resilience to handle adversity\nvec: what habits and mindset shifts help develop personal resilience and mental toughness"}
+{"input": "building resilience /only:hyde", "output": "hyde: Building resilience involves developing a growth mindset, maintaining social connections, and practicing self-care. Reframe setbacks as learning opportunities. Cultivate problem-solving skills rather than ruminating on what went wrong. Regular exercise, adequate sleep, and mindfulness strengthen your capacity to recover from stress. Resilient people accept what they cannot control and focus energy on what they can."}
+{"input": "how to attend a town hall meeting /only:lex", "output": "lex: town hall meeting attend participate\nlex: local government town hall public forum\nlex: town hall meeting preparation questions"}
+{"input": "how to attend a town hall meeting /only:vec", "output": "vec: how do you find and attend a local town hall meeting to participate in government\nvec: what should you prepare before attending a town hall meeting with your representative"}
+{"input": "how to attend a town hall meeting /only:hyde", "output": "hyde: Find town hall meetings through your representative's website, social media, or local newspaper. Arrive early to get a seat. Prepare a concise question or statement under 60 seconds. Introduce yourself as a constituent and mention your town. Be respectful and specific\u2014reference a bill number or policy. Many representatives also hold virtual town halls you can join online."}
+{"input": "google sheets /only:lex", "output": "lex: Google Sheets spreadsheet formulas\nlex: Google Sheets tutorial functions tips\nlex: Google Sheets pivot table VLOOKUP"}
+{"input": "google sheets /only:vec", "output": "vec: how to use Google Sheets for data analysis with formulas and functions\nvec: what are the most useful Google Sheets features, formulas, and keyboard shortcuts"}
+{"input": "google sheets /only:hyde", "output": "hyde: Google Sheets is a free cloud-based spreadsheet application. Key functions include VLOOKUP for searching data across columns, SUMIF for conditional totals, and QUERY for SQL-like data filtering. Use Ctrl+/ to view keyboard shortcuts. Create pivot tables via Data > Pivot table. Share sheets with collaborators for real-time editing."}
+{"input": "how to manage digital distractions? /only:lex", "output": "lex: manage digital distractions focus\nlex: phone screen time notification blocking\nlex: digital distraction productivity apps"}
+{"input": "how to manage digital distractions? /only:vec", "output": "vec: how can you reduce digital distractions from phones and social media to stay focused\nvec: what tools and strategies help manage screen time and notification overload"}
+{"input": "how to manage digital distractions? /only:hyde", "output": "hyde: Manage digital distractions by turning off non-essential notifications. Use app blockers like Freedom or Cold Turkey during focus periods. Set your phone to Do Not Disturb and place it in another room. Schedule specific times to check email and social media rather than responding in real-time. Use Screen Time (iOS) or Digital Wellbeing (Android) to track and limit usage."}
+{"input": "what are stem cells /only:lex", "output": "lex: stem cells types function biology\nlex: stem cell embryonic adult pluripotent\nlex: stem cell therapy regenerative medicine"}
+{"input": "what are stem cells /only:vec", "output": "vec: what are stem cells and what makes them different from regular cells in the body\nvec: how are stem cells used in medical research and regenerative medicine"}
+{"input": "what are stem cells /only:hyde", "output": "hyde: Stem cells are undifferentiated cells that can self-renew and differentiate into specialized cell types. Embryonic stem cells are pluripotent\u2014they can become any cell type. Adult stem cells are multipotent, limited to specific tissues (e.g., hematopoietic stem cells produce blood cells). Induced pluripotent stem cells (iPSCs) are adult cells reprogrammed to an embryonic-like state."}
+{"input": "how does literary geography influence narratives? /only:lex", "output": "lex: literary geography narrative place setting\nlex: geography literature landscape sense of place\nlex: spatial narrative setting fiction geography"}
+{"input": "how does literary geography influence narratives? /only:vec", "output": "vec: how does the geography and physical setting of a story influence its narrative and themes\nvec: what role does sense of place and landscape play in shaping literary narratives"}
+{"input": "how does literary geography influence narratives? /only:hyde", "output": "hyde: Literary geography examines how real and imagined places shape narrative meaning. Faulkner's Yoknapatawpha County embodies Southern decay and racial tension. Hardy's Wessex landscapes mirror characters' emotional states. Setting is not just backdrop\u2014it constrains plot, shapes character psychology, and carries symbolic weight. Urban and rural spaces generate distinct narrative possibilities."}
+{"input": "what were the causes of world war ii /only:lex", "output": "lex: causes World War II WWII origins\nlex: WWII causes Treaty Versailles Hitler aggression\nlex: World War 2 causes appeasement fascism"}
+{"input": "what were the causes of world war ii /only:vec", "output": "vec: what were the main political and economic causes that led to World War II\nvec: how did the Treaty of Versailles, fascism, and appeasement contribute to the outbreak of WWII"}
+{"input": "what were the causes of world war ii /only:hyde", "output": "hyde: World War II resulted from multiple causes: the punitive Treaty of Versailles (1919) imposed crippling reparations on Germany, fueling resentment. The Great Depression created economic desperation exploited by fascist movements. Hitler's expansionist aggression\u2014remilitarizing the Rhineland, annexing Austria, and invading Czechoslovakia\u2014met with appeasement from Britain and France until the invasion of Poland in September 1939."}
+{"input": "what is the role of faith in spirituality /only:lex", "output": "lex: faith role spirituality belief\nlex: spiritual faith trust divine religious\nlex: faith spirituality meaning transcendence"}
+{"input": "what is the role of faith in spirituality /only:vec", "output": "vec: what role does faith play in spiritual practice and personal transcendence\nvec: how does faith relate to spiritual growth and the search for meaning"}
+{"input": "what is the role of faith in spirituality /only:hyde", "output": "hyde: Faith in spirituality serves as the foundation for trust in a reality beyond the material world. It enables surrender to uncertainty and provides a framework for interpreting suffering and purpose. Unlike dogmatic belief, spiritual faith often involves personal experience\u2014a felt sense of connection to something greater that sustains practice through doubt and difficulty."}
+{"input": "how to contribute to political campaigns /only:lex", "output": "lex: political campaign contribution donate volunteer\nlex: volunteer political campaign canvassing\nlex: campaign donation fundraising grassroots"}
+{"input": "how to contribute to political campaigns /only:vec", "output": "vec: how can individuals contribute to political campaigns through donations or volunteering\nvec: what are the different ways to get involved in a political campaign as a volunteer"}
+{"input": "how to contribute to political campaigns /only:hyde", "output": "hyde: Contribute to political campaigns by donating through the candidate's official website (individual contributions are limited to $3,300 per election per candidate in federal races). Volunteer to canvass door-to-door, phone bank, or text bank. Attend campaign events, host a house party, or share the candidate's message on social media. Small-dollar donations are increasingly impactful."}
+{"input": "what is the importance of meditation in spirituality? /only:lex", "output": "lex: meditation spirituality importance practice\nlex: spiritual meditation mindfulness contemplation\nlex: meditation enlightenment inner peace spiritual"}
+{"input": "what is the importance of meditation in spirituality? /only:vec", "output": "vec: why is meditation considered essential to many spiritual traditions and practices\nvec: how does meditation contribute to spiritual growth and inner transformation"}
+{"input": "what is the importance of meditation in spirituality? /only:hyde", "output": "hyde: Meditation is central to nearly every spiritual tradition. In Buddhism, vipassana meditation cultivates insight into impermanence. Hindu dhyana aims for union with Brahman. Christian contemplative prayer seeks direct experience of God. Across traditions, meditation quiets mental chatter, develops present-moment awareness, and opens practitioners to transcendent experience."}
+{"input": "how to prune fruit trees? /only:lex", "output": "lex: prune fruit trees technique timing\nlex: fruit tree pruning winter dormant cuts\nlex: apple pear tree pruning branches"}
+{"input": "how to prune fruit trees? /only:vec", "output": "vec: when and how should you prune fruit trees for better growth and fruit production\nvec: what pruning techniques are used for apple, pear, and other fruit trees"}
+{"input": "how to prune fruit trees? /only:hyde", "output": "hyde: Prune fruit trees during late winter dormancy (January-March) before buds break. Remove dead, diseased, and crossing branches first. Open the center of the tree to allow sunlight and air circulation. Make cuts at a 45-degree angle just above an outward-facing bud. Remove water sprouts (vertical shoots) and suckers from the base. Never remove more than 25% of the canopy in one season."}
+{"input": "what is conservation biology /only:lex", "output": "lex: conservation biology biodiversity preservation\nlex: conservation biology endangered species habitat\nlex: wildlife conservation ecology management"}
+{"input": "what is conservation biology /only:vec", "output": "vec: what is conservation biology and what are its main goals and methods\nvec: how do conservation biologists work to protect endangered species and biodiversity"}
+{"input": "what is conservation biology /only:hyde", "output": "hyde: Conservation biology is the scientific study of preserving biodiversity and preventing extinction. It combines ecology, genetics, and landscape management to protect threatened species and ecosystems. Key approaches include habitat restoration, establishing wildlife corridors, captive breeding programs, and designating protected areas. The field was formalized in the 1980s by Michael Soul\u00e9."}
+{"input": "how do muslims observe hajj? /only:lex", "output": "lex: Hajj Muslim pilgrimage Mecca rituals\nlex: Hajj rites Kaaba Arafat Mina Islam\nlex: Islamic pilgrimage Hajj steps obligations"}
+{"input": "how do muslims observe hajj? /only:vec", "output": "vec: what are the rituals and steps Muslims follow during the Hajj pilgrimage to Mecca\nvec: how do Muslims prepare for and perform the Hajj pilgrimage"}
+{"input": "how do muslims observe hajj? /only:hyde", "output": "hyde: Hajj occurs annually during Dhul Hijjah, the 12th month of the Islamic calendar. Pilgrims enter a state of ihram (ritual purity) and wear simple white garments. They perform tawaf (circling the Kaaba seven times), sa'i (walking between Safa and Marwah), stand at Arafat in prayer, and stone the pillars at Mina. Hajj concludes with Eid al-Adha, the Festival of Sacrifice."}
+{"input": "digital economy transformation /only:lex", "output": "lex: digital economy transformation trends\nlex: digital economy e-commerce fintech platform\nlex: economic digitalization technology market 2025"}
+{"input": "digital economy transformation /only:vec", "output": "vec: how is the digital economy transforming traditional industries and business models\nvec: what are the key drivers and trends of digital economic transformation"}
+{"input": "digital economy transformation /only:hyde", "output": "hyde: The digital economy encompasses all economic activity enabled by digital technologies. E-commerce, fintech, cloud computing, and platform businesses (Uber, Airbnb) have disrupted traditional industries. By 2025, the digital economy accounts for over 15% of global GDP. Key drivers include mobile internet penetration, AI automation, and the shift to subscription-based and data-driven business models."}
+{"input": "how does philosophy address systemic injustice? /only:lex", "output": "lex: philosophy systemic injustice structural oppression\nlex: social justice philosophy racial gender inequality\nlex: systemic injustice Rawls critical race theory"}
+{"input": "how does philosophy address systemic injustice? /only:vec", "output": "vec: how do philosophers analyze and propose solutions to systemic injustice and structural oppression\nvec: what philosophical frameworks address racial, gender, and economic systemic inequality"}
+{"input": "how does philosophy address systemic injustice? /only:hyde", "output": "hyde: Philosophers address systemic injustice through multiple frameworks. Rawls's veil of ignorance argues just institutions would be designed without knowing one's social position. Critical race theory examines how legal and social structures perpetuate racial inequality. Iris Marion Young distinguished five faces of oppression: exploitation, marginalization, powerlessness, cultural imperialism, and violence."}
+{"input": "how to analyze a political speech /only:lex", "output": "lex: political speech analysis rhetoric\nlex: speech analysis persuasion ethos pathos logos\nlex: rhetorical analysis political discourse"}
+{"input": "how to analyze a political speech /only:vec", "output": "vec: what techniques are used to analyze the rhetoric and persuasive strategies in political speeches\nvec: how do you evaluate a political speech for logical arguments, emotional appeals, and credibility"}
+{"input": "how to analyze a political speech /only:hyde", "output": "hyde: Analyze a political speech by examining its rhetorical appeals: ethos (credibility\u2014does the speaker establish authority?), pathos (emotion\u2014what feelings are evoked?), and logos (logic\u2014are arguments supported by evidence?). Identify rhetorical devices like repetition, anaphora, and metaphor. Consider the audience, context, and what the speaker wants listeners to do."}
+{"input": "how to support clean energy initiatives? /only:lex", "output": "lex: clean energy support renewable initiatives\nlex: renewable energy advocacy solar wind policy\nlex: clean energy action community support"}
+{"input": "how to support clean energy initiatives? /only:vec", "output": "vec: how can individuals and communities support clean energy initiatives and policies\nvec: what actions can people take to promote renewable energy adoption in their area"}
+{"input": "how to support clean energy initiatives? /only:hyde", "output": "hyde: Support clean energy by installing solar panels or subscribing to community solar. Switch to a green electricity provider. Contact elected officials to support renewable energy legislation and tax credits. Invest in clean energy funds. Drive electric or hybrid vehicles. Advocate for local building codes that require energy efficiency standards. Join or donate to organizations like the Sierra Club or local clean energy cooperatives."}
+{"input": "how to diagnose car starting problems? /only:lex", "output": "lex: car starting problems diagnosis troubleshoot\nlex: car won't start battery starter ignition\nlex: engine cranks no start fuel spark"}
+{"input": "how to diagnose car starting problems? /only:vec", "output": "vec: how do you diagnose why a car won't start and identify the root cause\nvec: what are the common reasons a car fails to start and how to troubleshoot them"}
+{"input": "how to diagnose car starting problems? /only:hyde", "output": "hyde: If the car clicks but won't crank, the battery is likely dead\u2014test with a multimeter (should read 12.6V). If the engine cranks but won't start, check fuel delivery (listen for the fuel pump whine) and spark (pull a plug and check for spark). A no-crank, no-click condition often points to a failed starter motor or corroded battery terminals."}
+{"input": "how to identify personal values and beliefs? /only:lex", "output": "lex: identify personal values beliefs self-reflection\nlex: core values assessment life priorities\nlex: personal values exercise self-awareness"}
+{"input": "how to identify personal values and beliefs? /only:vec", "output": "vec: how can you identify and clarify your core personal values and beliefs\nvec: what exercises and reflection methods help discover what you truly value in life"}
+{"input": "how to identify personal values and beliefs? /only:hyde", "output": "hyde: Identify your core values by reflecting on peak experiences\u2014moments when you felt most fulfilled and authentic. Write down 10-15 values (integrity, creativity, family, freedom) and narrow to your top 5. Ask: what angers you when it's violated? What would you fight for? A values card sort exercise\u2014ranking printed values\u2014can clarify priorities you struggle to articulate."}
+{"input": "what is the significance of the gnostic gospels? /only:lex", "output": "lex: gnostic gospels significance Nag Hammadi\nlex: gnostic texts Gospel Thomas early Christianity\nlex: gnostic gospels meaning heresy Christian"}
+{"input": "what is the significance of the gnostic gospels? /only:vec", "output": "vec: what are the gnostic gospels and why are they significant for understanding early Christianity\nvec: how did the Nag Hammadi discovery change our knowledge of gnostic Christian texts"}
+{"input": "what is the significance of the gnostic gospels? /only:hyde", "output": "hyde: The gnostic gospels are early Christian texts discovered at Nag Hammadi, Egypt in 1945. They include the Gospel of Thomas, Gospel of Philip, and Gospel of Truth. These texts reveal diverse beliefs in early Christianity\u2014including the idea that salvation comes through secret knowledge (gnosis) rather than faith alone. They were excluded from the biblical canon as heretical by the 4th century church."}
+{"input": "russia train /only:lex", "output": "lex: Russia train travel Trans-Siberian railway\nlex: Russian railway routes tickets booking\nlex: Trans-Siberian Express Moscow Vladivostok"}
+{"input": "russia train /only:vec", "output": "vec: how to travel by train in Russia and what are the major railway routes\nvec: what is the Trans-Siberian Railway and how do you book tickets for Russian trains"}
+{"input": "russia train /only:hyde", "output": "hyde: The Trans-Siberian Railway is the longest railway line in the world, spanning 9,289 km from Moscow to Vladivostok over 6 days. Book tickets through Russian Railways (RZD) at rzd.ru or through agents like RealRussia. Classes include platzkart (open berth), kupe (4-person compartment), and SV (2-person sleeper). Bring your own food for long journeys."}
+{"input": "how do you write an effective book review? /only:lex", "output": "lex: book review writing effective structure\nlex: write book review summary critique\nlex: book review template opinion analysis"}
+{"input": "how do you write an effective book review? /only:vec", "output": "vec: how do you write a thoughtful and effective book review with summary and analysis\nvec: what structure and elements make a strong book review for publication or school"}
+{"input": "how do you write an effective book review? /only:hyde", "output": "hyde: An effective book review opens with the book's title, author, genre, and a one-sentence summary. Discuss the main themes and the author's writing style. Include specific examples and short quotations. Evaluate strengths and weaknesses honestly. Avoid spoilers for fiction. End with a recommendation and who would enjoy the book. Aim for 500-800 words."}
+{"input": "how to practice self-compassion? /only:lex", "output": "lex: self-compassion practice exercises\nlex: self-compassion Kristin Neff mindfulness\nlex: self-kindness inner critic self-care"}
+{"input": "how to practice self-compassion? /only:vec", "output": "vec: what are practical ways to practice self-compassion and quiet your inner critic\nvec: how does Kristin Neff's framework for self-compassion work in daily life"}
+{"input": "how to practice self-compassion? /only:hyde", "output": "hyde: Kristin Neff defines self-compassion as three components: self-kindness (treating yourself as you would a friend), common humanity (recognizing suffering is shared), and mindfulness (acknowledging pain without over-identifying). Practice by placing your hand on your heart when distressed and saying: \"This is a moment of suffering. Suffering is part of life. May I be kind to myself.\""}
+{"input": "what is the significance of pilgrimage in religion? /only:lex", "output": "lex: pilgrimage religion significance spiritual\nlex: religious pilgrimage Mecca Jerusalem Varanasi\nlex: pilgrimage sacred journey faith tradition"}
+{"input": "what is the significance of pilgrimage in religion? /only:vec", "output": "vec: why is pilgrimage important across different religious traditions\nvec: what spiritual significance does the act of pilgrimage carry in major world religions"}
+{"input": "what is the significance of pilgrimage in religion? /only:hyde", "output": "hyde: Pilgrimage holds deep significance across religions. Muslims perform Hajj to Mecca as one of the Five Pillars. Christians journey to Jerusalem, Rome, and Santiago de Compostela. Hindus bathe in the Ganges at Varanasi. The physical journey symbolizes an inner spiritual transformation\u2014leaving ordinary life, enduring hardship, and arriving at a sacred place of renewal and encounter with the divine."}
+{"input": "api doc /only:lex", "output": "lex: API documentation reference endpoints\nlex: REST API docs developer guide\nlex: API documentation Swagger OpenAPI"}
+{"input": "api doc /only:vec", "output": "vec: how to read and use API documentation for integrating with a web service\nvec: what tools and formats are used for creating and hosting API documentation"}
+{"input": "api doc /only:hyde", "output": "hyde: API documentation describes available endpoints, request/response formats, authentication methods, and error codes. RESTful APIs typically document each endpoint with its HTTP method (GET, POST, PUT, DELETE), URL path, query parameters, request body schema, and example responses. Tools like Swagger/OpenAPI generate interactive docs where developers can test endpoints directly."}
+{"input": "how to boil an egg perfectly /only:lex", "output": "lex: boil egg perfectly soft hard\nlex: boiled egg timing minutes technique\nlex: perfect hard soft boiled egg recipe"}
+{"input": "how to boil an egg perfectly /only:vec", "output": "vec: how long do you boil an egg for soft-boiled and hard-boiled results\nvec: what is the best technique for boiling eggs so they peel easily and cook perfectly"}
+{"input": "how to boil an egg perfectly /only:hyde", "output": "hyde: Place eggs in a single layer in a pot and cover with cold water by 1 inch. Bring to a rolling boil, then remove from heat and cover. For soft-boiled: 6-7 minutes. For medium: 9-10 minutes. For hard-boiled: 12-13 minutes. Transfer immediately to an ice bath for 5 minutes. Older eggs (7-10 days) peel more easily than fresh ones."}
+{"input": "how to create a home office space /only:lex", "output": "lex: home office setup design workspace\nlex: home office desk chair ergonomic\nlex: work from home office organization"}
+{"input": "how to create a home office space /only:vec", "output": "vec: how do you set up a productive and ergonomic home office workspace\nvec: what furniture, lighting, and layout create the best home office environment"}
+{"input": "how to create a home office space /only:hyde", "output": "hyde: Set up your home office in a quiet room with natural light. Invest in an ergonomic chair with lumbar support and a desk at elbow height (28-30 inches). Position your monitor at arm's length with the top at eye level. Use a desk lamp with 4000-5000K color temperature. Keep cables organized and add a plant\u2014studies show greenery reduces stress and improves focus."}
+{"input": "what are the basic laws of thermodynamics /only:lex", "output": "lex: laws of thermodynamics basic physics\nlex: thermodynamics first second third law entropy\nlex: thermodynamic laws energy heat transfer"}
+{"input": "what are the basic laws of thermodynamics /only:vec", "output": "vec: what are the four laws of thermodynamics and what does each one describe\nvec: how do the laws of thermodynamics govern energy transfer and entropy"}
+{"input": "what are the basic laws of thermodynamics /only:hyde", "output": "hyde: The zeroth law establishes thermal equilibrium: if A and B are each in equilibrium with C, they are in equilibrium with each other. The first law states energy cannot be created or destroyed (conservation of energy). The second law says entropy in a closed system always increases\u2014heat flows from hot to cold, never the reverse. The third law states entropy approaches zero as temperature approaches absolute zero."}
+{"input": "how to create a home yoga space /only:lex", "output": "lex: home yoga space setup room\nlex: yoga room design mat props space\nlex: home yoga studio create practice area"}
+{"input": "how to create a home yoga space /only:vec", "output": "vec: how do you set up a dedicated yoga practice space in your home\nvec: what equipment and room setup do you need for a home yoga studio"}
+{"input": "how to create a home yoga space /only:hyde", "output": "hyde: Create a home yoga space in an area with at least 6x8 feet of clear floor space. Use a non-slip yoga mat (6mm thickness for comfort). Add blocks, a strap, and a bolster for supported poses. Keep the space clutter-free and at a comfortable temperature (68-72\u00b0F). Soft natural light and a small speaker for calming music enhance the atmosphere."}
+{"input": "what is the bible? /only:lex", "output": "lex: Bible Christian scripture holy book\nlex: Bible Old New Testament books\nlex: Bible history composition canon"}
+{"input": "what is the bible? /only:vec", "output": "vec: what is the Bible and how is it organized into Old and New Testaments\nvec: how was the Bible composed and compiled over time as a sacred text"}
+{"input": "what is the bible? /only:hyde", "output": "hyde: The Bible is the sacred scripture of Christianity, consisting of the Old Testament (39 books in Protestant tradition, 46 in Catholic) and the New Testament (27 books). The Old Testament includes the Torah, historical books, poetry, and prophets, written primarily in Hebrew. The New Testament contains the Gospels, Acts, Epistles, and Revelation, written in Greek during the 1st century CE."}
+{"input": "how does virtue ethics differ from other ethical theories /only:lex", "output": "lex: virtue ethics vs deontology consequentialism\nlex: virtue ethics comparison ethical theories\nlex: Aristotle virtue ethics Kant Mill contrast"}
+{"input": "how does virtue ethics differ from other ethical theories /only:vec", "output": "vec: how does virtue ethics differ from deontological and consequentialist moral theories\nvec: what makes virtue ethics unique compared to rule-based and outcome-based ethical frameworks"}
+{"input": "how does virtue ethics differ from other ethical theories /only:hyde", "output": "hyde: Virtue ethics (Aristotle) asks \"What kind of person should I be?\" rather than \"What should I do?\" Deontology (Kant) focuses on following moral rules regardless of outcomes. Consequentialism (Mill) judges actions by their results. Virtue ethics emphasizes developing moral character through habit and practical wisdom, while the others prescribe universal principles or calculations."}
+{"input": "how genetic research impacts medicine /only:lex", "output": "lex: genetic research medicine impact\nlex: genomics personalized medicine gene therapy\nlex: genetic testing pharmacogenomics CRISPR"}
+{"input": "how genetic research impacts medicine /only:vec", "output": "vec: how has genetic research transformed medical treatments and diagnosis\nvec: what advances in genomics and gene therapy are changing the future of medicine"}
+{"input": "how genetic research impacts medicine /only:hyde", "output": "hyde: Genetic research has revolutionized medicine through pharmacogenomics (tailoring drug dosages to genetic profiles), gene therapy (correcting defective genes, as in the FDA-approved Luxturna for inherited blindness), and CRISPR gene editing (potential cures for sickle cell disease). Genetic testing identifies cancer risk (BRCA1/2 mutations) enabling early screening and prevention."}
+{"input": "how to fix car scratches? /only:lex", "output": "lex: fix car scratches paint repair\nlex: car scratch removal polish compound\nlex: auto paint scratch repair DIY"}
+{"input": "how to fix car scratches? /only:vec", "output": "vec: how do you repair and remove scratches from a car's paint finish at home\nvec: what products and techniques fix different types of car paint scratches"}
+{"input": "how to fix car scratches? /only:hyde", "output": "hyde: Car scratches fall into three categories: clear coat scratches (light, fingernail doesn't catch), base coat scratches (deeper, white visible), and primer/metal scratches (deepest). For clear coat scratches, use rubbing compound followed by polish. For deeper scratches, apply touch-up paint matching your car's color code (found on the door jamb sticker), then clear coat and wet sand with 2000-grit."}
+{"input": "how digital currencies work /only:lex", "output": "lex: digital currency cryptocurrency blockchain\nlex: Bitcoin cryptocurrency how it works\nlex: digital currency blockchain mining wallet"}
+{"input": "how digital currencies work /only:vec", "output": "vec: how do digital currencies like Bitcoin use blockchain technology to process transactions\nvec: what is the technical process behind cryptocurrency transactions and mining"}
+{"input": "how digital currencies work /only:hyde", "output": "hyde: Digital currencies operate on blockchain technology\u2014a decentralized ledger distributed across thousands of computers. When you send Bitcoin, the transaction is broadcast to the network. Miners validate transactions by solving cryptographic puzzles (proof of work), adding them to a block. Each block links to the previous one, creating an immutable chain. Wallets store private keys that prove ownership."}
+{"input": "what is existentialism /only:lex", "output": "lex: existentialism philosophy Sartre Kierkegaard\nlex: existentialism existence precedes essence freedom\nlex: existentialist philosophy meaning absurd"}
+{"input": "what is existentialism /only:vec", "output": "vec: what is existentialism and what are its core philosophical claims about human existence\nvec: how did Sartre, Kierkegaard, and Camus develop existentialist philosophy"}
+{"input": "what is existentialism /only:hyde", "output": "hyde: Existentialism holds that existence precedes essence\u2014humans are not born with a fixed nature but create meaning through choices and actions. Kierkegaard emphasized individual faith and anxiety. Sartre declared we are \"condemned to be free\"\u2014radical freedom brings radical responsibility. Camus confronted the absurd: life has no inherent meaning, yet we must live as if it does."}
+{"input": "what are the key concepts in marxist philosophy /only:lex", "output": "lex: Marxist philosophy key concepts\nlex: Marx dialectical materialism class struggle surplus\nlex: Marxism alienation historical materialism ideology"}
+{"input": "what are the key concepts in marxist philosophy /only:vec", "output": "vec: what are the central ideas and concepts in Karl Marx's philosophical framework\nvec: how do dialectical materialism, class struggle, and alienation function in Marxist thought"}
+{"input": "what are the key concepts in marxist philosophy /only:hyde", "output": "hyde: Key concepts in Marxist philosophy include historical materialism (material conditions drive historical change), dialectical materialism (contradictions between productive forces and relations of production), class struggle (bourgeoisie vs. proletariat), alienation (workers separated from their labor's product), surplus value (profit extracted from unpaid labor), and ideology (ruling class ideas that justify the status quo)."}
+{"input": "how to find emotional support /only:lex", "output": "lex: emotional support resources help\nlex: finding emotional support therapy counseling\nlex: mental health support groups crisis helpline"}
+{"input": "how to find emotional support /only:vec", "output": "vec: where can someone find emotional support during difficult times or mental health challenges\nvec: what resources are available for people seeking emotional support and counseling"}
+{"input": "how to find emotional support /only:hyde", "output": "hyde: Find emotional support through multiple channels: talk to a trusted friend or family member. Contact a therapist through Psychology Today's directory or your insurance provider. Call the 988 Suicide and Crisis Lifeline (dial 988) for immediate help. Join support groups through NAMI or local community centers. Online therapy platforms like BetterHelp and Talkspace offer accessible counseling."}
+{"input": "relationship goals /only:lex", "output": "lex: relationship goals healthy couple\nlex: relationship goals communication trust partnership\nlex: healthy relationship habits couples"}
+{"input": "relationship goals /only:vec", "output": "vec: what are realistic and healthy relationship goals for couples to work toward\nvec: how do couples build a strong relationship through communication and shared goals"}
+{"input": "relationship goals /only:hyde", "output": "hyde: Healthy relationship goals include open and honest communication, maintaining individual identities while building shared experiences, resolving conflicts respectfully without contempt or stonewalling, expressing appreciation daily, supporting each other's personal growth, maintaining physical intimacy, and aligning on major life decisions like finances, children, and career priorities."}
+{"input": "what is the role of media in politics /only:lex", "output": "lex: media role politics influence\nlex: political media coverage news bias\nlex: media politics democracy journalism fourth estate"}
+{"input": "what is the role of media in politics /only:vec", "output": "vec: what role does the media play in shaping political discourse and public opinion\nvec: how does news coverage and media bias influence political outcomes and democracy"}
+{"input": "what is the role of media in politics /only:hyde", "output": "hyde: The media serves as the \"fourth estate\" in democracy\u2014informing citizens, holding officials accountable, and setting the public agenda. Media framing shapes which issues voters prioritize. Agenda-setting theory shows that what the media covers becomes what the public considers important. The rise of partisan media and social media algorithms has increased polarization by creating ideological echo chambers."}
+{"input": "what is stream of consciousness /only:lex", "output": "lex: stream of consciousness literary technique\nlex: stream of consciousness narrative style"}
+{"input": "what is stream of consciousness /only:vec", "output": "vec: what does stream of consciousness mean as a writing technique in literature\nvec: how does stream of consciousness narration work in novels and fiction"}
+{"input": "what is stream of consciousness /only:hyde", "output": "hyde: Stream of consciousness is a narrative technique that presents a character's continuous flow of thoughts, feelings, and sensory impressions as they occur. Pioneered by writers like Virginia Woolf and James Joyce, it mimics the unstructured way the human mind processes experience."}
+{"input": "where to find budget travel tips /only:lex", "output": "lex: budget travel tips cheap flights accommodations\nlex: affordable travel planning money saving"}
+{"input": "where to find budget travel tips /only:vec", "output": "vec: where can I find reliable tips for traveling on a tight budget\nvec: what are the best resources for planning cheap vacations and budget trips"}
+{"input": "where to find budget travel tips /only:hyde", "output": "hyde: To travel on a budget, book flights midweek, use fare comparison tools like Google Flights or Skyscanner, stay in hostels or use house-sitting platforms, and eat at local markets instead of tourist restaurants."}
+{"input": "what is fallibilism /only:lex", "output": "lex: fallibilism epistemology philosophy\nlex: fallibilism knowledge certainty"}
+{"input": "what is fallibilism /only:vec", "output": "vec: what does fallibilism mean in philosophy and epistemology\nvec: how does fallibilism challenge the idea that knowledge requires absolute certainty"}
+{"input": "what is fallibilism /only:hyde", "output": "hyde: Fallibilism is the philosophical doctrine that no belief or claim can ever be conclusively justified or proven beyond all doubt. Associated with Charles Sanders Peirce and Karl Popper, it holds that all human knowledge is provisional and subject to revision."}
+{"input": "auth flow /only:lex", "output": "lex: authentication flow OAuth JWT\nlex: authorization code flow token exchange\nlex: auth login session management"}
+{"input": "auth flow /only:vec", "output": "vec: how does an authentication and authorization flow work in web applications\nvec: what are the steps in an OAuth 2.0 authorization code flow"}
+{"input": "auth flow /only:hyde", "output": "hyde: The OAuth 2.0 authorization code flow begins when the client redirects the user to the authorization server. After login, the server returns an authorization code, which the client exchanges for an access token and refresh token via the token endpoint."}
+{"input": "where to find datasets for scientific research /only:lex", "output": "lex: scientific research datasets open data repositories\nlex: public datasets academic research download"}
+{"input": "where to find datasets for scientific research /only:vec", "output": "vec: where can researchers find free datasets for scientific studies\nvec: what are the best open data repositories for academic and scientific research"}
+{"input": "where to find datasets for scientific research /only:hyde", "output": "hyde: Public research datasets are available from repositories such as Kaggle, the UCI Machine Learning Repository, NASA's Open Data Portal, NOAA Climate Data, and institutional data archives like Harvard Dataverse and Zenodo."}
+{"input": "ui build /only:lex", "output": "lex: UI build frontend framework components\nlex: user interface build tooling bundler\nlex: UI component library development"}
+{"input": "ui build /only:vec", "output": "vec: how to build a user interface for a web or mobile application\nvec: what tools and frameworks are used to build modern frontend UIs"}
+{"input": "ui build /only:hyde", "output": "hyde: To build a responsive UI, start by choosing a component framework such as React, Vue, or Svelte. Use a build tool like Vite or Webpack to bundle assets, and style with CSS modules or Tailwind CSS for rapid layout development."}
+{"input": "how to conserve water at home? /only:lex", "output": "lex: water conservation home tips\nlex: reduce household water usage"}
+{"input": "how to conserve water at home? /only:vec", "output": "vec: what are practical ways to conserve water at home and reduce water bills\nvec: how can I use less water in my house for everyday tasks"}
+{"input": "how to conserve water at home? /only:hyde", "output": "hyde: Fix leaky faucets promptly\u2014a single drip can waste over 3,000 gallons per year. Install low-flow showerheads and dual-flush toilets, run dishwashers and washing machines only with full loads, and water your garden early in the morning to minimize evaporation."}
+{"input": "how to obtain information on state legislation /only:lex", "output": "lex: state legislation tracking bill search\nlex: state law lookup legislative database"}
+{"input": "how to obtain information on state legislation /only:vec", "output": "vec: how can I find and track state legislation and bills currently being considered\nvec: what websites or tools let you look up state laws and legislative history"}
+{"input": "how to obtain information on state legislation /only:hyde", "output": "hyde: To track state legislation, visit your state legislature's official website, which provides bill text, status, and voting records. Tools like LegiScan and the National Conference of State Legislatures (NCSL) aggregate bills across all 50 states."}
+{"input": "what shoes for hiking? /only:lex", "output": "lex: hiking shoes boots trail footwear\nlex: best hiking boots waterproof ankle support"}
+{"input": "what shoes for hiking? /only:vec", "output": "vec: what type of shoes or boots should I wear for hiking on trails\nvec: how to choose the right hiking footwear for different terrain and conditions"}
+{"input": "what shoes for hiking? /only:hyde", "output": "hyde: For day hikes on well-maintained trails, lightweight hiking shoes with good tread provide enough support. For rocky or wet terrain, mid-cut waterproof boots with ankle support and Vibram soles offer better protection and stability."}
+{"input": "what is the role of empathy in moral decision-making /only:lex", "output": "lex: empathy moral decision-making ethics\nlex: empathy role ethical judgment"}
+{"input": "what is the role of empathy in moral decision-making /only:vec", "output": "vec: how does empathy influence the way people make moral and ethical decisions\nvec: what role does feeling empathy play in moral reasoning and ethical behavior"}
+{"input": "what is the role of empathy in moral decision-making /only:hyde", "output": "hyde: Empathy allows individuals to imagine the experiences of others, which directly influences moral judgment. Studies show that people who score higher on empathy scales are more likely to make prosocial decisions, though critics like Paul Bloom argue empathy can also bias moral reasoning."}
+{"input": "how to improve self-worth? /only:lex", "output": "lex: improve self-worth self-esteem building\nlex: boost self-confidence self-value exercises"}
+{"input": "how to improve self-worth? /only:vec", "output": "vec: what are effective strategies to improve your sense of self-worth and self-esteem\nvec: how can someone build stronger self-worth through daily habits and mindset shifts"}
+{"input": "how to improve self-worth? /only:hyde", "output": "hyde: To improve self-worth, start by identifying and challenging negative self-talk. Practice self-compassion, set small achievable goals, keep a journal of accomplishments, and surround yourself with supportive people. Cognitive behavioral techniques can help reframe core beliefs about your value."}
+{"input": "what is cryptography /only:lex", "output": "lex: cryptography encryption decryption\nlex: cryptographic algorithms symmetric asymmetric"}
+{"input": "what is cryptography /only:vec", "output": "vec: what is cryptography and how does it protect data through encryption\nvec: how do cryptographic systems work to secure communications and information"}
+{"input": "what is cryptography /only:hyde", "output": "hyde: Cryptography is the science of encoding and decoding information to prevent unauthorized access. It uses algorithms like AES (symmetric) and RSA (asymmetric) to encrypt plaintext into ciphertext. Only parties with the correct key can decrypt the message back to its original form."}
+{"input": "how to photograph reflections /only:lex", "output": "lex: photography reflections water glass mirror\nlex: reflection photography techniques composition"}
+{"input": "how to photograph reflections /only:vec", "output": "vec: what techniques help capture sharp and creative reflection photographs\nvec: how to photograph reflections in water, mirrors, and glass surfaces"}
+{"input": "how to photograph reflections /only:hyde", "output": "hyde: To photograph reflections, use a polarizing filter to control glare and increase clarity. Shoot at a low angle to maximize the reflected image in water. For mirror or glass reflections, focus manually on the reflected subject rather than the surface itself."}
+{"input": "how do black holes form /only:lex", "output": "lex: black hole formation stellar collapse\nlex: black holes neutron star supernova"}
+{"input": "how do black holes form /only:vec", "output": "vec: how do black holes form from dying stars and gravitational collapse\nvec: what is the process by which a massive star becomes a black hole"}
+{"input": "how do black holes form /only:hyde", "output": "hyde: Black holes form when a massive star\u2014typically more than 20 solar masses\u2014exhausts its nuclear fuel and can no longer support itself against gravitational collapse. The core implodes past the neutron star stage, compressing into a singularity surrounded by an event horizon."}
+{"input": "how to conduct literature review in research /only:lex", "output": "lex: literature review research methodology\nlex: academic literature review systematic search"}
+{"input": "how to conduct literature review in research /only:vec", "output": "vec: how do you conduct a thorough literature review for an academic research paper\nvec: what are the steps to search, organize, and synthesize sources in a literature review"}
+{"input": "how to conduct literature review in research /only:hyde", "output": "hyde: Begin by defining your research question, then search databases like PubMed, Google Scholar, and Web of Science using targeted keywords. Screen abstracts for relevance, organize selected papers by theme, and synthesize findings to identify gaps in existing knowledge."}
+{"input": "how do scientists use models /only:lex", "output": "lex: scientific models simulation prediction\nlex: scientific modeling research methodology"}
+{"input": "how do scientists use models /only:vec", "output": "vec: how do scientists use models to understand and predict natural phenomena\nvec: what types of models do scientists build to test hypotheses and simulate systems"}
+{"input": "how do scientists use models /only:hyde", "output": "hyde: Scientists use mathematical, computational, and physical models to represent complex systems. Climate models simulate atmospheric interactions, molecular models predict protein folding, and epidemiological models forecast disease spread. Models are validated against observed data and refined iteratively."}
+{"input": "how to stage a home for sale /only:lex", "output": "lex: home staging tips selling house\nlex: stage house real estate curb appeal"}
+{"input": "how to stage a home for sale /only:vec", "output": "vec: how do you stage a home to make it more appealing to potential buyers\nvec: what are the key steps to prepare and stage a house before listing it for sale"}
+{"input": "how to stage a home for sale /only:hyde", "output": "hyde: Declutter every room, remove personal photos, and use neutral paint colors. Arrange furniture to maximize space and natural light. Add fresh flowers, clean all surfaces, and improve curb appeal with trimmed landscaping and a freshly painted front door."}
+{"input": "rim fix /only:lex", "output": "lex: rim repair bent wheel fix\nlex: alloy rim curb damage repair\nlex: car wheel rim straightening"}
+{"input": "rim fix /only:vec", "output": "vec: how to fix a bent or damaged car wheel rim\nvec: can a curb-damaged alloy rim be repaired and how much does it cost"}
+{"input": "rim fix /only:hyde", "output": "hyde: Minor curb rash on alloy rims can be sanded, filled with body filler, and repainted at home. Bent rims require professional straightening on a hydraulic press. If the rim has cracks, replacement is safer than repair."}
+{"input": "what is speculative fiction? /only:lex", "output": "lex: speculative fiction genre definition\nlex: speculative fiction sci-fi fantasy dystopia"}
+{"input": "what is speculative fiction? /only:vec", "output": "vec: what is speculative fiction and what genres does it encompass\nvec: how is speculative fiction different from science fiction and fantasy"}
+{"input": "what is speculative fiction? /only:hyde", "output": "hyde: Speculative fiction is an umbrella genre that includes science fiction, fantasy, horror, dystopian, and alternate history literature. It explores \"what if\" scenarios by altering known reality\u2014imagining different technologies, social structures, or natural laws."}
+{"input": "what are algorithms in computer science /only:lex", "output": "lex: algorithms computer science data structures\nlex: algorithm sorting searching complexity"}
+{"input": "what are algorithms in computer science /only:vec", "output": "vec: what are algorithms in computer science and why are they fundamental\nvec: how do computer science algorithms solve problems through step-by-step procedures"}
+{"input": "what are algorithms in computer science /only:hyde", "output": "hyde: An algorithm is a finite sequence of well-defined instructions for solving a class of problems or performing a computation. Common examples include sorting algorithms (quicksort, mergesort), search algorithms (binary search), and graph algorithms (Dijkstra's shortest path)."}
+{"input": "how to calculate car loan payments? /only:lex", "output": "lex: car loan payment calculator formula\nlex: auto loan monthly payment interest rate"}
+{"input": "how to calculate car loan payments? /only:vec", "output": "vec: how do you calculate monthly car loan payments based on principal, interest rate, and term\nvec: what formula is used to determine monthly auto loan payments"}
+{"input": "how to calculate car loan payments? /only:hyde", "output": "hyde: The monthly car loan payment is calculated using the formula: M = P \u00d7 [r(1+r)^n] / [(1+r)^n \u2212 1], where P is the principal, r is the monthly interest rate (annual rate divided by 12), and n is the total number of monthly payments."}
+{"input": "how to recycle electronics? /only:lex", "output": "lex: electronics recycling e-waste disposal\nlex: recycle old computers phones e-waste"}
+{"input": "how to recycle electronics? /only:vec", "output": "vec: how and where can I recycle old electronics like phones, computers, and TVs\nvec: what is the proper way to dispose of electronic waste responsibly"}
+{"input": "how to recycle electronics? /only:hyde", "output": "hyde: Many retailers like Best Buy and Staples offer free electronics drop-off recycling. Check Earth911.org for local e-waste facilities. Before recycling, wipe personal data from devices. Never throw electronics in regular trash\u2014they contain lead, mercury, and other hazardous materials."}
+{"input": "what is the significance of the anti-hero? /only:lex", "output": "lex: anti-hero literary significance character\nlex: anti-hero fiction protagonist flawed"}
+{"input": "what is the significance of the anti-hero? /only:vec", "output": "vec: what is the literary significance of the anti-hero as a character type in fiction\nvec: why are anti-heroes important in storytelling and what do they represent"}
+{"input": "what is the significance of the anti-hero? /only:hyde", "output": "hyde: The anti-hero challenges traditional notions of heroism by embodying flawed, morally ambiguous traits. Characters like Raskolnikov, Walter White, and Deadpool resonate because they reflect the complexity of human nature, blurring the line between virtue and vice."}
+{"input": "what is the significance of ramadan /only:lex", "output": "lex: Ramadan significance Islam fasting\nlex: Ramadan holy month Muslim observance"}
+{"input": "what is the significance of ramadan /only:vec", "output": "vec: what is the spiritual and cultural significance of Ramadan in Islam\nvec: why do Muslims observe Ramadan and what does the month represent"}
+{"input": "what is the significance of ramadan /only:hyde", "output": "hyde: Ramadan is the ninth month of the Islamic lunar calendar, during which Muslims fast from dawn to sunset. It commemorates the first revelation of the Quran to Prophet Muhammad. The fast cultivates self-discipline, empathy for the hungry, and spiritual closeness to God."}
+{"input": "where to find landscaping stones? /only:lex", "output": "lex: landscaping stones buy garden rocks\nlex: landscape stone supply yard near me"}
+{"input": "where to find landscaping stones? /only:vec", "output": "vec: where can I buy landscaping stones and decorative rocks for my yard\nvec: what are the best places to find affordable landscaping stones and pavers"}
+{"input": "where to find landscaping stones? /only:hyde", "output": "hyde: Landscaping stones can be purchased from home improvement stores like Home Depot and Lowe's, local stone yards, and quarries. For bulk orders, landscape supply companies deliver directly. River rock, flagstone, and pea gravel are popular choices for garden paths and borders."}
+{"input": "where to watch latest movies online /only:lex", "output": "lex: watch movies online streaming platforms 2026\nlex: latest movies streaming services new releases"}
+{"input": "where to watch latest movies online /only:vec", "output": "vec: where can I watch the latest movies online through streaming services in 2026\nvec: which streaming platforms have the newest movie releases available to watch"}
+{"input": "where to watch latest movies online /only:hyde", "output": "hyde: New theatrical releases typically arrive on streaming platforms 45-90 days after their cinema debut. Netflix, Amazon Prime Video, Disney+, Apple TV+, and Max each acquire exclusive titles. Check JustWatch.com to see which service currently streams a specific movie."}
+{"input": "what is contemporary art? /only:lex", "output": "lex: contemporary art definition movement\nlex: contemporary art 21st century modern"}
+{"input": "what is contemporary art? /only:vec", "output": "vec: what defines contemporary art and how is it different from modern art\nvec: what are the key characteristics and themes of contemporary art"}
+{"input": "what is contemporary art? /only:hyde", "output": "hyde: Contemporary art refers to art produced from the late 20th century to the present day. Unlike modern art (roughly 1860s\u20131970s), contemporary art encompasses a wide range of media\u2014installation, video, digital, and performance\u2014and often engages with identity, globalization, and technology."}
+{"input": "what is the significance of easter /only:lex", "output": "lex: Easter significance Christianity resurrection\nlex: Easter religious meaning Christian holiday"}
+{"input": "what is the significance of easter /only:vec", "output": "vec: what is the religious and cultural significance of Easter in Christianity\nvec: why is Easter considered the most important Christian holiday"}
+{"input": "what is the significance of easter /only:hyde", "output": "hyde: Easter celebrates the resurrection of Jesus Christ on the third day after his crucifixion, as described in the New Testament Gospels. It is the most important feast in Christianity, marking the fulfillment of prophecy and the foundation of Christian faith in life after death."}
+{"input": "how to install peel and stick wallpaper /only:lex", "output": "lex: peel and stick wallpaper installation\nlex: self-adhesive wallpaper apply walls"}
+{"input": "how to install peel and stick wallpaper /only:vec", "output": "vec: what are the steps to properly install peel and stick wallpaper on a wall\nvec: how do you apply self-adhesive wallpaper without bubbles or wrinkles"}
+{"input": "how to install peel and stick wallpaper /only:hyde", "output": "hyde: Clean the wall surface and let it dry completely. Start at the top, peeling back a few inches of backing at a time. Use a smoothing tool to press the wallpaper flat, working from the center outward to remove air bubbles. Trim excess at the ceiling and baseboard with a sharp blade."}
+{"input": "how do behavioral scientists study behavior /only:lex", "output": "lex: behavioral science research methods\nlex: behavioral psychology experiments observation"}
+{"input": "how do behavioral scientists study behavior /only:vec", "output": "vec: what methods do behavioral scientists use to study and measure human behavior\nvec: how do behavioral researchers design experiments and observational studies"}
+{"input": "how do behavioral scientists study behavior /only:hyde", "output": "hyde: Behavioral scientists study behavior through controlled experiments, field observations, surveys, and neuroimaging. Randomized controlled trials isolate variables, while observational studies capture behavior in natural settings. Eye-tracking and fMRI provide physiological data on decision-making processes."}
+{"input": "soccer training drills /only:lex", "output": "lex: soccer training drills exercises\nlex: football practice drills passing shooting"}
+{"input": "soccer training drills /only:vec", "output": "vec: what are effective soccer training drills for improving skills and fitness\nvec: which soccer drills help players improve dribbling, passing, and shooting"}
+{"input": "soccer training drills /only:hyde", "output": "hyde: Set up a cone dribbling course with 10 cones spaced 2 meters apart. Players weave through using inside and outside touches at speed. For passing accuracy, pair players 15 meters apart and practice one-touch passes, alternating feet. Finish sessions with 1v1 attacking drills near the box."}
+{"input": "how to invest in the stock market /only:lex", "output": "lex: stock market investing beginner guide\nlex: invest stocks brokerage portfolio"}
+{"input": "how to invest in the stock market /only:vec", "output": "vec: how do beginners start investing in the stock market and building a portfolio\nvec: what are the basic steps to open a brokerage account and buy stocks"}
+{"input": "how to invest in the stock market /only:hyde", "output": "hyde: To start investing, open a brokerage account with a platform like Fidelity, Schwab, or Vanguard. Begin with low-cost index funds that track the S&P 500 for broad diversification. Invest regularly through dollar-cost averaging and avoid trying to time the market."}
+{"input": "what is the role of prophets in christianity? /only:lex", "output": "lex: prophets Christianity role Bible\nlex: Christian prophets Old Testament New Testament"}
+{"input": "what is the role of prophets in christianity? /only:vec", "output": "vec: what role do prophets play in Christian theology and scripture\nvec: how are prophets understood in Christianity compared to other Abrahamic religions"}
+{"input": "what is the role of prophets in christianity? /only:hyde", "output": "hyde: In Christianity, prophets are individuals called by God to deliver divine messages and foretell events. Old Testament prophets like Isaiah and Jeremiah predicted the coming of the Messiah. In the New Testament, Jesus is seen as the ultimate fulfillment of prophetic tradition."}
+{"input": "what is a no-dig garden? /only:lex", "output": "lex: no-dig garden method sheet mulching\nlex: no-dig gardening lasagna layering technique"}
+{"input": "what is a no-dig garden? /only:vec", "output": "vec: what is a no-dig garden and how do you build one without tilling the soil\nvec: how does the no-dig gardening method work to improve soil health"}
+{"input": "what is a no-dig garden? /only:hyde", "output": "hyde: A no-dig garden is built by layering organic materials\u2014cardboard, compost, straw, and leaf mold\u2014directly on top of existing ground. This preserves soil structure, encourages worm activity, suppresses weeds, and builds fertile topsoil without the labor of digging or tilling."}
+{"input": "how to raise startup capital /only:lex", "output": "lex: raise startup capital funding sources\nlex: startup fundraising seed investors venture capital"}
+{"input": "how to raise startup capital /only:vec", "output": "vec: what are the main ways to raise capital for a new startup company\nvec: how do founders raise seed funding and early-stage investment for a startup"}
+{"input": "how to raise startup capital /only:hyde", "output": "hyde: Startup capital can come from bootstrapping, friends and family, angel investors, venture capital firms, crowdfunding platforms like Kickstarter, or government grants. Prepare a pitch deck with your business model, market size, traction metrics, and financial projections before approaching investors."}
+{"input": "how to save money effectively /only:lex", "output": "lex: save money tips budgeting strategies\nlex: effective saving habits personal finance"}
+{"input": "how to save money effectively /only:vec", "output": "vec: what are effective strategies and habits for saving money consistently\nvec: how can I create a budget and save more money each month"}
+{"input": "how to save money effectively /only:hyde", "output": "hyde: Follow the 50/30/20 rule: allocate 50% of income to needs, 30% to wants, and 20% to savings. Automate transfers to a high-yield savings account on payday. Track spending with an app, cancel unused subscriptions, and build a 3-6 month emergency fund before investing."}
+{"input": "what is the problem of evil /only:lex", "output": "lex: problem of evil philosophy theodicy\nlex: problem of evil God suffering"}
+{"input": "what is the problem of evil /only:vec", "output": "vec: what is the philosophical problem of evil and how does it challenge belief in God\nvec: how do philosophers and theologians respond to the problem of evil and suffering"}
+{"input": "what is the problem of evil /only:hyde", "output": "hyde: The problem of evil asks: if an omnipotent, omniscient, and benevolent God exists, why does suffering occur? Epicurus first formulated this dilemma. Theodicies like the free will defense and soul-making theodicy attempt to reconcile God's existence with the reality of evil."}
+{"input": "how to register to vote online /only:lex", "output": "lex: register to vote online voter registration\nlex: online voter registration state website"}
+{"input": "how to register to vote online /only:vec", "output": "vec: how can I register to vote online in my state\nvec: what do I need to register to vote through an online voter registration system"}
+{"input": "how to register to vote online /only:hyde", "output": "hyde: Most U.S. states offer online voter registration at vote.org or through the secretary of state's website. You'll need your state-issued ID number or last four digits of your Social Security number, your date of birth, and current residential address."}
+{"input": "what are the principles of evolution /only:lex", "output": "lex: principles of evolution natural selection\nlex: evolution theory variation inheritance selection"}
+{"input": "what are the principles of evolution /only:vec", "output": "vec: what are the core principles of biological evolution by natural selection\nvec: how do variation, inheritance, and selection drive the process of evolution"}
+{"input": "what are the principles of evolution /only:hyde", "output": "hyde: Evolution operates through four key principles: variation (individuals differ genetically), inheritance (traits pass from parents to offspring), selection (individuals better adapted to their environment survive and reproduce more), and time (changes accumulate across generations, leading to speciation)."}
+{"input": "explain the ten commandments /only:lex", "output": "lex: Ten Commandments Bible Exodus Deuteronomy\nlex: Ten Commandments meaning list"}
+{"input": "explain the ten commandments /only:vec", "output": "vec: what are the Ten Commandments and what does each one mean\nvec: how are the Ten Commandments explained in the Bible and interpreted by different faiths"}
+{"input": "explain the ten commandments /only:hyde", "output": "hyde: The Ten Commandments, given to Moses on Mount Sinai, include: (1) You shall have no other gods before me, (2) You shall not make idols, (3) You shall not take the Lord's name in vain, (4) Remember the Sabbath, (5) Honor your father and mother, (6) You shall not murder."}
+{"input": "how to pose people for portraits /only:lex", "output": "lex: portrait posing techniques photography\nlex: portrait photography poses guide"}
+{"input": "how to pose people for portraits /only:vec", "output": "vec: what are effective ways to pose people for flattering portrait photographs\nvec: how do professional photographers direct subjects into natural-looking portrait poses"}
+{"input": "how to pose people for portraits /only:hyde", "output": "hyde: Have your subject shift their weight to one foot and angle their body 45 degrees from the camera. Turn the chin slightly down and toward the light. For hands, give them something to hold or rest them naturally. Ask them to breathe out before the shot to relax their expression."}
+{"input": "css grid /only:lex", "output": "lex: CSS grid layout template columns rows\nlex: CSS grid container gap alignment\nlex: CSS grid-template-areas responsive"}
+{"input": "css grid /only:vec", "output": "vec: how to create page layouts using CSS grid with rows and columns\nvec: what are the key CSS grid properties for building responsive layouts"}
+{"input": "css grid /only:hyde", "output": "hyde: .container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; } .item-wide { grid-column: span 2; } CSS Grid allows two-dimensional layout control with explicit row and column definitions, making it ideal for full-page layouts."}
+{"input": "how to go plastic-free in the kitchen? /only:lex", "output": "lex: plastic-free kitchen alternatives\nlex: reduce plastic kitchen reusable containers"}
+{"input": "how to go plastic-free in the kitchen? /only:vec", "output": "vec: how can I eliminate single-use plastics from my kitchen\nvec: what are the best plastic-free alternatives for food storage and kitchen items"}
+{"input": "how to go plastic-free in the kitchen? /only:hyde", "output": "hyde: Replace plastic wrap with beeswax wraps or silicone lids. Store food in glass jars or stainless steel containers. Use bar dish soap instead of bottled liquid soap. Buy in bulk using cloth bags, and choose wooden or bamboo utensils over plastic ones."}
+{"input": "what are the teachings of confucius? /only:lex", "output": "lex: Confucius teachings Confucianism philosophy\nlex: Confucian ethics filial piety ren li"}
+{"input": "what are the teachings of confucius? /only:vec", "output": "vec: what are the main teachings and ethical principles of Confucius\nvec: how did Confucius define virtue, proper conduct, and social harmony"}
+{"input": "what are the teachings of confucius? /only:hyde", "output": "hyde: Confucius emphasized ren (benevolence), li (ritual propriety), xiao (filial piety), and junzi (the ideal of a morally cultivated person). He taught that social harmony comes from fulfilling one's role in relationships\u2014ruler to subject, parent to child, husband to wife, elder to younger, and friend to friend."}
+{"input": "what is performance art? /only:lex", "output": "lex: performance art definition live medium\nlex: performance art artists examples history"}
+{"input": "what is performance art? /only:vec", "output": "vec: what is performance art and how does it differ from traditional visual art\nvec: what are the defining characteristics and famous examples of performance art"}
+{"input": "what is performance art? /only:hyde", "output": "hyde: Performance art is a live, time-based art form in which the artist's body and actions are the medium. Emerging in the 1960s and 70s, artists like Marina Abramovi\u0107, Yoko Ono, and Joseph Beuys blurred boundaries between art and life, often engaging audiences directly."}
+{"input": "how do vaccines work /only:lex", "output": "lex: vaccines immune system antibodies mechanism\nlex: how vaccines work immunization"}
+{"input": "how do vaccines work /only:vec", "output": "vec: how do vaccines train the immune system to fight diseases\nvec: what is the biological mechanism by which vaccines provide immunity"}
+{"input": "how do vaccines work /only:hyde", "output": "hyde: Vaccines introduce a weakened, inactivated, or fragment form of a pathogen (or its mRNA blueprint) into the body. The immune system recognizes it as foreign, produces antibodies, and creates memory cells. If exposed to the real pathogen later, the immune system responds rapidly."}
+{"input": "ai-driven marketing /only:lex", "output": "lex: AI-driven marketing automation personalization\nlex: artificial intelligence marketing campaigns analytics"}
+{"input": "ai-driven marketing /only:vec", "output": "vec: how is artificial intelligence being used to drive marketing strategies and campaigns\nvec: what AI tools and techniques improve marketing personalization and customer targeting"}
+{"input": "ai-driven marketing /only:hyde", "output": "hyde: AI-driven marketing uses machine learning to segment audiences, predict customer behavior, and personalize content at scale. Tools like predictive analytics, chatbots, and recommendation engines increase conversion rates. A/B testing is automated, and ad spend is optimized in real time by algorithms."}
+{"input": "how to pursue a career in scientific research /only:lex", "output": "lex: scientific research career path academia\nlex: career scientist PhD research position"}
+{"input": "how to pursue a career in scientific research /only:vec", "output": "vec: what steps should I take to pursue a career in scientific research\nvec: what education and experience are needed to become a professional researcher in science"}
+{"input": "how to pursue a career in scientific research /only:hyde", "output": "hyde: A career in scientific research typically starts with a bachelor's degree in a STEM field, followed by a PhD program where you specialize in a research area. After completing your doctorate, postdoctoral positions provide additional training before applying for faculty or industry research roles."}
+{"input": "what is cryptocurrency trading? /only:lex", "output": "lex: cryptocurrency trading buy sell exchange\nlex: crypto trading Bitcoin Ethereum strategies"}
+{"input": "what is cryptocurrency trading? /only:vec", "output": "vec: what is cryptocurrency trading and how do people buy and sell digital currencies\nvec: how does cryptocurrency trading work on exchanges like Coinbase and Binance"}
+{"input": "what is cryptocurrency trading? /only:hyde", "output": "hyde: Cryptocurrency trading involves buying and selling digital assets like Bitcoin and Ethereum on exchanges. Traders use market orders, limit orders, and stop-losses. Strategies range from long-term holding (HODLing) to day trading based on technical analysis of price charts and volume indicators."}
+{"input": "what is calculus used for /only:lex", "output": "lex: calculus applications real world uses\nlex: calculus derivatives integrals physics engineering"}
+{"input": "what is calculus used for /only:vec", "output": "vec: what are the real-world applications of calculus in science and engineering\nvec: how is calculus used in physics, economics, and other fields"}
+{"input": "what is calculus used for /only:hyde", "output": "hyde: Calculus is used to model rates of change and accumulation. In physics, derivatives describe velocity and acceleration; integrals calculate areas and volumes. Engineers use calculus to design structures, economists model marginal cost and revenue, and biologists model population growth with differential equations."}
+{"input": "how does moral philosophy address human rights /only:lex", "output": "lex: moral philosophy human rights ethics\nlex: philosophical foundations human rights natural rights"}
+{"input": "how does moral philosophy address human rights /only:vec", "output": "vec: how does moral philosophy provide a foundation for human rights\nvec: what ethical theories support the concept of universal human rights"}
+{"input": "how does moral philosophy address human rights /only:hyde", "output": "hyde: Moral philosophy grounds human rights through several frameworks: natural law theory holds rights are inherent to human nature, Kantian ethics argues every person deserves dignity as a rational agent, and utilitarianism supports rights as instruments that maximize overall well-being."}
+{"input": "how to choose a writing genre? /only:lex", "output": "lex: choose writing genre fiction nonfiction\nlex: writing genre selection author style"}
+{"input": "how to choose a writing genre? /only:vec", "output": "vec: how should a writer choose the best genre for their writing style and interests\nvec: what factors help an author decide which literary genre to write in"}
+{"input": "how to choose a writing genre? /only:hyde", "output": "hyde: Consider what you love to read\u2014your favorite genre as a reader often translates well. Experiment by writing short pieces in different genres: fantasy, mystery, literary fiction, memoir. Pay attention to which genre energizes you and where your voice feels most natural."}
+{"input": "how to write a standout personal statement /only:lex", "output": "lex: personal statement writing tips college application\nlex: standout personal statement essay graduate school"}
+{"input": "how to write a standout personal statement /only:vec", "output": "vec: how do you write a compelling personal statement for college or graduate school admissions\nvec: what makes a personal statement stand out to admissions committees"}
+{"input": "how to write a standout personal statement /only:hyde", "output": "hyde: Open with a vivid, specific anecdote\u2014not a generic quote. Show rather than tell by describing experiences that shaped your goals. Connect your past to your intended field of study. Be authentic; admissions officers read thousands of essays and recognize genuine voice immediately."}
+{"input": "how to improve sleep quality /only:lex", "output": "lex: improve sleep quality tips habits\nlex: better sleep hygiene insomnia remedies"}
+{"input": "how to improve sleep quality /only:vec", "output": "vec: what are proven ways to improve sleep quality and fall asleep faster\nvec: how can I develop better sleep habits to get more restful sleep"}
+{"input": "how to improve sleep quality /only:hyde", "output": "hyde: Maintain a consistent sleep schedule, even on weekends. Keep your bedroom cool (65-68\u00b0F), dark, and quiet. Avoid screens for 30 minutes before bed. Limit caffeine after noon. Regular exercise improves sleep, but finish workouts at least 3 hours before bedtime."}
+{"input": "how to stay updated on global affairs /only:lex", "output": "lex: global affairs news sources current events\nlex: world news reliable sources daily updates"}
+{"input": "how to stay updated on global affairs /only:vec", "output": "vec: what are the best ways to stay informed about global affairs and world news\nvec: which news sources and tools help you keep up with international current events"}
+{"input": "how to stay updated on global affairs /only:hyde", "output": "hyde: Follow reputable outlets like Reuters, AP News, BBC World, and The Economist for balanced global coverage. Use RSS readers or news aggregator apps like Feedly. Subscribe to daily briefing newsletters such as Morning Brew or The Daily from the New York Times."}
+{"input": "what are the characteristics of renaissance architecture? /only:lex", "output": "lex: Renaissance architecture characteristics features\nlex: Renaissance architecture columns dome symmetry"}
+{"input": "what are the characteristics of renaissance architecture? /only:vec", "output": "vec: what are the defining characteristics of Renaissance architecture in Europe\nvec: how did Renaissance architects use symmetry, columns, and domes in their buildings"}
+{"input": "what are the characteristics of renaissance architecture? /only:hyde", "output": "hyde: Renaissance architecture, flourishing in 15th-16th century Italy, revived classical Greek and Roman forms. Key features include symmetrical facades, round arches, columns with Corinthian capitals, hemispherical domes (as in Brunelleschi's Florence Cathedral), and harmonious proportions based on geometry."}
+{"input": "what are color modes in photography? /only:lex", "output": "lex: color modes photography RGB CMYK sRGB\nlex: photography color space Adobe RGB ProPhoto"}
+{"input": "what are color modes in photography? /only:vec", "output": "vec: what are the different color modes and color spaces used in digital photography\nvec: how do RGB, sRGB, Adobe RGB, and CMYK color modes affect photo editing and printing"}
+{"input": "what are color modes in photography? /only:hyde", "output": "hyde: Digital photographs use RGB color mode for screens, with sRGB as the standard web color space and Adobe RGB offering a wider gamut for print work. CMYK is used for commercial printing. ProPhoto RGB captures the widest range but requires careful color management to avoid banding."}
+{"input": "how to create a zen garden? /only:lex", "output": "lex: zen garden create Japanese rock garden\nlex: zen garden design sand gravel stones"}
+{"input": "how to create a zen garden? /only:vec", "output": "vec: how do you design and create a traditional Japanese zen rock garden\nvec: what materials and layout principles are used in building a zen garden"}
+{"input": "how to create a zen garden? /only:hyde", "output": "hyde: A zen garden (karesansui) uses raked white gravel or sand to represent water, with carefully placed rocks symbolizing mountains or islands. Rake parallel lines for calm or concentric circles around rocks. Keep the design minimal\u2014moss, a few stones, and clean gravel on a flat rectangular area."}
+{"input": "mountain peak /only:lex", "output": "lex: mountain peak climbing summit elevation\nlex: highest mountain peaks world list\nlex: mountain peak hiking trails"}
+{"input": "mountain peak /only:vec", "output": "vec: what are the highest mountain peaks in the world and their elevations\nvec: how to plan a hike or climb to a mountain peak summit"}
+{"input": "mountain peak /only:hyde", "output": "hyde: Mount Everest stands at 8,849 meters (29,032 ft), the highest peak on Earth. K2 at 8,611 m and Kangchenjunga at 8,586 m follow. For trekkers, peaks like Mont Blanc (4,808 m) and Mount Kilimanjaro (5,895 m) are accessible without technical climbing experience."}
+{"input": "how to follow campaign finance laws /only:lex", "output": "lex: campaign finance laws compliance regulations\nlex: campaign finance rules FEC political donations"}
+{"input": "how to follow campaign finance laws /only:vec", "output": "vec: how do political candidates and organizations comply with campaign finance laws\nvec: what are the key campaign finance regulations and reporting requirements in the U.S."}
+{"input": "how to follow campaign finance laws /only:hyde", "output": "hyde: Campaign finance laws require candidates to register with the FEC, disclose all contributions and expenditures, and adhere to contribution limits. Individual donors can give up to $3,300 per candidate per election. PACs and Super PACs have separate rules. File quarterly reports electronically."}
+{"input": "how to advocate for education reform /only:lex", "output": "lex: education reform advocacy strategies\nlex: advocate education policy change"}
+{"input": "how to advocate for education reform /only:vec", "output": "vec: how can individuals effectively advocate for education reform in their community\nvec: what strategies work for pushing education policy changes at the local and state level"}
+{"input": "how to advocate for education reform /only:hyde", "output": "hyde: Start by attending school board meetings and building relationships with elected officials. Join or form coalitions with parent groups, teachers' unions, and nonprofits. Write op-eds, organize town halls, and use data on student outcomes to make evidence-based arguments for specific policy changes."}
+{"input": "how do philosophical arguments work /only:lex", "output": "lex: philosophical arguments logic premises conclusion\nlex: philosophical reasoning deductive inductive"}
+{"input": "how do philosophical arguments work /only:vec", "output": "vec: how are philosophical arguments structured with premises and conclusions\nvec: what makes a philosophical argument valid or sound in logic"}
+{"input": "how do philosophical arguments work /only:hyde", "output": "hyde: A philosophical argument consists of premises (claims assumed to be true) and a conclusion that follows from them. In a deductive argument, if the premises are true and the form is valid, the conclusion must be true. An argument is sound when it is both valid and its premises are actually true."}
+{"input": "fix roof /only:lex", "output": "lex: roof repair fix leak shingles\nlex: roof damage repair DIY contractor\nlex: fix roof leak flashing"}
+{"input": "fix roof /only:vec", "output": "vec: how to repair a damaged or leaking roof at home\nvec: when should you DIY a roof fix versus hiring a professional roofer"}
+{"input": "fix roof /only:hyde", "output": "hyde: For minor roof leaks, locate the source from the attic during rain. Replace cracked or missing shingles by lifting surrounding shingles, removing nails, and sliding in a new one. Apply roofing cement under flashing for small gaps. For structural damage or large areas, hire a licensed roofer."}
+{"input": "how to implement csr initiatives /only:lex", "output": "lex: CSR initiatives corporate social responsibility implementation\nlex: corporate social responsibility programs strategy"}
+{"input": "how to implement csr initiatives /only:vec", "output": "vec: how do companies implement corporate social responsibility initiatives effectively\nvec: what steps should a business take to launch a CSR program"}
+{"input": "how to implement csr initiatives /only:hyde", "output": "hyde: Start by conducting a materiality assessment to identify social and environmental issues relevant to your business and stakeholders. Set measurable goals aligned with the UN Sustainable Development Goals. Allocate budget, assign a dedicated CSR team, and report progress annually using GRI standards."}
+{"input": "how to meditate for beginners /only:lex", "output": "lex: meditation beginners guide mindfulness\nlex: beginner meditation techniques breathing"}
+{"input": "how to meditate for beginners /only:vec", "output": "vec: how do beginners start a daily meditation practice from scratch\nvec: what are simple meditation techniques for people who have never meditated before"}
+{"input": "how to meditate for beginners /only:hyde", "output": "hyde: Sit comfortably with your back straight. Close your eyes and focus on your breath\u2014notice each inhale and exhale. When thoughts arise, gently return attention to your breathing without judgment. Start with 5 minutes daily and gradually increase. Consistency matters more than duration."}
+{"input": "how to boost immune system naturally /only:lex", "output": "lex: boost immune system natural remedies\nlex: strengthen immune system diet exercise sleep"}
+{"input": "how to boost immune system naturally /only:vec", "output": "vec: what natural methods help strengthen the immune system\nvec: which foods, supplements, and lifestyle habits boost immune function naturally"}
+{"input": "how to boost immune system naturally /only:hyde", "output": "hyde: Eat a diet rich in fruits, vegetables, and lean protein to supply vitamins C, D, and zinc. Exercise moderately for 30 minutes most days. Sleep 7-9 hours per night. Manage stress through meditation or yoga. Fermented foods like yogurt and kimchi support gut health, which is linked to immune function."}
+{"input": "how to bake a cake from scratch /only:lex", "output": "lex: bake cake from scratch recipe\nlex: homemade cake recipe flour butter eggs"}
+{"input": "how to bake a cake from scratch /only:vec", "output": "vec: how do you bake a basic cake from scratch without a box mix\nvec: what is a simple recipe for baking a homemade vanilla or chocolate cake"}
+{"input": "how to bake a cake from scratch /only:hyde", "output": "hyde: Preheat oven to 350\u00b0F (175\u00b0C). Mix 2 cups flour, 1.5 cups sugar, 3 eggs, 1 cup butter, 1 cup milk, 2 tsp baking powder, 1 tsp vanilla. Pour into greased 9-inch pans and bake 30-35 minutes until a toothpick comes out clean. Cool before frosting."}
+{"input": "what are the main festivals in hinduism /only:lex", "output": "lex: Hindu festivals Diwali Holi Navratri\nlex: Hinduism religious festivals celebrations"}
+{"input": "what are the main festivals in hinduism /only:vec", "output": "vec: what are the major festivals celebrated in Hinduism and their significance\nvec: which Hindu festivals are the most widely observed and what do they celebrate"}
+{"input": "what are the main festivals in hinduism /only:hyde", "output": "hyde: Diwali, the festival of lights, celebrates the triumph of light over darkness and honors Lakshmi. Holi marks the arrival of spring with colored powders. Navratri is a nine-night festival honoring the goddess Durga. Ganesh Chaturthi celebrates the birth of Lord Ganesha with elaborate processions."}
+{"input": "how to replace car air filter? /only:lex", "output": "lex: replace car air filter engine cabin\nlex: car air filter replacement DIY steps"}
+{"input": "how to replace car air filter? /only:vec", "output": "vec: how do you replace the engine air filter in a car yourself\nvec: what are the steps to change a car's air filter at home without a mechanic"}
+{"input": "how to replace car air filter? /only:hyde", "output": "hyde: Open the hood and locate the air filter housing\u2014usually a black plastic box near the engine. Unclip the latches, remove the old filter, and note its orientation. Insert the new filter with the rubber rim facing up, close the housing, and secure the clips. Replace every 12,000-15,000 miles."}
+{"input": "digital transformation strategies /only:lex", "output": "lex: digital transformation strategy enterprise\nlex: digital transformation cloud automation AI"}
+{"input": "digital transformation strategies /only:vec", "output": "vec: what strategies do organizations use to drive successful digital transformation\nvec: how do enterprises plan and execute a digital transformation initiative"}
+{"input": "digital transformation strategies /only:hyde", "output": "hyde: A digital transformation strategy begins with assessing current processes and identifying bottlenecks. Prioritize quick wins like automating manual workflows. Migrate infrastructure to cloud platforms, adopt data analytics for decision-making, and invest in employee training. Measure ROI with KPIs tied to business outcomes."}
+{"input": "how to argument for climate action /only:lex", "output": "lex: argue climate action policy advocacy\nlex: climate change argument evidence persuasion"}
+{"input": "how to argument for climate action /only:vec", "output": "vec: how can you make a compelling argument for urgent climate action\nvec: what evidence and reasoning support the case for strong climate change policies"}
+{"input": "how to argument for climate action /only:hyde", "output": "hyde: The scientific consensus is clear: global temperatures have risen 1.1\u00b0C since pre-industrial levels, causing more extreme weather, rising seas, and ecosystem collapse. Economic analyses show that the cost of inaction\u2014estimated at $23 trillion by 2050\u2014far exceeds the investment needed for a clean energy transition."}
+{"input": "how does human activity affect climate change /only:lex", "output": "lex: human activity climate change greenhouse gas emissions\nlex: anthropogenic climate change fossil fuels deforestation"}
+{"input": "how does human activity affect climate change /only:vec", "output": "vec: how do human activities like burning fossil fuels contribute to climate change\nvec: what is the scientific evidence linking human activity to global warming"}
+{"input": "how does human activity affect climate change /only:hyde", "output": "hyde: Human activities\u2014primarily burning fossil fuels for energy, deforestation, and industrial agriculture\u2014release greenhouse gases like CO2 and methane into the atmosphere. Since 1850, atmospheric CO2 has risen from 280 to over 420 ppm, trapping heat and raising global average temperatures by 1.1\u00b0C."}
+{"input": "how to create a wildlife-friendly garden? /only:lex", "output": "lex: wildlife-friendly garden habitat plants\nlex: garden attract birds bees butterflies"}
+{"input": "how to create a wildlife-friendly garden? /only:vec", "output": "vec: how can I design a garden that attracts and supports local wildlife\nvec: what plants and features make a garden friendly to birds, bees, and butterflies"}
+{"input": "how to create a wildlife-friendly garden? /only:hyde", "output": "hyde: Plant native flowering species to attract pollinators\u2014coneflower, milkweed, and lavender support bees and butterflies. Add a shallow water dish, leave leaf litter for insects, install nest boxes for birds, and avoid pesticides. A log pile provides habitat for beetles, frogs, and hedgehogs."}
+{"input": "how to prepare for a long hike /only:lex", "output": "lex: long hike preparation gear checklist\nlex: hiking preparation training nutrition hydration"}
+{"input": "how to prepare for a long hike /only:vec", "output": "vec: how should I prepare physically and logistically for a long day hike or multi-day trek\nvec: what gear, training, and planning is needed before a long hiking trip"}
+{"input": "how to prepare for a long hike /only:hyde", "output": "hyde: Train by walking with a loaded pack for progressively longer distances over 4-6 weeks. Pack the ten essentials: navigation, sun protection, insulation, illumination, first aid, fire, tools, nutrition, hydration, and shelter. Check the weather forecast and file a trip plan with someone you trust."}
+{"input": "how to use photoshop for digital painting? /only:lex", "output": "lex: Photoshop digital painting brushes techniques\nlex: digital painting Photoshop tutorial layers"}
+{"input": "how to use photoshop for digital painting? /only:vec", "output": "vec: how do you use Adobe Photoshop for digital painting and illustration\nvec: what Photoshop tools, brushes, and techniques are essential for digital painting"}
+{"input": "how to use photoshop for digital painting? /only:hyde", "output": "hyde: In Photoshop, start a digital painting by creating a new canvas at 300 DPI. Use the Brush tool (B) with pressure sensitivity enabled on a graphics tablet. Block in shapes on separate layers, then refine details. Use layer blend modes like Multiply for shadows and Screen for highlights."}
+{"input": "what changed in kubernetes latest version /only:lex", "output": "lex: Kubernetes latest version changes release notes 2025 2026\nlex: Kubernetes new features changelog update"}
+{"input": "what changed in kubernetes latest version /only:vec", "output": "vec: what are the notable changes and new features in the latest Kubernetes release\nvec: what major features were added or deprecated in the most recent Kubernetes version in 2025 or 2026"}
+{"input": "what changed in kubernetes latest version /only:hyde", "output": "hyde: Kubernetes v1.32 introduced improvements to sidecar containers (now GA), enhanced pod scheduling with dynamic resource allocation, graduated the Gateway API to stable, and deprecated legacy in-tree cloud provider integrations in favor of external cloud controller managers."}
+{"input": "what is e-commerce? /only:lex", "output": "lex: e-commerce electronic commerce online shopping\nlex: e-commerce platform business model"}
+{"input": "what is e-commerce? /only:vec", "output": "vec: what is e-commerce and how do online businesses sell products and services\nvec: how does electronic commerce work from storefront to payment processing"}
+{"input": "what is e-commerce? /only:hyde", "output": "hyde: E-commerce (electronic commerce) is the buying and selling of goods or services over the internet. Business models include B2C (Amazon, Shopify stores), B2B (Alibaba), C2C (eBay, Etsy), and D2C (brands selling directly). Transactions are processed through payment gateways like Stripe or PayPal."}
+{"input": "what is meant by 'the good life' in philosophy /only:lex", "output": "lex: the good life philosophy eudaimonia ethics\nlex: philosophical good life Aristotle virtue happiness"}
+{"input": "what is meant by 'the good life' in philosophy /only:vec", "output": "vec: what does the concept of the good life mean in philosophy and ethics\nvec: how did Aristotle and other philosophers define what it means to live a good life"}
+{"input": "what is meant by 'the good life' in philosophy /only:hyde", "output": "hyde: In Aristotelian ethics, the good life (eudaimonia) is achieved through the practice of virtue and the exercise of reason over a complete lifetime. It is not mere pleasure but a state of flourishing\u2014living in accordance with one's highest capacities within a community."}
+{"input": "how to obtain information on federal legislation /only:lex", "output": "lex: federal legislation tracking Congress bills\nlex: federal law lookup Congress.gov bill status"}
+{"input": "how to obtain information on federal legislation /only:vec", "output": "vec: how can I find information about federal legislation and bills in the U.S. Congress\nvec: what resources are available to track federal bills and laws through the legislative process"}
+{"input": "how to obtain information on federal legislation /only:hyde", "output": "hyde: Congress.gov is the official source for federal legislation. Search by bill number, keyword, or sponsor. Each bill page shows full text, status, cosponsors, committee actions, and vote records. GovTrack.us and ProPublica's Congress API provide additional analysis and tracking tools."}
+{"input": "what are the elements of classical music? /only:lex", "output": "lex: classical music elements melody harmony rhythm\nlex: classical music composition structure form"}
+{"input": "what are the elements of classical music? /only:vec", "output": "vec: what are the fundamental elements and structures of classical music\nvec: how do melody, harmony, rhythm, and form work together in classical music compositions"}
+{"input": "what are the elements of classical music? /only:hyde", "output": "hyde: Classical music is built on melody (a sequence of notes forming a theme), harmony (chords supporting the melody), rhythm (the timing and pattern of notes), dynamics (volume changes), and form (the structure, such as sonata, rondo, or theme and variations)."}
+{"input": "what are celtic traditions and customs /only:lex", "output": "lex: Celtic traditions customs festivals Ireland Scotland\nlex: Celtic culture Samhain Beltane druids"}
+{"input": "what are celtic traditions and customs /only:vec", "output": "vec: what are the traditional customs and cultural practices of the Celtic peoples\nvec: which Celtic traditions like Samhain and Beltane are still observed today"}
+{"input": "what are celtic traditions and customs /only:hyde", "output": "hyde: Celtic traditions include seasonal festivals marking the agricultural calendar: Samhain (Oct 31) honored the dead and the start of winter, Imbolc (Feb 1) marked spring's return, Beltane (May 1) celebrated fertility with bonfires, and Lughnasadh (Aug 1) was the harvest festival. Many survive in Irish and Scottish culture today."}
+{"input": "hash code /only:lex", "output": "lex: hash code function programming\nlex: hashCode Java hash table implementation\nlex: cryptographic hash function SHA MD5"}
+{"input": "hash code /only:vec", "output": "vec: what is a hash code and how are hash functions used in programming\nvec: how does the hashCode method work in Java for hash tables and collections"}
+{"input": "hash code /only:hyde", "output": "hyde: A hash code is an integer value computed from an object's data, used to quickly locate it in a hash table. In Java, every object has a hashCode() method. For HashMap, objects with equal hashCodes go to the same bucket, and equals() resolves collisions. Override both hashCode() and equals() together."}
+{"input": "what is artificial intelligence /only:lex", "output": "lex: artificial intelligence AI machine learning\nlex: artificial intelligence definition applications"}
+{"input": "what is artificial intelligence /only:vec", "output": "vec: what is artificial intelligence and how does it work at a fundamental level\nvec: what are the main types and applications of artificial intelligence technology"}
+{"input": "what is artificial intelligence /only:hyde", "output": "hyde: Artificial intelligence (AI) is the simulation of human intelligence by computer systems. It encompasses machine learning (learning from data), natural language processing (understanding language), and computer vision (interpreting images). AI systems are trained on large datasets to recognize patterns and make predictions."}
+{"input": "what is interfaith dialogue? /only:lex", "output": "lex: interfaith dialogue religious traditions\nlex: interfaith dialogue ecumenism interreligious"}
+{"input": "what is interfaith dialogue? /only:vec", "output": "vec: what is interfaith dialogue and why is it important for religious communities\nvec: how do different religious groups engage in interfaith dialogue to promote understanding"}
+{"input": "what is interfaith dialogue? /only:hyde", "output": "hyde: Interfaith dialogue is the cooperative interaction between people of different religious traditions, aimed at mutual understanding rather than conversion. Organizations like the Parliament of the World's Religions bring together leaders from Christianity, Islam, Judaism, Hinduism, Buddhism, and others to discuss shared values and address social issues."}
+{"input": "what is darwin's theory of evolution /only:lex", "output": "lex: Darwin theory evolution natural selection\nlex: Darwin Origin of Species evolution"}
+{"input": "what is darwin's theory of evolution /only:vec", "output": "vec: what is Charles Darwin's theory of evolution by natural selection\nvec: how did Darwin explain the origin of species through natural selection and adaptation"}
+{"input": "what is darwin's theory of evolution /only:hyde", "output": "hyde: In On the Origin of Species (1859), Charles Darwin proposed that species evolve over generations through natural selection. Organisms with traits better suited to their environment survive and reproduce more, passing those advantageous traits to offspring. Over time, this leads to new species."}
+{"input": "what is permaculture gardening? /only:lex", "output": "lex: permaculture gardening design principles\nlex: permaculture garden sustainable agriculture"}
+{"input": "what is permaculture gardening? /only:vec", "output": "vec: what is permaculture gardening and how does it apply ecological design principles\nvec: how do you design a permaculture garden that mimics natural ecosystems"}
+{"input": "what is permaculture gardening? /only:hyde", "output": "hyde: Permaculture gardening applies ecological design principles to create self-sustaining food systems. It uses zones radiating from the home, guilds of companion plants, water harvesting with swales, and polyculture instead of monoculture. The goal is a garden that produces food with minimal external inputs."}
+{"input": "how to practice gratitude /only:lex", "output": "lex: gratitude practice daily journal techniques\nlex: practicing gratitude mental health benefits"}
+{"input": "how to practice gratitude /only:vec", "output": "vec: what are effective ways to practice gratitude in everyday life\nvec: how does a daily gratitude practice improve mental health and well-being"}
+{"input": "how to practice gratitude /only:hyde", "output": "hyde: Keep a gratitude journal and write three specific things you're grateful for each night\u2014not vague statements, but concrete moments. Write a gratitude letter to someone who impacted you. During meals, pause to appreciate the food. Research shows consistent gratitude practice reduces anxiety and improves sleep."}
+{"input": "what are digital credentials? /only:lex", "output": "lex: digital credentials badges certificates verification\nlex: digital credentials blockchain verifiable"}
+{"input": "what are digital credentials? /only:vec", "output": "vec: what are digital credentials and how are they used to verify qualifications\nvec: how do digital badges and verifiable credentials work for education and employment"}
+{"input": "what are digital credentials? /only:hyde", "output": "hyde: Digital credentials are electronic records that verify a person's qualifications, skills, or achievements. They include digital badges, certificates, and micro-credentials issued by platforms like Credly or Accredible. Verifiable credentials use cryptographic signatures so employers can instantly confirm authenticity without contacting the issuer."}
+{"input": "how does culture influence ethics /only:lex", "output": "lex: culture ethics moral values influence\nlex: cultural relativism ethics cross-cultural morality"}
+{"input": "how does culture influence ethics /only:vec", "output": "vec: how does culture shape people's ethical beliefs and moral values\nvec: what is the relationship between cultural norms and ethical decision-making"}
+{"input": "how does culture influence ethics /only:hyde", "output": "hyde: Culture shapes ethics by defining what a society considers right or wrong. Collectivist cultures may prioritize group harmony and duty to family, while individualist cultures emphasize personal autonomy and rights. Cultural relativism argues that moral standards are culturally defined, while universalists hold that some ethical principles transcend culture."}
+{"input": "what is stream of consciousness? /only:lex", "output": "lex: stream of consciousness writing technique\nlex: stream of consciousness Joyce Woolf literature"}
+{"input": "what is stream of consciousness? /only:vec", "output": "vec: what is the stream of consciousness technique in literature and who pioneered it\nvec: how do authors use stream of consciousness to portray inner thoughts in fiction"}
+{"input": "what is stream of consciousness? /only:hyde", "output": "hyde: Stream of consciousness is a literary method that captures the continuous flow of a character's thoughts, memories, and perceptions without conventional structure. James Joyce's Ulysses and Virginia Woolf's Mrs Dalloway are landmark examples, using free-flowing prose, associative leaps, and minimal punctuation."}
+{"input": "how do body systems work together /only:lex", "output": "lex: body systems interaction physiology\nlex: human body organ systems coordination"}
+{"input": "how do body systems work together /only:vec", "output": "vec: how do the different organ systems in the human body work together to maintain health\nvec: what are examples of body systems interacting with each other in human physiology"}
+{"input": "how do body systems work together /only:hyde", "output": "hyde: The circulatory system delivers oxygen absorbed by the respiratory system to muscles controlled by the nervous system. The digestive system breaks down nutrients that the circulatory system distributes. The endocrine system releases hormones that regulate metabolism, growth, and the immune response."}
+{"input": "what are the principles of sustainable development /only:lex", "output": "lex: sustainable development principles environmental social economic\nlex: sustainable development goals UN SDGs"}
+{"input": "what are the principles of sustainable development /only:vec", "output": "vec: what are the core principles of sustainable development and why do they matter\nvec: how do the three pillars of sustainable development balance environmental, social, and economic needs"}
+{"input": "what are the principles of sustainable development /only:hyde", "output": "hyde: Sustainable development meets present needs without compromising future generations' ability to meet theirs (Brundtland Report, 1987). Its three pillars are environmental protection, social equity, and economic viability. The UN's 17 Sustainable Development Goals (SDGs) provide a framework for global action through 2030."}
+{"input": "how to evaluate startup ideas /only:lex", "output": "lex: evaluate startup ideas validation framework\nlex: startup idea assessment market viability"}
+{"input": "how to evaluate startup ideas /only:vec", "output": "vec: how do entrepreneurs evaluate whether a startup idea is worth pursuing\nvec: what frameworks and criteria help assess the viability of a new startup idea"}
+{"input": "how to evaluate startup ideas /only:hyde", "output": "hyde: Evaluate a startup idea on four dimensions: problem severity (is this a hair-on-fire problem?), market size (TAM > $1B?), competitive landscape (what's the unfair advantage?), and founder-market fit (do you have unique insight?). Validate by talking to 50+ potential customers before writing any code."}
+{"input": "how to write a business plan /only:lex", "output": "lex: business plan writing template sections\nlex: business plan executive summary financial projections"}
+{"input": "how to write a business plan /only:vec", "output": "vec: how do you write a comprehensive business plan for a new company\nvec: what sections and information should be included in a startup business plan"}
+{"input": "how to write a business plan /only:hyde", "output": "hyde: A business plan includes: executive summary, company description, market analysis, organization structure, product/service line, marketing strategy, funding request, and financial projections. Start with a clear problem statement and your unique solution. Include 3-year revenue forecasts with assumptions clearly stated."}
+{"input": "what are greenhouse gases? /only:lex", "output": "lex: greenhouse gases CO2 methane atmosphere\nlex: greenhouse gas effect global warming climate"}
+{"input": "what are greenhouse gases? /only:vec", "output": "vec: what are greenhouse gases and how do they contribute to global warming\nvec: which gases trap heat in Earth's atmosphere and cause the greenhouse effect"}
+{"input": "what are greenhouse gases? /only:hyde", "output": "hyde: Greenhouse gases\u2014including carbon dioxide (CO2), methane (CH4), nitrous oxide (N2O), and fluorinated gases\u2014trap infrared radiation in the atmosphere, warming the planet. CO2 is the most abundant from fossil fuel combustion. Methane, though shorter-lived, is 80 times more potent over 20 years."}
+{"input": "how do religions interpret the concept of sacredness? /only:lex", "output": "lex: sacredness religion sacred concept interpretation\nlex: sacred space rituals holy religious traditions"}
+{"input": "how do religions interpret the concept of sacredness? /only:vec", "output": "vec: how do different world religions define and interpret the concept of sacredness\nvec: what does sacredness mean across Christianity, Islam, Hinduism, Buddhism, and indigenous traditions"}
+{"input": "how do religions interpret the concept of sacredness? /only:hyde", "output": "hyde: In Christianity, sacredness is conferred by God's presence\u2014churches, sacraments, and scripture are holy. In Hinduism, sacred rivers like the Ganges and temples house divine energy. Indigenous traditions see sacredness in natural features\u2014mountains, groves, and animals. Islam treats the Quran and Mecca as inviolably sacred."}
+{"input": "when to introduce solid foods to a baby? /only:lex", "output": "lex: introduce solid foods baby age months\nlex: baby first foods solids weaning schedule"}
+{"input": "when to introduce solid foods to a baby? /only:vec", "output": "vec: at what age should you start introducing solid foods to a baby\nvec: what are the signs a baby is ready for solid foods and what foods to start with"}
+{"input": "when to introduce solid foods to a baby? /only:hyde", "output": "hyde: Most pediatricians recommend introducing solid foods around 6 months of age. Signs of readiness include sitting up with support, showing interest in food, and loss of the tongue-thrust reflex. Start with single-ingredient purees like sweet potato, avocado, or iron-fortified cereal, one new food every 3-5 days."}
+{"input": "renaissance literature /only:lex", "output": "lex: Renaissance literature authors works\nlex: Renaissance literary period Shakespeare Petrarch humanism"}
+{"input": "renaissance literature /only:vec", "output": "vec: what are the major works and characteristics of Renaissance literature\nvec: how did Renaissance humanism influence literature in Europe during the 14th-17th centuries"}
+{"input": "renaissance literature /only:hyde", "output": "hyde: Renaissance literature (14th-17th century) was shaped by humanism's emphasis on individual experience and classical learning. Key figures include Petrarch (sonnets), Boccaccio (Decameron), Shakespeare (plays and sonnets), Cervantes (Don Quixote), and Machiavelli (The Prince). Vernacular languages replaced Latin as the literary standard."}
+{"input": "how digital twins transform industries /only:lex", "output": "lex: digital twins industry transformation simulation\nlex: digital twin technology manufacturing IoT"}
+{"input": "how digital twins transform industries /only:vec", "output": "vec: how are digital twins being used to transform industries like manufacturing and healthcare\nvec: what is digital twin technology and how does it improve operational efficiency in industry"}
+{"input": "how digital twins transform industries /only:hyde", "output": "hyde: A digital twin is a virtual replica of a physical asset, process, or system, updated in real time with IoT sensor data. In manufacturing, digital twins simulate production lines to predict failures. In healthcare, patient-specific organ models guide surgical planning. Energy companies use them to optimize wind turbine performance."}
+{"input": "resilience training programs /only:lex", "output": "lex: resilience training programs mental toughness\nlex: resilience building workplace employee training"}
+{"input": "resilience training programs /only:vec", "output": "vec: what are resilience training programs and how do they build mental toughness\nvec: how do organizations implement resilience training for employees and teams"}
+{"input": "resilience training programs /only:hyde", "output": "hyde: Resilience training programs teach participants to manage stress, adapt to adversity, and recover from setbacks. Common frameworks include cognitive behavioral techniques, mindfulness practices, and strengths-based coaching. The U.S. Army's Master Resilience Training and Penn Resilience Program are widely studied evidence-based models."}
+{"input": "how to jump-start a car? /only:lex", "output": "lex: jump-start car battery jumper cables\nlex: jump start dead car battery steps"}
+{"input": "how to jump-start a car? /only:vec", "output": "vec: what is the correct procedure to jump-start a car with a dead battery?\nvec: how do you connect jumper cables between two cars to restart a dead battery?"}
+{"input": "how to jump-start a car? /only:hyde", "output": "hyde: To jump-start a car, connect the red clamp to the dead battery positive terminal, then to the donor battery positive. Connect black to donor negative, then to unpainted metal on the dead car. Start the donor car, wait 2 minutes, then start the dead car."}
+{"input": "google maps /only:lex", "output": "lex: google maps directions navigation\nlex: google maps route planner\nlex: google maps API embed"}
+{"input": "google maps /only:vec", "output": "vec: how to use Google Maps for turn-by-turn driving directions\nvec: what features does Google Maps offer for route planning and navigation?"}
+{"input": "google maps /only:hyde", "output": "hyde: Open Google Maps on your phone or browser, type your destination in the search bar, and tap \"Directions.\" Choose driving, transit, walking, or cycling. The app will show estimated travel time and alternative routes."}
+{"input": "sail smooth /only:lex", "output": "lex: smooth sailing techniques\nlex: sailboat trim wind conditions\nlex: reduce boat heeling pitching"}
+{"input": "sail smooth /only:vec", "output": "vec: how do you achieve smooth sailing on a sailboat in varying wind conditions?\nvec: what techniques help reduce choppy motion and maintain a comfortable ride while sailing?"}
+{"input": "sail smooth /only:hyde", "output": "hyde: To sail smoothly, keep the boat balanced by adjusting the mainsheet and jib trim. Ease the sails slightly in gusts to reduce heeling, and steer at an angle that minimizes pitching through waves."}
+{"input": "how to create a value proposition /only:lex", "output": "lex: value proposition canvas template\nlex: unique value proposition statement\nlex: customer value proposition examples"}
+{"input": "how to create a value proposition /only:vec", "output": "vec: how do you write a compelling value proposition for a product or service?\nvec: what framework helps define a unique value proposition that resonates with target customers?"}
+{"input": "how to create a value proposition /only:hyde", "output": "hyde: A strong value proposition clearly states what your product does, who it's for, and why it's better than alternatives. Use this formula: We help [target customer] achieve [desired outcome] by [unique approach], unlike [competitors] who [limitation]."}
+{"input": "where to buy used cars online /only:lex", "output": "lex: buy used cars online marketplace\nlex: certified pre-owned cars website\nlex: online used car dealers Carvana AutoTrader"}
+{"input": "where to buy used cars online /only:vec", "output": "vec: what are the best websites for buying used cars online with delivery?\nvec: which online platforms sell certified pre-owned vehicles with warranties?"}
+{"input": "where to buy used cars online /only:hyde", "output": "hyde: Popular online used car marketplaces include Carvana, CarMax, AutoTrader, and Cars.com. Carvana offers home delivery and a 7-day return policy. CarMax provides no-haggle pricing and certified inspections on all vehicles."}
+{"input": "what are the main practices in zoroastrianism? /only:lex", "output": "lex: zoroastrianism practices rituals worship\nlex: zoroastrian fire temple prayer\nlex: zoroastrian navjote purity rituals"}
+{"input": "what are the main practices in zoroastrianism? /only:vec", "output": "vec: what are the core religious practices and rituals observed in Zoroastrianism?\nvec: how do Zoroastrians worship and what daily rituals do they follow?"}
+{"input": "what are the main practices in zoroastrianism? /only:hyde", "output": "hyde: Zoroastrians pray five times daily (the five Gahs) facing a source of light. The sacred fire is maintained in fire temples as a symbol of Ahura Mazda's truth. Key rituals include the Navjote initiation ceremony, wearing the sudreh and kusti, and maintaining ritual purity."}
+{"input": "how to increase daily physical activity /only:lex", "output": "lex: increase daily physical activity steps\nlex: exercise habits sedentary lifestyle\nlex: walking more daily movement tips"}
+{"input": "how to increase daily physical activity /only:vec", "output": "vec: what are practical ways to add more physical activity to a sedentary daily routine?\nvec: how can someone gradually increase their daily step count and movement throughout the day?"}
+{"input": "how to increase daily physical activity /only:hyde", "output": "hyde: Take the stairs instead of the elevator, park farther from entrances, and set a timer to stand and walk every 30 minutes. Aim for 10,000 steps daily by adding short walks after meals. Even 5-minute movement breaks reduce the health risks of prolonged sitting."}
+{"input": "how does bioethics address cloning /only:lex", "output": "lex: bioethics cloning human reproductive therapeutic\nlex: ethical issues cloning debate\nlex: cloning moral arguments bioethics"}
+{"input": "how does bioethics address cloning /only:vec", "output": "vec: what ethical arguments do bioethicists raise for and against human cloning?\nvec: how does the field of bioethics evaluate therapeutic versus reproductive cloning?"}
+{"input": "how does bioethics address cloning /only:hyde", "output": "hyde: Bioethicists distinguish between reproductive cloning, which aims to create a new human being, and therapeutic cloning, which produces embryonic stem cells for medical research. Most bioethicists oppose reproductive cloning due to safety risks, concerns about human dignity, and the commodification of life."}
+{"input": "what is genetic engineering /only:lex", "output": "lex: genetic engineering DNA modification\nlex: gene editing CRISPR recombinant DNA\nlex: genetically modified organisms GMO"}
+{"input": "what is genetic engineering /only:vec", "output": "vec: what is genetic engineering and how does it work to modify an organism's DNA?\nvec: what are the main techniques used in genetic engineering such as CRISPR and recombinant DNA?"}
+{"input": "what is genetic engineering /only:hyde", "output": "hyde: Genetic engineering is the direct manipulation of an organism's DNA using biotechnology. Scientists can insert, delete, or modify genes to alter traits. Key techniques include recombinant DNA technology, which combines DNA from different sources, and CRISPR-Cas9, which allows precise editing at specific locations in the genome."}
+{"input": "how to test drive a car? /only:lex", "output": "lex: test drive car checklist\nlex: car test drive tips what to check\nlex: dealership test drive questions"}
+{"input": "how to test drive a car? /only:vec", "output": "vec: what should you look for and evaluate during a car test drive?\nvec: how do you properly test drive a vehicle before buying it?"}
+{"input": "how to test drive a car? /only:hyde", "output": "hyde: During a test drive, check acceleration, braking response, and steering feel. Drive on highways, local roads, and over bumps. Listen for unusual noises. Test the infotainment system, climate control, and visibility from all mirrors. Make sure the seats are comfortable and adjust to your driving position."}
+{"input": "how do philosophers approach death /only:lex", "output": "lex: philosophy of death mortality\nlex: existentialism death Heidegger Epicurus\nlex: philosophical views afterlife mortality"}
+{"input": "how do philosophers approach death /only:vec", "output": "vec: how have major philosophers throughout history approached the concept of death and mortality?\nvec: what do existentialist and ancient philosophers say about the meaning of death?"}
+{"input": "how do philosophers approach death /only:hyde", "output": "hyde: Epicurus argued that death is nothing to fear because when death exists, we do not. Heidegger saw death as central to authentic existence, calling it \"Being-toward-death.\" The Stoics taught that meditating on mortality (memento mori) leads to a more purposeful life."}
+{"input": "what is the capital of japan /only:lex", "output": "lex: capital Japan Tokyo\nlex: Tokyo capital city Japan"}
+{"input": "what is the capital of japan /only:vec", "output": "vec: what city is the capital of Japan?\nvec: when did Tokyo become the capital of Japan?"}
+{"input": "what is the capital of japan /only:hyde", "output": "hyde: Tokyo is the capital city of Japan. It became the capital in 1868 when Emperor Meiji moved the imperial seat from Kyoto. Tokyo, located on the eastern coast of Honshu, is the most populous metropolitan area in the world with over 37 million residents."}
+{"input": "what is the significance of the afterlife in different faiths? /only:lex", "output": "lex: afterlife beliefs religions Christianity Islam Buddhism\nlex: heaven hell reincarnation afterlife\nlex: religious views life after death"}
+{"input": "what is the significance of the afterlife in different faiths? /only:vec", "output": "vec: how do different world religions view the afterlife and what happens after death?\nvec: what role does belief in the afterlife play in Christianity, Islam, Hinduism, and Buddhism?"}
+{"input": "what is the significance of the afterlife in different faiths? /only:hyde", "output": "hyde: In Christianity, the afterlife involves heaven or hell based on faith and deeds. Islam teaches judgment day followed by paradise (Jannah) or hellfire. Hinduism and Buddhism believe in reincarnation, where the soul is reborn based on karma until achieving moksha or nirvana."}
+{"input": "what is 3d printing and how does it work /only:lex", "output": "lex: 3D printing additive manufacturing process\nlex: FDM SLA 3D printer filament resin\nlex: 3D printing layer by layer CAD model"}
+{"input": "what is 3d printing and how does it work /only:vec", "output": "vec: how does 3D printing work to create objects layer by layer from a digital model?\nvec: what are the main types of 3D printing technologies such as FDM and SLA?"}
+{"input": "what is 3d printing and how does it work /only:hyde", "output": "hyde: 3D printing, or additive manufacturing, builds objects layer by layer from a digital CAD file. The most common method, FDM (Fused Deposition Modeling), melts plastic filament and extrudes it through a nozzle. SLA (Stereolithography) uses a UV laser to cure liquid resin into solid layers."}
+{"input": "how do i contact my congressperson /only:lex", "output": "lex: contact congressperson phone email address\nlex: find elected representative congress\nlex: write letter senator representative"}
+{"input": "how do i contact my congressperson /only:vec", "output": "vec: how can I find and contact my U.S. congressional representative or senator?\nvec: what is the best way to reach out to my congressperson about an issue?"}
+{"input": "how do i contact my congressperson /only:hyde", "output": "hyde: Visit house.gov and enter your zip code to find your U.S. Representative. For senators, go to senate.gov. You can call their D.C. or district office, send an email through their website contact form, or mail a letter. Calling the Capitol switchboard at (202) 224-3121 connects you to any member's office."}
+{"input": "what is stream of consciousness writing? /only:lex", "output": "lex: stream of consciousness writing technique\nlex: stream of consciousness literature Joyce Woolf\nlex: interior monologue narrative style"}
+{"input": "what is stream of consciousness writing? /only:vec", "output": "vec: what is stream of consciousness as a literary writing technique?\nvec: how did authors like James Joyce and Virginia Woolf use stream of consciousness in their novels?"}
+{"input": "what is stream of consciousness writing? /only:hyde", "output": "hyde: Stream of consciousness is a narrative technique that presents a character's continuous flow of thoughts, feelings, and associations without conventional structure. James Joyce's \"Ulysses\" and Virginia Woolf's \"Mrs Dalloway\" are landmark examples, using long unpunctuated passages to mimic the way the mind actually works."}
+{"input": "how to use a ring light /only:lex", "output": "lex: ring light setup photography video\nlex: ring light placement distance camera\nlex: ring light selfie video lighting"}
+{"input": "how to use a ring light /only:vec", "output": "vec: how do you set up and position a ring light for video recording or photography?\nvec: what are the best settings and distance for using a ring light for selfies and video calls?"}
+{"input": "how to use a ring light /only:hyde", "output": "hyde: Place the ring light directly in front of your face at eye level, with the camera positioned in the center of the ring. Keep the light 12-24 inches from your face for an even, shadow-free glow. Adjust brightness to avoid overexposure. The circular catchlights in the eyes are a signature look."}
+{"input": "how to engage in civic duties /only:lex", "output": "lex: civic duties voting jury duty community\nlex: civic engagement participation democracy\nlex: citizen responsibilities voting volunteering"}
+{"input": "how to engage in civic duties /only:vec", "output": "vec: what are the main civic duties citizens should participate in beyond voting?\nvec: how can someone actively engage in civic responsibilities in their local community?"}
+{"input": "how to engage in civic duties /only:hyde", "output": "hyde: Civic duties include voting in elections, serving on a jury when called, staying informed about local issues, attending town hall meetings, volunteering for community organizations, and contacting elected officials about policy concerns. Voting in local elections has the most direct impact on your daily life."}
+{"input": "spain life /only:lex", "output": "lex: living in Spain expat lifestyle\nlex: Spain cost of living culture daily life\nlex: move to Spain quality of life"}
+{"input": "spain life /only:vec", "output": "vec: what is daily life like for someone living in Spain as an expat or resident?\nvec: what is the cost of living and quality of life in Spain compared to other European countries?"}
+{"input": "spain life /only:hyde", "output": "hyde: Life in Spain revolves around a later schedule than most of Europe. Lunch is the main meal, typically eaten between 2-3 PM, and dinner is served after 9 PM. The cost of living is lower than in northern Europe, with affordable housing outside Madrid and Barcelona. The climate, healthcare system, and social culture attract many expats."}
+{"input": "ai-driven analytics /only:lex", "output": "lex: AI-driven analytics machine learning data\nlex: artificial intelligence business analytics platform\nlex: AI predictive analytics tools"}
+{"input": "ai-driven analytics /only:vec", "output": "vec: how are AI and machine learning used to power data analytics and business intelligence?\nvec: what AI-driven analytics platforms help businesses make data-driven predictions?"}
+{"input": "ai-driven analytics /only:hyde", "output": "hyde: AI-driven analytics uses machine learning algorithms to automatically detect patterns, anomalies, and trends in large datasets. Unlike traditional BI tools, AI analytics can generate predictive forecasts, perform natural language queries, and surface insights without manual configuration."}
+{"input": "where to buy vintage home accessories /only:lex", "output": "lex: vintage home accessories shop online\nlex: retro home decor antique store\nlex: vintage furniture accessories Etsy eBay"}
+{"input": "where to buy vintage home accessories /only:vec", "output": "vec: where can I buy vintage and antique home decor accessories online?\nvec: what are the best stores and websites for finding retro and vintage home furnishings?"}
+{"input": "where to buy vintage home accessories /only:hyde", "output": "hyde: Shop vintage home accessories on Etsy, Chairish, and 1stDibs for curated antique finds. Local estate sales and flea markets often have unique pieces at lower prices. Ruby Lane specializes in antiques, while eBay offers a wide selection of retro decor from various eras."}
+{"input": "how to join a political party /only:lex", "output": "lex: join political party registration\nlex: register Democrat Republican party membership\nlex: political party membership sign up"}
+{"input": "how to join a political party /only:vec", "output": "vec: how do you officially join or register with a political party in the United States?\nvec: what is the process for becoming a member of a political party?"}
+{"input": "how to join a political party /only:hyde", "output": "hyde: To join a political party in the U.S., register with your state's election office by selecting a party affiliation on your voter registration form. You can register online, by mail, or at your local DMV. Some states allow you to change party affiliation at any time, while others have deadlines before primary elections."}
+{"input": "how to quit smoking? /only:lex", "output": "lex: quit smoking methods nicotine\nlex: stop smoking cessation plan\nlex: nicotine replacement therapy patches gum"}
+{"input": "how to quit smoking? /only:vec", "output": "vec: what are the most effective methods and strategies to quit smoking permanently?\nvec: how do nicotine replacement therapies and medications help people stop smoking?"}
+{"input": "how to quit smoking? /only:hyde", "output": "hyde: The most effective approach combines nicotine replacement therapy (patches, gum, or lozenges) with behavioral support. Prescription medications like varenicline (Chantix) and bupropion can double quit rates. Set a quit date, identify triggers, and call 1-800-QUIT-NOW for free coaching."}
+{"input": "what is phenomenological existentialism /only:lex", "output": "lex: phenomenological existentialism Heidegger Sartre\nlex: phenomenology existentialism lived experience\nlex: existential phenomenology philosophy"}
+{"input": "what is phenomenological existentialism /only:vec", "output": "vec: what is phenomenological existentialism and how does it differ from other branches of existentialism?\nvec: how did Heidegger and Sartre combine phenomenology with existentialist philosophy?"}
+{"input": "what is phenomenological existentialism /only:hyde", "output": "hyde: Phenomenological existentialism applies Husserl's phenomenological method to existential questions about human existence. Heidegger's \"Being and Time\" analyzes Dasein (being-there) through the structures of lived experience. Sartre extended this in \"Being and Nothingness,\" arguing that consciousness is always directed toward objects and that existence precedes essence."}
+{"input": "how to install car seat covers? /only:lex", "output": "lex: install car seat covers DIY\nlex: car seat cover fitting instructions\nlex: universal seat covers installation steps"}
+{"input": "how to install car seat covers? /only:vec", "output": "vec: what is the step-by-step process for installing car seat covers?\nvec: how do you fit universal car seat covers on front and rear seats?"}
+{"input": "how to install car seat covers? /only:hyde", "output": "hyde: Pull the seat cover over the top of the headrest and stretch it down over the backrest. Tuck the excess fabric into the gap between the seat and backrest. Hook the elastic straps underneath the seat and clip them together. For bucket seats, align the cover's seams with the seat contours before securing."}
+{"input": "what is the scientific process for drug development /only:lex", "output": "lex: drug development process phases clinical trials\nlex: pharmaceutical drug approval FDA pipeline\nlex: preclinical clinical trial Phase 1 2 3"}
+{"input": "what is the scientific process for drug development /only:vec", "output": "vec: what are the stages of the scientific process for developing and approving a new pharmaceutical drug?\nvec: how does a drug go from laboratory discovery through clinical trials to FDA approval?"}
+{"input": "what is the scientific process for drug development /only:hyde", "output": "hyde: Drug development follows a pipeline: discovery and preclinical testing (3-6 years), Phase I trials testing safety in small groups, Phase II trials evaluating efficacy, Phase III large-scale trials confirming effectiveness, and FDA review. The entire process typically takes 10-15 years and costs over $1 billion."}
+{"input": "what is climate change /only:lex", "output": "lex: climate change global warming greenhouse gases\nlex: climate change causes effects CO2\nlex: global temperature rise fossil fuels"}
+{"input": "what is climate change /only:vec", "output": "vec: what is climate change and what are its primary causes and effects on the planet?\nvec: how do greenhouse gas emissions from fossil fuels contribute to global climate change?"}
+{"input": "what is climate change /only:hyde", "output": "hyde: Climate change refers to long-term shifts in global temperatures and weather patterns. Since the Industrial Revolution, burning fossil fuels has released CO2 and other greenhouse gases that trap heat in the atmosphere, raising the average global temperature by about 1.1\u00b0C. This causes rising sea levels, extreme weather, and ecosystem disruption."}
+{"input": "how to sell a car privately? /only:lex", "output": "lex: sell car privately steps title transfer\nlex: private car sale listing price\nlex: sell used car by owner paperwork"}
+{"input": "how to sell a car privately? /only:vec", "output": "vec: what are the steps to sell a car privately without a dealer?\nvec: what paperwork and documentation do you need to sell a car to a private buyer?"}
+{"input": "how to sell a car privately? /only:hyde", "output": "hyde: To sell a car privately, first determine a fair price using Kelley Blue Book or Edmunds. Gather the title, maintenance records, and smog certificate. List the car on Craigslist, Facebook Marketplace, or AutoTrader. When meeting buyers, accept cashier's checks or cash. Sign the title over and file a release of liability with your DMV."}
+{"input": "how to analyze a political candidate's stance /only:lex", "output": "lex: analyze political candidate stance positions\nlex: candidate policy positions voting record\nlex: compare political candidates issues"}
+{"input": "how to analyze a political candidate's stance /only:vec", "output": "vec: how do you research and analyze a political candidate's policy positions and voting record?\nvec: what tools and resources help voters compare political candidates on key issues?"}
+{"input": "how to analyze a political candidate's stance /only:hyde", "output": "hyde: Review the candidate's official website for stated policy positions. Check their voting record on congress.gov or VoteSmart.org. Compare their stances on key issues using tools like ISideWith or BallotReady. Look for consistency between their statements and votes, and check campaign finance records on OpenSecrets."}
+{"input": "what is lean startup methodology /only:lex", "output": "lex: lean startup methodology MVP\nlex: lean startup build measure learn\nlex: Eric Ries lean startup principles"}
+{"input": "what is lean startup methodology /only:vec", "output": "vec: what is the lean startup methodology and how does the build-measure-learn cycle work?\nvec: how does the lean startup approach use minimum viable products to validate business ideas?"}
+{"input": "what is lean startup methodology /only:hyde", "output": "hyde: The lean startup methodology, developed by Eric Ries, emphasizes rapid iteration through the Build-Measure-Learn feedback loop. Start by building a Minimum Viable Product (MVP), measure how customers respond using actionable metrics, and learn whether to pivot or persevere. The goal is to reduce waste by validating assumptions before investing heavily."}
+{"input": "what is the renaissance /only:lex", "output": "lex: Renaissance period history art culture\nlex: Renaissance 14th 15th 16th century Italy Europe\nlex: Renaissance art Leonardo Michelangelo humanism"}
+{"input": "what is the renaissance /only:vec", "output": "vec: what was the Renaissance period and what were its major cultural and artistic achievements?\nvec: how did the Renaissance transform European art, science, and intellectual thought?"}
+{"input": "what is the renaissance /only:hyde", "output": "hyde: The Renaissance was a cultural movement spanning roughly the 14th to 17th centuries, originating in Florence, Italy. It marked a revival of classical Greek and Roman learning, emphasizing humanism, individualism, and secular inquiry. Major figures include Leonardo da Vinci, Michelangelo, and Galileo."}
+{"input": "faith respect /only:lex", "output": "lex: interfaith respect tolerance\nlex: respecting different faiths religions\nlex: religious tolerance diversity beliefs"}
+{"input": "faith respect /only:vec", "output": "vec: how can people show respect for different religious faiths and beliefs?\nvec: what does interfaith respect and dialogue look like in diverse communities?"}
+{"input": "faith respect /only:hyde", "output": "hyde: Respecting others' faith means listening without judgment, learning about different religious traditions, and recognizing that spiritual beliefs are deeply personal. Interfaith dialogue builds mutual understanding by focusing on shared values like compassion, justice, and community while honoring theological differences."}
+{"input": "where to find heirloom seed suppliers? /only:lex", "output": "lex: heirloom seed suppliers catalog\nlex: buy heirloom seeds online non-GMO\nlex: heirloom vegetable seed company"}
+{"input": "where to find heirloom seed suppliers? /only:vec", "output": "vec: where can I buy heirloom and non-GMO seeds from reputable suppliers?\nvec: what are the best heirloom seed companies that sell open-pollinated vegetable seeds?"}
+{"input": "where to find heirloom seed suppliers? /only:hyde", "output": "hyde: Top heirloom seed suppliers include Baker Creek Heirloom Seeds, Seed Savers Exchange, and Johnny's Selected Seeds. Baker Creek offers over 1,800 open-pollinated varieties with free shipping. Seed Savers Exchange is a nonprofit dedicated to preserving rare heirloom varieties through their seed bank and catalog."}
+{"input": "how do christians celebrate easter /only:lex", "output": "lex: Christian Easter celebration traditions\nlex: Easter Sunday church service resurrection\nlex: Holy Week Good Friday Easter customs"}
+{"input": "how do christians celebrate easter /only:vec", "output": "vec: how do Christians celebrate Easter and what are the main traditions of Holy Week?\nvec: what religious services and customs do Christians observe during the Easter season?"}
+{"input": "how do christians celebrate easter /only:hyde", "output": "hyde: Christians celebrate Easter as the resurrection of Jesus Christ on the third day after his crucifixion. Holy Week begins with Palm Sunday, followed by Maundy Thursday communion, Good Friday services, and Easter Sunday worship. Many churches hold sunrise services, and traditions include Easter egg hunts, lilies, and special meals."}
+{"input": "what are exchange-traded funds (etfs) /only:lex", "output": "lex: exchange-traded funds ETFs investing\nlex: ETF index fund stock market\nlex: ETF vs mutual fund comparison"}
+{"input": "what are exchange-traded funds (etfs) /only:vec", "output": "vec: what are exchange-traded funds (ETFs) and how do they work as an investment?\nvec: how do ETFs differ from mutual funds and what are their advantages for investors?"}
+{"input": "what are exchange-traded funds (etfs) /only:hyde", "output": "hyde: An exchange-traded fund (ETF) is a basket of securities that trades on a stock exchange like a single stock. ETFs typically track an index like the S&P 500 and offer diversification at a low expense ratio. Unlike mutual funds, ETFs can be bought and sold throughout the trading day at market price."}
+{"input": "how to enhance creativity? /only:lex", "output": "lex: enhance creativity techniques exercises\nlex: boost creative thinking brainstorming\nlex: creativity habits daily practice"}
+{"input": "how to enhance creativity? /only:vec", "output": "vec: what are proven techniques and exercises to enhance creative thinking?\nvec: how can someone develop daily habits that boost creativity and generate new ideas?"}
+{"input": "how to enhance creativity? /only:hyde", "output": "hyde: To enhance creativity, practice divergent thinking by generating many ideas without judgment. Keep a daily journal, expose yourself to new experiences, and set aside unstructured time for daydreaming. Research shows that walking, adequate sleep, and constraints can all stimulate creative problem-solving."}
+{"input": "what are the key features of taoist philosophy? /only:lex", "output": "lex: Taoist philosophy Taoism key concepts\nlex: Tao Te Ching wu wei Taoism\nlex: Taoism yin yang natural harmony"}
+{"input": "what are the key features of taoist philosophy? /only:vec", "output": "vec: what are the central concepts and key features of Taoist philosophy?\nvec: how does Taoism emphasize living in harmony with the Tao and the concept of wu wei?"}
+{"input": "what are the key features of taoist philosophy? /only:hyde", "output": "hyde: Taoism centers on the Tao (the Way), an ineffable force that underlies all existence. Key concepts include wu wei (non-action or effortless action), living in harmony with nature, and the balance of yin and yang. The Tao Te Ching by Laozi and the Zhuangzi are the foundational texts."}
+{"input": "how to effectively visualize scientific data /only:lex", "output": "lex: scientific data visualization charts graphs\nlex: data visualization tools matplotlib Python\nlex: scientific figure plotting techniques"}
+{"input": "how to effectively visualize scientific data /only:vec", "output": "vec: what are effective techniques for visualizing scientific data in charts and graphs?\nvec: which tools and software are best for creating publication-quality scientific data visualizations?"}
+{"input": "how to effectively visualize scientific data /only:hyde", "output": "hyde: Choose chart types that match your data: scatter plots for correlations, bar charts for comparisons, line plots for time series, and heatmaps for matrices. Use matplotlib or ggplot2 for publication figures. Minimize chart junk, label axes clearly, and use colorblind-friendly palettes like viridis."}
+{"input": "where to watch live nba games? /only:lex", "output": "lex: watch live NBA games streaming\nlex: NBA League Pass live stream TV\nlex: NBA games broadcast ESPN TNT"}
+{"input": "where to watch live nba games? /only:vec", "output": "vec: where can I watch live NBA basketball games online or on TV?\nvec: what streaming services and TV channels broadcast live NBA games in 2025-2026?"}
+{"input": "where to watch live nba games? /only:hyde", "output": "hyde: Live NBA games air on ESPN, TNT, and ABC during the regular season. NBA League Pass streams all out-of-market games. Streaming options include Sling TV, YouTube TV, and Hulu + Live TV for cable-free access. The NBA app offers free highlights and select live games on mobile."}
+{"input": "what was the impact of the industrial revolution on society? /only:lex", "output": "lex: Industrial Revolution impact society economy\nlex: Industrial Revolution social changes urbanization\nlex: Industrial Revolution labor factories 18th 19th century"}
+{"input": "what was the impact of the industrial revolution on society? /only:vec", "output": "vec: how did the Industrial Revolution transform society, economy, and daily life?\nvec: what were the major social and economic impacts of the Industrial Revolution on workers and cities?"}
+{"input": "what was the impact of the industrial revolution on society? /only:hyde", "output": "hyde: The Industrial Revolution (1760-1840) shifted economies from agrarian to industrial, triggering mass urbanization as workers moved to factory cities. It created a new working class, child labor, and pollution, but also raised living standards over time, enabled mass production, and spurred technological innovation in transportation and communication."}
+{"input": "wisdom gain /only:lex", "output": "lex: gaining wisdom life experience\nlex: wisdom philosophy personal growth\nlex: how to become wiser decision making"}
+{"input": "wisdom gain /only:vec", "output": "vec: how does a person gain wisdom through life experience and reflection?\nvec: what do philosophers and psychologists say about how wisdom is acquired?"}
+{"input": "wisdom gain /only:hyde", "output": "hyde: Wisdom is gained through a combination of diverse life experience, reflective thinking, and learning from mistakes. Psychologist Paul Baltes identified wisdom as expert knowledge about the fundamental pragmatics of life, including understanding uncertainty, managing emotions, and balancing competing interests."}
+{"input": "what is the role of local government /only:lex", "output": "lex: local government role responsibilities\nlex: city county municipal government services\nlex: local government functions zoning schools police"}
+{"input": "what is the role of local government /only:vec", "output": "vec: what are the main roles and responsibilities of local government in a community?\nvec: how does local city and county government provide public services and manage community affairs?"}
+{"input": "what is the role of local government /only:hyde", "output": "hyde: Local governments provide essential services including public schools, police and fire departments, road maintenance, water and sewer systems, zoning and land use planning, parks, and public transit. City councils and county boards set local taxes, pass ordinances, and approve budgets that directly affect residents' daily lives."}
+{"input": "what is metaphysical ethics /only:lex", "output": "lex: metaphysical ethics philosophy morality\nlex: metaphysics ethics moral realism\nlex: metaethics ontology moral facts"}
+{"input": "what is metaphysical ethics /only:vec", "output": "vec: what is metaphysical ethics and how does it relate to the nature of moral reality?\nvec: how does metaphysics inform ethical theory and questions about whether moral facts exist?"}
+{"input": "what is metaphysical ethics /only:hyde", "output": "hyde: Metaphysical ethics, closely related to metaethics, examines the ontological status of moral values. It asks whether moral facts exist independently of human minds (moral realism) or are human constructions (anti-realism). This branch investigates the metaphysical foundations that underlie ethical claims, such as whether \"goodness\" is a real property in the world."}
+{"input": "what is empiricism /only:lex", "output": "lex: empiricism philosophy knowledge experience\nlex: empiricism Locke Hume sensory evidence\nlex: empiricism vs rationalism epistemology"}
+{"input": "what is empiricism /only:vec", "output": "vec: what is empiricism in philosophy and how does it claim knowledge is acquired through experience?\nvec: how did philosophers like John Locke and David Hume develop the theory of empiricism?"}
+{"input": "what is empiricism /only:hyde", "output": "hyde: Empiricism is the philosophical theory that all knowledge is derived from sensory experience rather than innate ideas. John Locke argued the mind starts as a \"tabula rasa\" (blank slate), and David Hume extended this by arguing that even causal relationships are known only through observation and habit, not reason alone."}
+{"input": "what is epistemology /only:lex", "output": "lex: epistemology philosophy knowledge\nlex: epistemology theory of knowledge justified belief\nlex: epistemology truth belief justification"}
+{"input": "what is epistemology /only:vec", "output": "vec: what is epistemology and what questions does it address about knowledge and belief?\nvec: how does epistemology study the nature, sources, and limits of human knowledge?"}
+{"input": "what is epistemology /only:hyde", "output": "hyde: Epistemology is the branch of philosophy concerned with the nature, scope, and limits of knowledge. It examines questions like: What is knowledge? How is it different from mere belief? What counts as justification? The classic definition from Plato is that knowledge is justified true belief, though this was challenged by Gettier in 1963."}
+{"input": "what is the significance of community in spirituality? /only:lex", "output": "lex: community spirituality religious fellowship\nlex: spiritual community congregation sangha\nlex: communal worship spiritual practice"}
+{"input": "what is the significance of community in spirituality? /only:vec", "output": "vec: why is community considered important in spiritual and religious practice?\nvec: how does belonging to a spiritual community enhance personal faith and practice?"}
+{"input": "what is the significance of community in spirituality? /only:hyde", "output": "hyde: Spiritual communities provide shared worship, accountability, and mutual support that deepen individual faith. In Christianity, the church body gathers for fellowship; in Buddhism, the sangha is one of the Three Jewels; in Judaism, a minyan of ten is required for communal prayer. Communal practice reinforces commitment and provides belonging."}
+{"input": "what is the difference between memoir and autobiography? /only:lex", "output": "lex: memoir vs autobiography difference\nlex: memoir autobiography literary genre\nlex: memoir personal narrative autobiography life story"}
+{"input": "what is the difference between memoir and autobiography? /only:vec", "output": "vec: what is the difference between a memoir and an autobiography as literary genres?\nvec: how does a memoir's scope and focus differ from a full autobiography?"}
+{"input": "what is the difference between memoir and autobiography? /only:hyde", "output": "hyde: An autobiography covers the author's entire life chronologically, from birth to the present. A memoir focuses on a specific theme, period, or set of experiences from the author's life, emphasizing emotional truth and reflection. Memoirs are often more literary and thematic, while autobiographies are more comprehensive and factual."}
+{"input": "what is the significance of allegory? /only:lex", "output": "lex: allegory literary device significance\nlex: allegory examples literature symbolism\nlex: allegorical writing Pilgrim's Progress Animal Farm"}
+{"input": "what is the significance of allegory? /only:vec", "output": "vec: what is an allegory in literature and why is it a significant literary device?\nvec: how do authors use allegory to convey deeper moral or political meanings through symbolic narratives?"}
+{"input": "what is the significance of allegory? /only:hyde", "output": "hyde: An allegory is a narrative in which characters, events, and settings symbolically represent abstract ideas or moral concepts. Orwell's \"Animal Farm\" allegorizes the Russian Revolution; Bunyan's \"Pilgrim's Progress\" represents the Christian spiritual journey. Allegory allows writers to critique society, explore complex ideas, and engage readers on multiple levels."}
+{"input": "portrait photography tips /only:lex", "output": "lex: portrait photography tips lighting posing\nlex: portrait photo camera settings lens\nlex: headshot portrait natural light composition"}
+{"input": "portrait photography tips /only:vec", "output": "vec: what are the best tips for taking professional-quality portrait photographs?\nvec: how should you set up lighting, posing, and camera settings for portrait photography?"}
+{"input": "portrait photography tips /only:hyde", "output": "hyde: Use an 85mm or 50mm lens at f/1.8-f/2.8 to create a pleasing background blur. Position your subject near a window for soft natural light, or use a reflector to fill shadows. Focus on the nearest eye, shoot at eye level, and direct your subject to angle their body 45 degrees to the camera."}
+{"input": "how to build passive income /only:lex", "output": "lex: build passive income streams\nlex: passive income ideas investments dividends\nlex: earn passive income rental property online"}
+{"input": "how to build passive income /only:vec", "output": "vec: what are the most reliable ways to build passive income streams?\nvec: how can someone start generating passive income through investments, rental property, or online businesses?"}
+{"input": "how to build passive income /only:hyde", "output": "hyde: Common passive income sources include dividend stocks yielding 3-5% annually, rental properties generating monthly cash flow, index fund investments, creating digital products or online courses, and building affiliate marketing websites. Start by investing in a low-cost S&P 500 index fund and reinvesting dividends."}
+{"input": "how to choose the right camera /only:lex", "output": "lex: choose camera DSLR mirrorless beginner\nlex: camera buying guide sensor megapixels\nlex: best camera photography type budget"}
+{"input": "how to choose the right camera /only:vec", "output": "vec: how do you choose the right camera for your photography needs and budget?\nvec: what factors should you consider when deciding between DSLR and mirrorless cameras?"}
+{"input": "how to choose the right camera /only:hyde", "output": "hyde: Decide what you'll shoot most: landscapes, portraits, video, or street photography. Mirrorless cameras are lighter with faster autofocus, while DSLRs offer longer battery life and more lens options. Key specs to compare: sensor size (full-frame vs APS-C), megapixels, autofocus points, and video capabilities. Budget $500-1000 for a capable starter body."}
+{"input": "what is the significance of the great barrier reef? /only:lex", "output": "lex: Great Barrier Reef significance ecosystem\nlex: Great Barrier Reef coral biodiversity Australia\nlex: Great Barrier Reef marine life conservation"}
+{"input": "what is the significance of the great barrier reef? /only:vec", "output": "vec: why is the Great Barrier Reef ecologically significant and important to protect?\nvec: what makes the Great Barrier Reef the world's largest coral reef system and why is it under threat?"}
+{"input": "what is the significance of the great barrier reef? /only:hyde", "output": "hyde: The Great Barrier Reef, stretching over 2,300 km along Australia's northeast coast, is the world's largest coral reef system and is visible from space. It supports over 1,500 fish species, 400 coral species, and countless marine organisms. It's a UNESCO World Heritage Site threatened by coral bleaching from rising ocean temperatures."}
+{"input": "how to celebrate holi festival /only:lex", "output": "lex: Holi festival celebration traditions India\nlex: Holi festival of colors powder\nlex: how to celebrate Holi customs food"}
+{"input": "how to celebrate holi festival /only:vec", "output": "vec: how is the Holi festival celebrated and what are its main traditions and customs?\nvec: what are the traditional ways to celebrate Holi with colors, food, and bonfires?"}
+{"input": "how to celebrate holi festival /only:hyde", "output": "hyde: Holi is celebrated over two days: Holika Dahan (bonfire night) and Rangwali Holi (color day). On the morning of Holi, people gather outdoors to throw colored powders (gulal) and spray colored water at each other. Traditional foods include gujiya (sweet dumplings), thandai (spiced milk drink), and puran poli."}
+{"input": "how to negotiate a salary? /only:lex", "output": "lex: negotiate salary offer tips\nlex: salary negotiation techniques counter offer\nlex: job offer salary negotiation script"}
+{"input": "how to negotiate a salary? /only:vec", "output": "vec: what are effective strategies for negotiating a higher salary during a job offer?\nvec: how do you prepare for and conduct a successful salary negotiation?"}
+{"input": "how to negotiate a salary? /only:hyde", "output": "hyde: Research the market rate for your role on Glassdoor, Levels.fyi, or Payscale before negotiating. When you receive an offer, express enthusiasm, then say \"I was hoping for something closer to [target].\" Always negotiate based on market data and your value, not personal needs. Aim 10-20% above the initial offer."}
+{"input": "what is sacred geometry? /only:lex", "output": "lex: sacred geometry patterns symbols\nlex: sacred geometry golden ratio Fibonacci\nlex: sacred geometry Flower of Life Metatron"}
+{"input": "what is sacred geometry? /only:vec", "output": "vec: what is sacred geometry and what mathematical patterns are considered sacred?\nvec: how do sacred geometry concepts like the golden ratio and Flower of Life appear in nature and architecture?"}
+{"input": "what is sacred geometry? /only:hyde", "output": "hyde: Sacred geometry assigns symbolic and spiritual meaning to geometric shapes and proportions found in nature. Key patterns include the Flower of Life (overlapping circles), Metatron's Cube, the golden ratio (1.618), and the Fibonacci spiral. These patterns appear in sunflower seeds, nautilus shells, and ancient temple architecture."}
+{"input": "what is political corruption /only:lex", "output": "lex: political corruption bribery abuse of power\nlex: government corruption examples types\nlex: political corruption embezzlement nepotism"}
+{"input": "what is political corruption /only:vec", "output": "vec: what is political corruption and what forms does it take in government?\nvec: how does political corruption such as bribery and embezzlement undermine democratic governance?"}
+{"input": "what is political corruption /only:hyde", "output": "hyde: Political corruption is the abuse of public office for private gain. Forms include bribery (accepting payments for favorable decisions), embezzlement of public funds, nepotism (appointing relatives to positions), patronage, and vote-buying. Transparency International's Corruption Perceptions Index ranks countries by perceived levels of public sector corruption."}
+{"input": "what are the rituals of islam /only:lex", "output": "lex: Islam rituals Five Pillars worship\nlex: Islamic prayer salat fasting Ramadan\nlex: Muslim rituals hajj pilgrimage zakat"}
+{"input": "what are the rituals of islam /only:vec", "output": "vec: what are the main rituals and religious practices in Islam?\nvec: how do Muslims observe the Five Pillars of Islam including prayer, fasting, and pilgrimage?"}
+{"input": "what are the rituals of islam /only:hyde", "output": "hyde: The Five Pillars of Islam form the core rituals: Shahada (declaration of faith), Salat (five daily prayers facing Mecca), Zakat (annual charitable giving of 2.5% of wealth), Sawm (fasting during Ramadan from dawn to sunset), and Hajj (pilgrimage to Mecca at least once in a lifetime)."}
+{"input": "neural networks /only:lex", "output": "lex: neural networks deep learning artificial\nlex: neural network architecture layers neurons\nlex: convolutional recurrent neural network CNN RNN"}
+{"input": "neural networks /only:vec", "output": "vec: how do artificial neural networks work and what are the different types of architectures?\nvec: what are the basic components of a neural network including layers, weights, and activation functions?"}
+{"input": "neural networks /only:hyde", "output": "hyde: A neural network consists of layers of interconnected nodes (neurons). Input data passes through hidden layers where each connection has a weight. Each neuron applies an activation function (like ReLU or sigmoid) to the weighted sum of its inputs. During training, backpropagation adjusts weights to minimize the loss function."}
+{"input": "what is the trolley problem /only:lex", "output": "lex: trolley problem ethics thought experiment\nlex: trolley problem utilitarianism moral dilemma\nlex: trolley problem Philippa Foot"}
+{"input": "what is the trolley problem /only:vec", "output": "vec: what is the trolley problem and why is it important in ethical philosophy?\nvec: how does the trolley problem illustrate the conflict between utilitarian and deontological ethics?"}
+{"input": "what is the trolley problem /only:hyde", "output": "hyde: The trolley problem, introduced by Philippa Foot in 1967, asks: a runaway trolley will kill five people unless you pull a lever to divert it onto a track where it will kill one person. Do you pull the lever? Utilitarians say yes (saving more lives), while deontologists argue that actively causing someone's death is morally different from allowing deaths to occur."}
+{"input": "digital transformation in businesses /only:lex", "output": "lex: digital transformation business strategy\nlex: digital transformation enterprise technology cloud\nlex: business digitization automation workflows"}
+{"input": "digital transformation in businesses /only:vec", "output": "vec: how are businesses implementing digital transformation to modernize their operations and strategy?\nvec: what technologies drive digital transformation in enterprises, including cloud computing and automation?"}
+{"input": "digital transformation in businesses /only:hyde", "output": "hyde: Digital transformation involves integrating digital technology into all areas of a business, changing how it operates and delivers value. Key components include migrating to cloud infrastructure, automating manual processes, adopting data analytics for decision-making, and building digital customer experiences. McKinsey reports that 70% of transformation efforts fall short of their goals."}
+{"input": "how to protect business data /only:lex", "output": "lex: protect business data security cybersecurity\nlex: data protection encryption backup strategy\nlex: business data security firewall access control"}
+{"input": "how to protect business data /only:vec", "output": "vec: what are the most important steps to protect sensitive business data from breaches and loss?\nvec: how should a business implement data protection measures including encryption, backups, and access controls?"}
+{"input": "how to protect business data /only:hyde", "output": "hyde: Protect business data with layered security: encrypt data at rest and in transit using AES-256, implement role-based access controls, enable multi-factor authentication for all accounts, maintain automated offsite backups with the 3-2-1 rule, and train employees on phishing awareness. Conduct regular security audits and penetration testing."}
+{"input": "what is cellular respiration /only:lex", "output": "lex: cellular respiration ATP glucose\nlex: cellular respiration glycolysis Krebs cycle\nlex: aerobic respiration mitochondria electron transport"}
+{"input": "what is cellular respiration /only:vec", "output": "vec: what is cellular respiration and how do cells convert glucose into ATP energy?\nvec: what are the three stages of cellular respiration: glycolysis, the Krebs cycle, and the electron transport chain?"}
+{"input": "what is cellular respiration /only:hyde", "output": "hyde: Cellular respiration is the metabolic process by which cells break down glucose (C6H12O6) to produce ATP. It occurs in three stages: glycolysis (in the cytoplasm, producing 2 ATP), the Krebs cycle (in the mitochondrial matrix, producing 2 ATP), and the electron transport chain (on the inner mitochondrial membrane, producing 34 ATP)."}
+{"input": "how technology impacts scientific research /only:lex", "output": "lex: technology impact scientific research tools\nlex: technology advances science instruments computing\nlex: AI machine learning scientific discovery"}
+{"input": "how technology impacts scientific research /only:vec", "output": "vec: how has modern technology transformed the way scientific research is conducted?\nvec: what role do computing, AI, and advanced instruments play in accelerating scientific discovery?"}
+{"input": "how technology impacts scientific research /only:hyde", "output": "hyde: Technology has transformed scientific research through high-throughput sequencing (enabling genomics), electron microscopy (revealing molecular structures), supercomputers (running complex simulations), and machine learning (identifying patterns in massive datasets). AI tools like AlphaFold have predicted protein structures that took decades to solve experimentally."}
+{"input": "how wearable technology is evolving /only:lex", "output": "lex: wearable technology evolution smartwatch fitness\nlex: wearable tech health monitoring sensors 2025 2026\nlex: wearable devices Apple Watch Garmin health tracking"}
+{"input": "how wearable technology is evolving /only:vec", "output": "vec: how is wearable technology evolving in terms of health monitoring and smart features?\nvec: what are the latest advances in wearable devices for fitness tracking and medical diagnostics?"}
+{"input": "how wearable technology is evolving /only:hyde", "output": "hyde: Wearable technology has evolved from basic step counters to sophisticated health monitors. Modern smartwatches track heart rate, blood oxygen, ECG, sleep stages, and skin temperature. Emerging features include continuous glucose monitoring, blood pressure sensing, and AI-powered health alerts that can detect atrial fibrillation and sleep apnea."}
+{"input": "what is the significance of compassion in ethics? /only:lex", "output": "lex: compassion ethics moral philosophy\nlex: compassion morality empathy ethical theory\nlex: ethics of care compassion Schopenhauer"}
+{"input": "what is the significance of compassion in ethics? /only:vec", "output": "vec: why is compassion considered a central virtue in ethical philosophy?\nvec: how do ethical theories incorporate compassion as a foundation for moral behavior?"}
+{"input": "what is the significance of compassion in ethics? /only:hyde", "output": "hyde: Schopenhauer argued that compassion (Mitleid) is the foundation of all morality, as it allows us to recognize the suffering of others as our own. The ethics of care, developed by Carol Gilligan and Nel Noddings, places compassionate relationships at the center of moral reasoning, contrasting with abstract rule-based approaches like Kantianism."}
+{"input": "what is the principle of double effect /only:lex", "output": "lex: principle of double effect ethics\nlex: double effect doctrine Aquinas moral philosophy\nlex: double effect intended foreseen consequences"}
+{"input": "what is the principle of double effect /only:vec", "output": "vec: what is the principle of double effect and how does it apply in moral philosophy?\nvec: how does the doctrine of double effect distinguish between intended and foreseen consequences of an action?"}
+{"input": "what is the principle of double effect /only:hyde", "output": "hyde: The principle of double effect, originating from Thomas Aquinas, holds that an action with both good and bad effects is morally permissible if: (1) the action itself is not wrong, (2) the bad effect is not intended, (3) the bad effect is not the means to the good effect, and (4) the good effect outweighs the bad. It's commonly applied in medical ethics and just war theory."}
+{"input": "what are the latest trends in interior design /only:lex", "output": "lex: interior design trends 2025 2026\nlex: interior design trends colors materials\nlex: home decor trends furniture styles"}
+{"input": "what are the latest trends in interior design /only:vec", "output": "vec: what are the newest interior design trends for homes in 2025 and 2026?\nvec: which colors, materials, and furniture styles are trending in interior design right now?"}
+{"input": "what are the latest trends in interior design /only:hyde", "output": "hyde: Top interior design trends for 2025-2026 include warm earth tones replacing cool grays, curved furniture and organic shapes, bold textured walls, sustainable and natural materials like rattan and stone, statement lighting, and maximalist layering. Warm woods, boucl\u00e9 fabrics, and vintage-inspired pieces continue to dominate living spaces."}
+{"input": "how to research candidates before voting /only:lex", "output": "lex: research candidates before voting election\nlex: voter guide candidate positions issues\nlex: candidate research voting record platform"}
+{"input": "how to research candidates before voting /only:vec", "output": "vec: how can voters research political candidates and their positions before an election?\nvec: what resources help voters compare candidates' platforms and voting records before casting a ballot?"}
+{"input": "how to research candidates before voting /only:hyde", "output": "hyde: Before voting, check nonpartisan voter guides from Vote411.org (League of Women Voters) or BallotReady. Review candidates' official websites for policy positions, and check voting records on VoteSmart.org. Read local newspaper endorsements, watch candidate debates, and verify claims on fact-checking sites like PolitiFact."}
+{"input": "how did the roman empire impact culture? /only:lex", "output": "lex: Roman Empire cultural impact legacy\nlex: Roman Empire influence law language architecture\nlex: Rome culture art Latin Western civilization"}
+{"input": "how did the roman empire impact culture? /only:vec", "output": "vec: how did the Roman Empire shape Western culture, law, and language?\nvec: what lasting cultural impacts did the Roman Empire have on architecture, government, and society?"}
+{"input": "how did the roman empire impact culture? /only:hyde", "output": "hyde: The Roman Empire's cultural legacy includes Latin (the root of Romance languages), Roman law (the basis of civil law systems worldwide), architectural innovations like arches, aqueducts, and concrete, republican government concepts, road networks, and the spread of Christianity. Roman art, literature, and engineering influenced Western civilization for centuries."}
+{"input": "explain monotheism /only:lex", "output": "lex: monotheism one God religion\nlex: monotheism Christianity Islam Judaism\nlex: monotheism definition history theology"}
+{"input": "explain monotheism /only:vec", "output": "vec: what is monotheism and which major world religions practice the belief in one God?\nvec: how did monotheism develop historically and what distinguishes it from polytheism?"}
+{"input": "explain monotheism /only:hyde", "output": "hyde: Monotheism is the belief in a single, all-powerful God. The three major monotheistic religions are Judaism, Christianity, and Islam, all tracing their roots to Abraham. Judaism was among the earliest monotheistic faiths, emerging around 2000 BCE. Monotheism contrasts with polytheism (many gods) and differs from henotheism (one chief god among many)."}
+{"input": "how to replace windshield wipers? /only:lex", "output": "lex: replace windshield wipers installation\nlex: change wiper blades car DIY\nlex: windshield wiper replacement size"}
+{"input": "how to replace windshield wipers? /only:vec", "output": "vec: how do you replace windshield wiper blades on a car step by step?\nvec: what size windshield wipers does my car need and how do I install them?"}
+{"input": "how to replace windshield wipers? /only:hyde", "output": "hyde: Lift the wiper arm away from the windshield. Press the small tab where the blade meets the arm and slide the old blade off the hook. Slide the new blade onto the J-hook until it clicks into place. Lower the arm back gently. Check your owner's manual or an auto parts store's fit guide for the correct blade size."}
+{"input": "what are tectonic plates /only:lex", "output": "lex: tectonic plates Earth crust geology\nlex: plate tectonics continental drift boundaries\nlex: tectonic plates earthquake volcano subduction"}
+{"input": "what are tectonic plates /only:vec", "output": "vec: what are tectonic plates and how does plate tectonics explain earthquakes and volcanic activity?\nvec: how do tectonic plates move and interact at convergent, divergent, and transform boundaries?"}
+{"input": "what are tectonic plates /only:hyde", "output": "hyde: Tectonic plates are massive slabs of Earth's lithosphere that float on the semi-fluid asthenosphere. There are 15 major plates that move 1-10 cm per year. At convergent boundaries, plates collide causing mountains and subduction zones; at divergent boundaries, plates separate creating mid-ocean ridges; at transform boundaries, plates slide past each other causing earthquakes."}
+{"input": "airbnb bookings /only:lex", "output": "lex: Airbnb bookings reservations how to\nlex: Airbnb book rental property listing\nlex: Airbnb booking tips cancellation policy"}
+{"input": "airbnb bookings /only:vec", "output": "vec: how do you book a rental property on Airbnb and what should you know before reserving?\nvec: what are the Airbnb booking policies including cancellation, fees, and payment?"}
+{"input": "airbnb bookings /only:hyde", "output": "hyde: To book on Airbnb, search by destination and dates, filter by price, type, and amenities, and review photos and guest reviews. Request to book or use Instant Book listings for immediate confirmation. Airbnb charges a service fee of 14-16%. Check the cancellation policy (Flexible, Moderate, or Strict) before confirming."}
+{"input": "how do you develop a writing voice? /only:lex", "output": "lex: develop writing voice style\nlex: writing voice tone author style\nlex: find unique writing voice techniques"}
+{"input": "how do you develop a writing voice? /only:vec", "output": "vec: how does a writer develop their own unique writing voice and style?\nvec: what exercises and practices help writers find and strengthen their authentic voice?"}
+{"input": "how do you develop a writing voice? /only:hyde", "output": "hyde: Developing a writing voice requires reading widely, writing consistently, and paying attention to what feels natural. Write the way you think and speak. Experiment with sentence length, word choice, and rhythm. Read your work aloud to hear your voice. Imitate writers you admire, then gradually let your own patterns emerge through regular practice."}
+{"input": "what is devotion in religious context /only:lex", "output": "lex: devotion religion religious worship\nlex: devotion faith prayer bhakti piety\nlex: religious devotion spiritual practice"}
+{"input": "what is devotion in religious context /only:vec", "output": "vec: what does devotion mean in a religious context and how is it practiced across faiths?\nvec: how do different religions express devotion through prayer, worship, and spiritual discipline?"}
+{"input": "what is devotion in religious context /only:hyde", "output": "hyde: Religious devotion refers to profound love, loyalty, and dedication to God or a divine reality, expressed through prayer, worship, and spiritual practice. In Hinduism, bhakti (devotion) is a path to liberation through loving surrender to a deity. In Christianity, devotion involves daily prayer, scripture reading, and sacramental participation."}
+{"input": "what is skepticism in philosophy /only:lex", "output": "lex: skepticism philosophy epistemology doubt\nlex: philosophical skepticism Pyrrhonism Descartes\nlex: skepticism knowledge certainty questioning"}
+{"input": "what is skepticism in philosophy /only:vec", "output": "vec: what is philosophical skepticism and how does it question the possibility of knowledge?\nvec: how did Pyrrhonian skepticism and Cartesian doubt influence Western philosophical thought?"}
+{"input": "what is skepticism in philosophy /only:hyde", "output": "hyde: Philosophical skepticism questions whether certain knowledge is possible. Pyrrhonian skepticism (from Pyrrho of Elis) suspends judgment on all claims, arguing that for every argument there is an equally strong counterargument. Descartes used methodological doubt\u2014doubting everything that could be doubted\u2014to arrive at \"cogito ergo sum\" as an indubitable foundation."}
+{"input": "fix teeth /only:lex", "output": "lex: fix teeth dental repair options\nlex: broken chipped teeth treatment dentist\nlex: dental restoration crowns veneers bonding"}
+{"input": "fix teeth /only:vec", "output": "vec: what are the options for fixing damaged, chipped, or broken teeth?\nvec: how do dentists repair teeth using crowns, veneers, bonding, and other dental treatments?"}
+{"input": "fix teeth /only:hyde", "output": "hyde: Common dental repairs include bonding (composite resin applied to chipped teeth, $100-400), porcelain veneers (thin shells covering the front surface, $500-2500 per tooth), crowns (caps covering the entire tooth, $800-1500), and dental implants for missing teeth ($3000-5000). Treatment depends on the extent of damage."}
+{"input": "what are social media photography tips? /only:lex", "output": "lex: social media photography tips Instagram\nlex: phone photography social media lighting composition\nlex: Instagram photo tips editing filters"}
+{"input": "what are social media photography tips? /only:vec", "output": "vec: what are the best photography tips for creating engaging social media content?\nvec: how do you take better photos for Instagram and other social media platforms using a phone?"}
+{"input": "what are social media photography tips? /only:hyde", "output": "hyde: Shoot during golden hour (the hour after sunrise or before sunset) for warm, flattering light. Use the rule of thirds grid on your phone camera. Keep backgrounds clean and uncluttered. Edit consistently using the same preset or filter for a cohesive feed. Shoot in natural light whenever possible and avoid using flash."}
+{"input": "what is gerrymandering /only:lex", "output": "lex: gerrymandering redistricting electoral districts\nlex: gerrymandering political manipulation voting\nlex: gerrymandering packing cracking congressional"}
+{"input": "what is gerrymandering /only:vec", "output": "vec: what is gerrymandering and how does it manipulate electoral district boundaries?\nvec: how does gerrymandering use techniques like packing and cracking to influence election outcomes?"}
+{"input": "what is gerrymandering /only:hyde", "output": "hyde: Gerrymandering is the manipulation of electoral district boundaries to favor a particular political party. Two main techniques are \"packing\" (concentrating opposition voters into a few districts) and \"cracking\" (spreading them across many districts to dilute their vote). The term dates to 1812 when Governor Elbridge Gerry approved a district shaped like a salamander."}
+{"input": "how do the arts contribute to moral understanding? /only:lex", "output": "lex: arts moral understanding ethics\nlex: art literature ethics empathy\nlex: arts moral education philosophical perspective"}
+{"input": "how do the arts contribute to moral understanding? /only:vec", "output": "vec: how do the arts such as literature, film, and visual art contribute to moral understanding?\nvec: in what ways do artistic works cultivate empathy and ethical awareness in audiences?"}
+{"input": "how do the arts contribute to moral understanding? /only:hyde", "output": "hyde: Literature, theater, and film place audiences in the shoes of characters facing moral dilemmas, cultivating empathy and ethical reflection. Martha Nussbaum argues that novels develop moral imagination by exposing readers to lives unlike their own. Art invites us to confront injustice, question assumptions, and feel the weight of ethical choices."}
+{"input": "what are the main beliefs of jainism? /only:lex", "output": "lex: Jainism beliefs principles religion\nlex: Jainism ahimsa non-violence karma\nlex: Jain philosophy anekantavada moksha"}
+{"input": "what are the main beliefs of jainism? /only:vec", "output": "vec: what are the core beliefs and principles of Jainism as a religion?\nvec: how does Jainism emphasize non-violence (ahimsa) and what are its main philosophical tenets?"}
+{"input": "what are the main beliefs of jainism? /only:hyde", "output": "hyde: Jainism's core beliefs include ahimsa (non-violence toward all living beings), anekantavada (many-sidedness of truth), and aparigraha (non-attachment). Jains believe the soul (jiva) accumulates karma through actions and must purify itself through ethical living, asceticism, and meditation to achieve moksha (liberation from the cycle of rebirth)."}
+{"input": "how do philosophers define happiness /only:lex", "output": "lex: philosophers define happiness philosophy\nlex: happiness eudaimonia Aristotle hedonism\nlex: philosophical theories happiness well-being"}
+{"input": "how do philosophers define happiness /only:vec", "output": "vec: how have major philosophers throughout history defined happiness and well-being?\nvec: what is the difference between Aristotle's eudaimonia and hedonistic views of happiness?"}
+{"input": "how do philosophers define happiness /only:hyde", "output": "hyde: Aristotle defined happiness (eudaimonia) as flourishing through virtuous activity over a complete life, not mere pleasure. Epicurus identified happiness with ataraxia (tranquility) and the absence of pain. Utilitarians like Mill equated happiness with pleasure but distinguished higher (intellectual) from lower (bodily) pleasures. Modern positive psychology studies happiness as subjective well-being."}
+{"input": "how to train a dog to sit /only:lex", "output": "lex: train dog sit command\nlex: dog training sit positive reinforcement\nlex: teach puppy sit treat method"}
+{"input": "how to train a dog to sit /only:vec", "output": "vec: what is the step-by-step method for training a dog to sit on command?\nvec: how do you use positive reinforcement to teach a dog or puppy the sit command?"}
+{"input": "how to train a dog to sit /only:hyde", "output": "hyde: Hold a treat close to your dog's nose, then slowly move your hand up so the dog's head follows the treat and their bottom lowers. The moment they sit, say \"sit,\" give the treat, and praise them. Repeat 5-10 times per session, 2-3 sessions daily. Within a week, most dogs learn to sit on verbal command alone."}
+{"input": "how to choose a family-friendly restaurant? /only:lex", "output": "lex: family-friendly restaurant kids menu\nlex: choose restaurant families children\nlex: kid-friendly dining options reviews"}
+{"input": "how to choose a family-friendly restaurant? /only:vec", "output": "vec: how do you find and choose a family-friendly restaurant suitable for dining with children?\nvec: what features make a restaurant good for families with young kids?"}
+{"input": "how to choose a family-friendly restaurant? /only:hyde", "output": "hyde: Look for restaurants with a dedicated kids' menu, high chairs, and a casual atmosphere that tolerates noise. Check Google or Yelp reviews filtered for \"family-friendly.\" Booth seating, crayons or activity sheets, and an early dinner option are good signs. Fast-casual restaurants often work well since kids don't have to wait long for food."}
+{"input": "what is historical context in literature? /only:lex", "output": "lex: historical context literature analysis\nlex: historical context literary criticism period\nlex: literature historical background social conditions"}
+{"input": "what is historical context in literature? /only:vec", "output": "vec: what does historical context mean when analyzing and interpreting a work of literature?\nvec: how does understanding the historical period and social conditions help interpret literary texts?"}
+{"input": "what is historical context in literature? /only:hyde", "output": "hyde: Historical context in literature refers to the social, political, economic, and cultural conditions during the time a work was written. Understanding that \"1984\" was written in 1948 during the rise of totalitarian states deepens its meaning. Historical context helps readers interpret themes, character motivations, and the author's intent within their time period."}
+{"input": "where to buy mid-century modern furniture /only:lex", "output": "lex: buy mid-century modern furniture store\nlex: mid-century modern furniture online vintage\nlex: MCM furniture West Elm Design Within Reach"}
+{"input": "where to buy mid-century modern furniture /only:vec", "output": "vec: where can I buy authentic or reproduction mid-century modern furniture?\nvec: what are the best stores and websites for purchasing mid-century modern style furniture?"}
+{"input": "where to buy mid-century modern furniture /only:hyde", "output": "hyde: Shop mid-century modern furniture at West Elm, Design Within Reach (DWR), and Article for contemporary reproductions. For vintage originals, check Chairish, 1stDibs, and local estate sales. IKEA offers affordable MCM-inspired pieces. Facebook Marketplace and Craigslist often have authentic Eames, Knoll, and Herman Miller pieces at lower prices."}
+{"input": "how to transition kids to new schools? /only:lex", "output": "lex: transition kids new school tips\nlex: children changing schools adjustment\nlex: help child new school anxiety transfer"}
+{"input": "how to transition kids to new schools? /only:vec", "output": "vec: how can parents help their children transition smoothly to a new school?\nvec: what strategies help kids adjust emotionally and socially when changing schools?"}
+{"input": "how to transition kids to new schools? /only:hyde", "output": "hyde: Visit the new school together before the first day so the building feels familiar. Meet the teacher and tour the classroom. Maintain routines at home for stability. Encourage your child to talk about their feelings and validate their anxiety. Arrange playdates with new classmates early on, and stay in contact with teachers during the first few weeks."}
+{"input": "what is graphic design? /only:lex", "output": "lex: graphic design visual communication\nlex: graphic design typography layout color\nlex: graphic design tools Adobe Figma"}
+{"input": "what is graphic design? /only:vec", "output": "vec: what is graphic design and what skills and tools does a graphic designer use?\nvec: how does graphic design combine typography, color, and layout to communicate visually?"}
+{"input": "what is graphic design? /only:hyde", "output": "hyde: Graphic design is the craft of creating visual content to communicate messages. Designers use typography, color theory, layout, and imagery to create logos, websites, posters, packaging, and more. Key tools include Adobe Photoshop, Illustrator, InDesign, and Figma. The field spans print design, web/UI design, branding, and motion graphics."}
+{"input": "what is the latest iphone model /only:lex", "output": "lex: latest iPhone model 2025 2026\nlex: newest iPhone Apple release\nlex: iPhone 17 features specs"}
+{"input": "what is the latest iphone model /only:vec", "output": "vec: what is the latest iPhone model released by Apple and what are its key features?\nvec: what are the specs and improvements in the newest iPhone compared to previous models?"}
+{"input": "what is the latest iphone model /only:hyde", "output": "hyde: The iPhone 16 series launched in September 2024 with the A18 chip, a dedicated Camera Control button, and Apple Intelligence features. The iPhone 16 Pro and Pro Max feature a 48MP main camera, titanium design, and improved battery life. The iPhone 17 lineup is expected in September 2025."}
+{"input": "where to find open access research papers /only:lex", "output": "lex: open access research papers free\nlex: open access journals articles database\nlex: free academic papers PubMed arXiv"}
+{"input": "where to find open access research papers /only:vec", "output": "vec: where can I find free open access research papers and academic articles?\nvec: what databases and websites provide open access to peer-reviewed scientific papers?"}
+{"input": "where to find open access research papers /only:hyde", "output": "hyde: Access free research papers through PubMed Central (biomedical), arXiv (physics, math, CS), SSRN (social sciences), and DOAJ (Directory of Open Access Journals). Google Scholar often links to free PDF versions. Unpaywall is a browser extension that finds legal free versions of paywalled papers. Many universities also maintain institutional repositories."}
+{"input": "how to improve interpersonal skills /only:lex", "output": "lex: improve interpersonal skills communication\nlex: interpersonal skills active listening empathy\nlex: people skills social interaction workplace"}
+{"input": "how to improve interpersonal skills /only:vec", "output": "vec: what are effective ways to improve interpersonal and communication skills?\nvec: how can someone develop better listening, empathy, and social skills in personal and professional settings?"}
+{"input": "how to improve interpersonal skills /only:hyde", "output": "hyde: Improve interpersonal skills by practicing active listening: maintain eye contact, avoid interrupting, and paraphrase what you heard. Ask open-ended questions to show genuine interest. Develop empathy by considering others' perspectives before responding. Practice assertive communication\u2014express your needs clearly while respecting others. Seek feedback on how you come across."}
+{"input": "math model /only:lex", "output": "lex: mathematical model equations simulation\nlex: math modeling real-world applications\nlex: mathematical model differential equations optimization"}
+{"input": "math model /only:vec", "output": "vec: what is a mathematical model and how is it used to represent real-world systems?\nvec: how do mathematicians build models using equations to simulate and predict outcomes?"}
+{"input": "math model /only:hyde", "output": "hyde: A mathematical model uses equations and formulas to represent the behavior of a real-world system. For example, the SIR model uses differential equations to predict disease spread: dS/dt = -\u03b2SI, dI/dt = \u03b2SI - \u03b3I, dR/dt = \u03b3I. Models are validated by comparing predictions to observed data and refined iteratively."}
+{"input": "what is digital transformation /only:lex", "output": "lex: digital transformation definition strategy\nlex: digital transformation technology business process\nlex: digital transformation cloud automation data-driven"}
+{"input": "what is digital transformation /only:vec", "output": "vec: what is digital transformation and how does it change how organizations operate?\nvec: what are the key components and stages of digital transformation in a business?"}
+{"input": "what is digital transformation /only:hyde", "output": "hyde: Digital transformation is the process of using digital technologies to fundamentally change how an organization operates and delivers value. It goes beyond digitizing existing processes\u2014it involves rethinking business models, customer experiences, and operational workflows using cloud computing, AI, data analytics, and automation."}
+{"input": "how to improve project outcomes /only:lex", "output": "lex: improve project outcomes management\nlex: project success factors planning execution\nlex: project management methodology agile results"}
+{"input": "how to improve project outcomes /only:vec", "output": "vec: what strategies and practices improve project outcomes and increase the chance of success?\nvec: how can project managers improve delivery, stakeholder satisfaction, and results?"}
+{"input": "how to improve project outcomes /only:hyde", "output": "hyde: Improve project outcomes by defining clear objectives and success criteria upfront, engaging stakeholders early and often, breaking work into short iterations with regular checkpoints, and managing risks proactively. Use retrospectives to learn from each phase. Projects with clear scope, executive sponsorship, and empowered teams are 2-3x more likely to succeed."}
+{"input": "what is the relationship between ethics and happiness? /only:lex", "output": "lex: ethics happiness philosophy relationship\nlex: virtue ethics happiness eudaimonia Aristotle\nlex: morality well-being ethical living"}
+{"input": "what is the relationship between ethics and happiness? /only:vec", "output": "vec: what is the philosophical relationship between living ethically and being happy?\nvec: how does Aristotle argue that virtue and ethics are connected to happiness and human flourishing?"}
+{"input": "what is the relationship between ethics and happiness? /only:hyde", "output": "hyde: Aristotle argued that happiness (eudaimonia) is achieved through virtuous living\u2014not pleasure alone, but the active exercise of reason and moral virtue over a lifetime. The Stoics similarly held that virtue is sufficient for happiness. Utilitarianism inverts this: moral actions are those that maximize total happiness. The question of whether being moral makes you happy remains debated."}
+{"input": "how does philosophy explore the nature of truth? /only:lex", "output": "lex: philosophy truth nature theories\nlex: correspondence coherence pragmatic theory truth\nlex: truth philosophy epistemology logic"}
+{"input": "how does philosophy explore the nature of truth? /only:vec", "output": "vec: how do philosophical theories explain the nature of truth and what makes a statement true?\nvec: what are the main theories of truth in philosophy such as correspondence, coherence, and pragmatic theories?"}
+{"input": "how does philosophy explore the nature of truth? /only:hyde", "output": "hyde: Philosophy examines truth through several theories. The correspondence theory holds that truth is agreement between a proposition and reality. The coherence theory says a statement is true if it fits consistently within a system of beliefs. The pragmatic theory (James, Dewey) defines truth as what works in practice. Deflationary theories argue that \"true\" adds nothing beyond the assertion itself."}
+{"input": "rain drop /only:lex", "output": "lex: raindrop formation size shape\nlex: raindrop water cycle precipitation\nlex: rain droplet physics terminal velocity"}
+{"input": "rain drop /only:vec", "output": "vec: how do raindrops form and what determines their size and shape as they fall?\nvec: what is the science behind raindrop formation in the water cycle and precipitation?"}
+{"input": "rain drop /only:hyde", "output": "hyde: Raindrops form when water vapor condenses around tiny particles (condensation nuclei) in clouds. As droplets collide and merge, they grow heavy enough to fall. Contrary to the teardrop image, falling raindrops are actually shaped like hamburger buns\u2014flattened on the bottom by air resistance. Average raindrops are 1-2mm in diameter and fall at about 20 mph."}
+{"input": "what is magical realism? /only:lex", "output": "lex: magical realism literary genre\nlex: magical realism Garcia Marquez literature\nlex: magical realism Latin American fiction examples"}
+{"input": "what is magical realism? /only:vec", "output": "vec: what is magical realism as a literary genre and what are its defining characteristics?\nvec: how do authors like Gabriel Garcia Marquez blend the magical and mundane in magical realism?"}
+{"input": "what is magical realism? /only:hyde", "output": "hyde: Magical realism is a literary genre in which supernatural elements appear in an otherwise realistic setting, treated as ordinary by the characters. Gabriel Garcia Marquez's \"One Hundred Years of Solitude\" is the quintessential example, where events like a character ascending to heaven while hanging laundry are narrated matter-of-factly alongside everyday life in Macondo."}
+{"input": "how to write a film review /only:lex", "output": "lex: write film review movie critique\nlex: film review structure format examples\nlex: movie review writing tips analysis"}
+{"input": "how to write a film review /only:vec", "output": "vec: how do you write a well-structured and engaging film review?\nvec: what elements should be included in a film review such as plot summary, analysis, and rating?"}
+{"input": "how to write a film review /only:hyde", "output": "hyde: Start with a hook\u2014a striking observation about the film. Provide a brief, spoiler-free plot summary (2-3 sentences). Evaluate the directing, acting, cinematography, screenplay, and score. Support your opinion with specific scenes or examples. Address who would enjoy the film and rate it on your chosen scale. Keep the review between 400-800 words."}
+{"input": "what is the current inflation rate /only:lex", "output": "lex: current inflation rate CPI 2025 2026\nlex: inflation rate United States economy\nlex: consumer price index inflation percentage"}
+{"input": "what is the current inflation rate /only:vec", "output": "vec: what is the current U.S. inflation rate and how is it measured by the CPI?\nvec: what is the latest consumer price index data showing the annual inflation rate?"}
+{"input": "what is the current inflation rate /only:hyde", "output": "hyde: The U.S. Bureau of Labor Statistics measures inflation through the Consumer Price Index (CPI), which tracks the average change in prices paid by consumers for goods and services. The annual inflation rate is calculated by comparing the current CPI to the same month one year prior. Check bls.gov/cpi for the latest monthly release."}
+{"input": "what is the function of dialogue? /only:lex", "output": "lex: dialogue function purpose communication\nlex: dialogue conversation role"}
+{"input": "what is the function of dialogue? /only:vec", "output": "vec: what purpose does dialogue serve in communication and storytelling\nvec: how does dialogue function in literature and everyday interaction"}
+{"input": "what is the function of dialogue? /only:hyde", "output": "hyde: Dialogue serves multiple functions: it conveys information between characters, reveals personality and motivation, advances the plot, and creates tension. In everyday communication, dialogue enables mutual understanding and negotiation of meaning."}
+{"input": "what is the importance of peer review /only:lex", "output": "lex: peer review importance scientific publishing\nlex: peer review process academic research"}
+{"input": "what is the importance of peer review /only:vec", "output": "vec: why is peer review important in academic and scientific publishing\nvec: how does the peer review process ensure quality in research papers"}
+{"input": "what is the importance of peer review /only:hyde", "output": "hyde: Peer review is the cornerstone of scientific publishing. Before a paper is accepted, independent experts evaluate the methodology, data analysis, and conclusions. This process catches errors, prevents fraudulent claims, and maintains the credibility of published research."}
+{"input": "what is the impact of the printing press /only:lex", "output": "lex: printing press impact history Gutenberg\nlex: printing press effects literacy knowledge"}
+{"input": "what is the impact of the printing press /only:vec", "output": "vec: how did the invention of the printing press change society and the spread of knowledge\nvec: what were the historical consequences of Gutenberg's printing press"}
+{"input": "what is the impact of the printing press /only:hyde", "output": "hyde: Gutenberg's printing press, invented around 1440, revolutionized the production of books. By making texts affordable and widely available, it increased literacy rates, enabled the Protestant Reformation, and accelerated the Scientific Revolution across Europe."}
+{"input": "what is open science /only:lex", "output": "lex: open science definition principles\nlex: open access open data research transparency"}
+{"input": "what is open science /only:vec", "output": "vec: what does open science mean and what are its core principles\nvec: how does open science promote transparency and accessibility in research"}
+{"input": "what is open science /only:hyde", "output": "hyde: Open science is a movement to make scientific research, data, and dissemination accessible to all. It encompasses open access publishing, open data sharing, open-source software, and transparent methodologies, aiming to accelerate discovery through collaboration."}
+{"input": "swim class /only:lex", "output": "lex: swimming classes lessons beginner\nlex: swim class schedule enrollment"}
+{"input": "swim class /only:vec", "output": "vec: where can I find swimming classes for beginners or children\nvec: what should I expect from a swimming lesson and how to enroll"}
+{"input": "swim class /only:hyde", "output": "hyde: Our swim classes are available for all ages and skill levels. Beginner classes focus on water safety, floating, and basic strokes. Intermediate classes cover freestyle, backstroke, and treading water. Sessions run 30-45 minutes with certified instructors."}
+{"input": "what is the bhagavad gita /only:lex", "output": "lex: Bhagavad Gita Hindu scripture meaning\nlex: Bhagavad Gita Krishna Arjuna teachings"}
+{"input": "what is the bhagavad gita /only:vec", "output": "vec: what is the Bhagavad Gita and what are its central teachings\nvec: what role does the Bhagavad Gita play in Hindu philosophy and practice"}
+{"input": "what is the bhagavad gita /only:hyde", "output": "hyde: The Bhagavad Gita is a 700-verse Hindu scripture that forms part of the Mahabharata epic. It is a dialogue between Prince Arjuna and the god Krishna, addressing duty (dharma), devotion (bhakti), knowledge (jnana), and selfless action (karma yoga)."}
+{"input": "how does plant photosynthesis work /only:lex", "output": "lex: photosynthesis process plants chlorophyll\nlex: light reactions Calvin cycle carbon dioxide"}
+{"input": "how does plant photosynthesis work /only:vec", "output": "vec: how do plants convert sunlight into energy through photosynthesis\nvec: what are the steps of photosynthesis in plant cells"}
+{"input": "how does plant photosynthesis work /only:hyde", "output": "hyde: Photosynthesis occurs in chloroplasts. In the light reactions, chlorophyll absorbs sunlight to split water molecules, producing ATP and NADPH. In the Calvin cycle, these molecules drive the fixation of CO2 into glucose, releasing oxygen as a byproduct."}
+{"input": "what is a black hole /only:lex", "output": "lex: black hole definition physics space\nlex: black hole event horizon singularity"}
+{"input": "what is a black hole /only:vec", "output": "vec: what is a black hole and how does it form in space\nvec: how do black holes work according to general relativity"}
+{"input": "what is a black hole /only:hyde", "output": "hyde: A black hole is a region in space where gravity is so intense that nothing, not even light, can escape. It forms when a massive star collapses at the end of its life. The boundary is called the event horizon, beyond which lies the singularity."}
+{"input": "how ecosystems function /only:lex", "output": "lex: ecosystem function energy flow nutrient cycling\nlex: ecosystems trophic levels food web"}
+{"input": "how ecosystems function /only:vec", "output": "vec: how do ecosystems function through energy flow and nutrient cycling\nvec: what are the key processes that keep ecosystems balanced and healthy"}
+{"input": "how ecosystems function /only:hyde", "output": "hyde: Ecosystems function through interconnected processes: producers capture solar energy via photosynthesis, consumers transfer energy through food webs, and decomposers recycle nutrients back into the soil. Water, carbon, and nitrogen cycle continuously through biotic and abiotic components."}
+{"input": "how to increase home resale value /only:lex", "output": "lex: increase home resale value renovations\nlex: home improvement ROI property value"}
+{"input": "how to increase home resale value /only:vec", "output": "vec: what home improvements increase resale value the most\nvec: how can I boost my home's market price before selling"}
+{"input": "how to increase home resale value /only:hyde", "output": "hyde: Kitchen and bathroom remodels offer the highest ROI, typically recovering 60-80% of costs. Other high-value improvements include replacing the front door, adding a deck, and upgrading to energy-efficient windows. Fresh paint and curb appeal landscaping are low-cost, high-impact upgrades."}
+{"input": "how to design an effective scientific study /only:lex", "output": "lex: scientific study design methodology\nlex: research design controls variables sample size"}
+{"input": "how to design an effective scientific study /only:vec", "output": "vec: how do you design a rigorous and effective scientific study\nvec: what steps are involved in planning a well-controlled research experiment"}
+{"input": "how to design an effective scientific study /only:hyde", "output": "hyde: An effective study begins with a clear hypothesis and defined variables. Choose an appropriate design (randomized controlled trial, cohort, etc.), calculate the required sample size for statistical power, establish controls, and pre-register your protocol to reduce bias."}
+{"input": "how to set up a campfire /only:lex", "output": "lex: campfire setup build fire outdoors\nlex: campfire fire pit kindling tinder logs"}
+{"input": "how to set up a campfire /only:vec", "output": "vec: how do you properly build and start a campfire outdoors\nvec: what materials and steps are needed to set up a safe campfire"}
+{"input": "how to set up a campfire /only:hyde", "output": "hyde: To build a campfire, clear a fire ring down to bare soil. Place a tinder bundle of dry leaves or paper in the center. Stack small kindling sticks in a teepee shape around it. Light the tinder and gradually add larger logs as the fire grows. Keep water nearby to extinguish."}
+{"input": "where to learn digital marketing /only:lex", "output": "lex: digital marketing courses online training\nlex: learn digital marketing SEO social media"}
+{"input": "where to learn digital marketing /only:vec", "output": "vec: where can I take courses to learn digital marketing skills\nvec: what are the best online platforms for learning SEO, social media, and digital advertising"}
+{"input": "where to learn digital marketing /only:hyde", "output": "hyde: Google Digital Garage offers a free Fundamentals of Digital Marketing course with certification. HubSpot Academy covers inbound marketing and content strategy. Coursera and Udemy feature paid courses on SEO, PPC, email marketing, and social media advertising."}
+{"input": "how to remove car dents? /only:lex", "output": "lex: car dent removal DIY repair\nlex: paintless dent repair PDR technique"}
+{"input": "how to remove car dents? /only:vec", "output": "vec: how can I remove dents from my car at home without repainting\nvec: what are the methods for fixing small dents on a car body"}
+{"input": "how to remove car dents? /only:hyde", "output": "hyde: For small dents, try the boiling water method on plastic bumpers or use a suction cup dent puller. Paintless dent repair (PDR) uses metal rods to push dents out from behind the panel. For deeper dents, apply body filler, sand smooth, and repaint."}
+{"input": "what is a moral code /only:lex", "output": "lex: moral code definition ethics principles\nlex: moral code rules behavior right wrong"}
+{"input": "what is a moral code /only:vec", "output": "vec: what is a moral code and how does it guide human behavior\nvec: how do societies and individuals develop a set of moral principles"}
+{"input": "what is a moral code /only:hyde", "output": "hyde: A moral code is a set of principles or rules that define right and wrong conduct. It may be derived from religious teachings, cultural traditions, philosophical reasoning, or personal reflection. Examples include the Ten Commandments, Kantian ethics, and utilitarianism."}
+{"input": "what is cloud computing /only:lex", "output": "lex: cloud computing definition services\nlex: cloud computing IaaS PaaS SaaS"}
+{"input": "what is cloud computing /only:vec", "output": "vec: what is cloud computing and how do cloud services work\nvec: what are the different types of cloud computing services like IaaS, PaaS, and SaaS"}
+{"input": "what is cloud computing /only:hyde", "output": "hyde: Cloud computing delivers computing resources\u2014servers, storage, databases, networking, and software\u2014over the internet on a pay-as-you-go basis. The three main service models are Infrastructure as a Service (IaaS), Platform as a Service (PaaS), and Software as a Service (SaaS)."}
+{"input": "how to practice meditation /only:lex", "output": "lex: meditation practice techniques beginners\nlex: mindfulness meditation breathing focus"}
+{"input": "how to practice meditation /only:vec", "output": "vec: how do I start a daily meditation practice as a beginner\nvec: what are simple meditation techniques for reducing stress and improving focus"}
+{"input": "how to practice meditation /only:hyde", "output": "hyde: Start with 5-10 minutes daily. Sit comfortably, close your eyes, and focus on your breath. When thoughts arise, notice them without judgment and gently return attention to breathing. Guided meditation apps like Headspace or Insight Timer can help beginners build consistency."}
+{"input": "what is xeriscaping? /only:lex", "output": "lex: xeriscaping drought-tolerant landscaping water conservation\nlex: xeriscape garden design dry climate plants"}
+{"input": "what is xeriscaping? /only:vec", "output": "vec: what is xeriscaping and how does it reduce water usage in landscaping\nvec: how do you design a xeriscape garden with drought-resistant plants"}
+{"input": "what is xeriscaping? /only:hyde", "output": "hyde: Xeriscaping is a landscaping approach that minimizes water use by selecting drought-tolerant native plants, improving soil with compost, using efficient drip irrigation, applying mulch to retain moisture, and reducing lawn area. It originated in arid regions of the western United States."}
+{"input": "what are the main beliefs of buddhism /only:lex", "output": "lex: Buddhism beliefs Four Noble Truths Eightfold Path\nlex: Buddhist teachings karma dharma nirvana"}
+{"input": "what are the main beliefs of buddhism /only:vec", "output": "vec: what are the core beliefs and teachings of Buddhism\nvec: what do Buddhists believe about suffering, enlightenment, and the path to nirvana"}
+{"input": "what are the main beliefs of buddhism /only:hyde", "output": "hyde: Buddhism is founded on the Four Noble Truths: life involves suffering (dukkha), suffering arises from craving (tanha), suffering can end (nirodha), and the path to its end is the Noble Eightfold Path. Key concepts include karma, rebirth, impermanence (anicca), and non-self (anatta)."}
+{"input": "how to reduce carbon footprint? /only:lex", "output": "lex: reduce carbon footprint emissions tips\nlex: lower carbon footprint energy transportation diet"}
+{"input": "how to reduce carbon footprint? /only:vec", "output": "vec: what are effective ways to reduce my personal carbon footprint\nvec: how can individuals lower their greenhouse gas emissions in daily life"}
+{"input": "how to reduce carbon footprint? /only:hyde", "output": "hyde: The biggest personal reductions come from driving less or switching to an EV, flying less frequently, eating less red meat, improving home insulation, and switching to renewable energy. A plant-rich diet can cut food-related emissions by up to 50%."}
+{"input": "how to save for a child's education? /only:lex", "output": "lex: save child education fund college\nlex: 529 plan education savings account"}
+{"input": "how to save for a child's education? /only:vec", "output": "vec: how should I save money for my child's college education\nvec: what are the best investment accounts for saving for a child's education"}
+{"input": "how to save for a child's education? /only:hyde", "output": "hyde: A 529 plan is one of the most tax-advantaged ways to save for education. Contributions grow tax-free, and withdrawals for qualified expenses (tuition, books, room and board) are also tax-free. Many states offer additional tax deductions for contributions."}
+{"input": "what is the best way to learn python programming? /only:lex", "output": "lex: learn Python programming beginner tutorial\nlex: Python programming course exercises projects"}
+{"input": "what is the best way to learn python programming? /only:vec", "output": "vec: what is the most effective way to learn Python programming from scratch\nvec: which Python courses and resources are best for beginners learning to code"}
+{"input": "what is the best way to learn python programming? /only:hyde", "output": "hyde: Start with an interactive tutorial like Python.org's official tutorial or Codecademy's Python course. Practice daily on sites like LeetCode or HackerRank. Build small projects\u2014a calculator, web scraper, or to-do app\u2014to solidify concepts. Read \"Automate the Boring Stuff with Python\" for practical applications."}
+{"input": "how to grow roses from cuttings? /only:lex", "output": "lex: grow roses cuttings propagation\nlex: rose cutting rooting hormone planting"}
+{"input": "how to grow roses from cuttings? /only:vec", "output": "vec: how do you propagate roses from stem cuttings at home\nvec: what is the step-by-step process for rooting rose cuttings"}
+{"input": "how to grow roses from cuttings? /only:hyde", "output": "hyde: Take a 6-8 inch cutting from a healthy rose stem just below a leaf node. Remove lower leaves, dip the cut end in rooting hormone, and insert into moist potting mix. Cover with a plastic bag to maintain humidity. Roots typically form in 4-8 weeks. Transplant once established."}
+{"input": "sustainable architecture /only:lex", "output": "lex: sustainable architecture green building design\nlex: sustainable building materials energy efficient"}
+{"input": "sustainable architecture /only:vec", "output": "vec: what is sustainable architecture and what design principles does it follow\nvec: how do architects design energy-efficient and environmentally friendly buildings"}
+{"input": "sustainable architecture /only:hyde", "output": "hyde: Sustainable architecture minimizes environmental impact through passive solar design, natural ventilation, high-performance insulation, and renewable energy integration. Materials like cross-laminated timber, recycled steel, and low-VOC finishes reduce embodied carbon."}
+{"input": "what is the concept of moral luck /only:lex", "output": "lex: moral luck philosophy concept\nlex: moral luck Thomas Nagel Bernard Williams"}
+{"input": "what is the concept of moral luck /only:vec", "output": "vec: what is the philosophical concept of moral luck and why is it controversial\nvec: how does moral luck challenge our ideas about responsibility and blame"}
+{"input": "what is the concept of moral luck /only:hyde", "output": "hyde: Moral luck, introduced by Thomas Nagel and Bernard Williams in 1976, refers to situations where moral judgment depends on factors beyond a person's control. A drunk driver who arrives home safely is judged differently from one who kills a pedestrian, despite identical recklessness."}
+{"input": "task wait /only:lex", "output": "lex: async task wait await\nlex: task wait timeout concurrency"}
+{"input": "task wait /only:vec", "output": "vec: how to wait for an asynchronous task to complete in programming\nvec: how to use await or task wait for concurrent operations"}
+{"input": "task wait /only:hyde", "output": "hyde: Use `await task` in async/await patterns to wait for completion. In C#, `Task.Wait()` blocks synchronously while `await` yields control. In Python, `await asyncio.gather(*tasks)` waits for multiple coroutines. Use timeouts to prevent indefinite blocking."}
+{"input": "latest findings in climate science /only:lex", "output": "lex: climate science research findings 2025 2026\nlex: climate change latest studies temperature emissions"}
+{"input": "latest findings in climate science /only:vec", "output": "vec: what are the most recent scientific findings about climate change in 2025-2026\nvec: what do the latest climate science studies reveal about global warming trends"}
+{"input": "latest findings in climate science /only:hyde", "output": "hyde: Recent studies in 2025 confirm that global average temperatures have exceeded 1.5\u00b0C above pre-industrial levels. Ocean heat content reached record highs, and Arctic sea ice extent continued its decline. New research links accelerated ice sheet loss in Greenland and Antarctica to rising sea levels."}
+{"input": "how to lose weight fast? /only:lex", "output": "lex: lose weight fast safe methods\nlex: weight loss diet exercise calorie deficit"}
+{"input": "how to lose weight fast? /only:vec", "output": "vec: what are safe and effective methods to lose weight quickly\nvec: how can I create a calorie deficit to lose weight without harming my health"}
+{"input": "how to lose weight fast? /only:hyde", "output": "hyde: Safe weight loss is 1-2 pounds per week through a calorie deficit of 500-1000 calories daily. Combine a protein-rich diet with strength training and cardio. Avoid crash diets\u2014they cause muscle loss and metabolic slowdown. Drink water, sleep 7-9 hours, and track food intake for accountability."}
+{"input": "ukraine /only:lex", "output": "lex: Ukraine country history conflict\nlex: Ukraine war geopolitics Kyiv"}
+{"input": "ukraine /only:vec", "output": "vec: what is the current situation in Ukraine and the ongoing conflict\nvec: what is the history and geopolitical context of Ukraine"}
+{"input": "ukraine /only:hyde", "output": "hyde: Ukraine is a country in Eastern Europe with a population of approximately 44 million. Since February 2022, it has been engaged in a full-scale war following Russia's invasion. Kyiv is the capital. Ukraine has deep historical ties to both European and post-Soviet geopolitics."}
+{"input": "http client /only:lex", "output": "lex: HTTP client library request\nlex: HTTP client fetch API REST"}
+{"input": "http client /only:vec", "output": "vec: how to make HTTP requests using an HTTP client library\nvec: which HTTP client libraries are available for making API calls in different languages"}
+{"input": "http client /only:hyde", "output": "hyde: An HTTP client sends requests to web servers and processes responses. In JavaScript, use `fetch()` or `axios`. In Python, use `requests` or `httpx`. In Go, use `net/http`. Typical methods include GET, POST, PUT, DELETE. Set headers, handle timeouts, and parse JSON responses."}
+{"input": "how to vlog with a smartphone /only:lex", "output": "lex: vlog smartphone video recording tips\nlex: smartphone vlogging equipment setup"}
+{"input": "how to vlog with a smartphone /only:vec", "output": "vec: how do I start vlogging using only my smartphone\nvec: what equipment and techniques make smartphone vlogs look professional"}
+{"input": "how to vlog with a smartphone /only:hyde", "output": "hyde: To vlog with a smartphone, use the rear camera for higher quality. Invest in a small tripod or gimbal for stability, a clip-on microphone for clear audio, and a ring light for indoor filming. Shoot in 1080p or 4K, frame at eye level, and edit with apps like CapCut or InShot."}
+{"input": "what are the elements of short stories? /only:lex", "output": "lex: short story elements plot character setting\nlex: short story structure literary elements"}
+{"input": "what are the elements of short stories? /only:vec", "output": "vec: what are the key literary elements that make up a short story\nvec: how are plot, character, setting, and theme used in short story writing"}
+{"input": "what are the elements of short stories? /only:hyde", "output": "hyde: The essential elements of a short story are plot (the sequence of events), character (the people involved), setting (time and place), conflict (the central struggle), theme (the underlying message), and point of view (the narrative perspective). Short stories typically focus on a single incident."}
+{"input": "how to fix car key fob? /only:lex", "output": "lex: car key fob fix repair battery replacement\nlex: key fob not working reprogram"}
+{"input": "how to fix car key fob? /only:vec", "output": "vec: how do I fix a car key fob that stopped working\nvec: how to replace the battery or reprogram a car key fob"}
+{"input": "how to fix car key fob? /only:hyde", "output": "hyde: If your key fob stops working, replace the battery first\u2014open the case with a flat screwdriver and swap in a new CR2032 or CR2025 coin cell. If it still fails, reprogram it: consult your owner's manual for the key-turn sequence or visit a dealer for re-pairing."}
+{"input": "how to grow orchids indoors? /only:lex", "output": "lex: grow orchids indoors care guide\nlex: orchid indoor growing light water humidity"}
+{"input": "how to grow orchids indoors? /only:vec", "output": "vec: how do you care for orchids when growing them indoors\nvec: what light, water, and humidity conditions do indoor orchids need"}
+{"input": "how to grow orchids indoors? /only:hyde", "output": "hyde: Phalaenopsis orchids thrive indoors with bright indirect light, such as an east-facing window. Water once a week by soaking the roots, then draining completely. Maintain 50-70% humidity with a pebble tray. Fertilize biweekly with diluted orchid fertilizer. Repot every 1-2 years in bark medium."}
+{"input": "how to prepare a scientific presentation /only:lex", "output": "lex: scientific presentation preparation slides\nlex: research talk conference presentation tips"}
+{"input": "how to prepare a scientific presentation /only:vec", "output": "vec: how do you prepare and deliver an effective scientific presentation\nvec: what are tips for creating clear slides for a research conference talk"}
+{"input": "how to prepare a scientific presentation /only:hyde", "output": "hyde: Structure your talk as: introduction with context, methods, key results, and conclusions. Use one main idea per slide. Minimize text\u2014use figures and graphs. Practice timing (typically 12 minutes for a 15-minute slot). Anticipate questions about methodology and limitations."}
+{"input": "ai /only:lex", "output": "lex: artificial intelligence AI machine learning\nlex: AI deep learning neural networks LLM"}
+{"input": "ai /only:vec", "output": "vec: what is artificial intelligence and how does modern AI technology work\nvec: what are the main branches and applications of artificial intelligence"}
+{"input": "ai /only:hyde", "output": "hyde: Artificial intelligence (AI) refers to computer systems that perform tasks typically requiring human intelligence, such as recognizing speech, making decisions, and translating languages. Modern AI relies on machine learning, particularly deep neural networks and large language models (LLMs)."}
+{"input": "how to write a research proposal /only:lex", "output": "lex: research proposal writing guide\nlex: research proposal structure sections"}
+{"input": "how to write a research proposal /only:vec", "output": "vec: how do you write a strong research proposal for a grant or thesis\nvec: what sections and elements should a research proposal include"}
+{"input": "how to write a research proposal /only:hyde", "output": "hyde: A research proposal typically includes: title, abstract, introduction with background and significance, literature review, research questions or hypotheses, methodology, timeline, budget, and references. Clearly state the gap your research will fill and justify the chosen methods."}
+{"input": "how to stop negative self-talk? /only:lex", "output": "lex: stop negative self-talk techniques\nlex: negative self-talk cognitive behavioral therapy"}
+{"input": "how to stop negative self-talk? /only:vec", "output": "vec: how can I stop negative self-talk and replace it with positive thinking\nvec: what psychological techniques help overcome critical inner dialogue"}
+{"input": "how to stop negative self-talk? /only:hyde", "output": "hyde: Cognitive behavioral therapy (CBT) teaches you to identify and challenge negative automatic thoughts. When you catch yourself thinking \"I always fail,\" reframe it: \"I struggled this time, but I've succeeded before.\" Keep a thought journal, practice self-compassion, and label thoughts as thoughts, not facts."}
+{"input": "how scientific collaboration advances research /only:lex", "output": "lex: scientific collaboration research advancement\nlex: interdisciplinary research teamwork co-authorship"}
+{"input": "how scientific collaboration advances research /only:vec", "output": "vec: how does collaboration between scientists accelerate research progress\nvec: why is interdisciplinary teamwork important in advancing scientific discovery"}
+{"input": "how scientific collaboration advances research /only:hyde", "output": "hyde: Multi-institutional collaboration allows researchers to share equipment, data, and expertise across disciplines. The Human Genome Project involved 20 institutions across six countries. Studies show that co-authored papers receive more citations and have higher reproducibility than single-author work."}
+{"input": "how to measure business performance /only:lex", "output": "lex: business performance metrics KPIs\nlex: measure business performance revenue profit"}
+{"input": "how to measure business performance /only:vec", "output": "vec: what key performance indicators are used to measure business success\nvec: how do companies track and evaluate their business performance"}
+{"input": "how to measure business performance /only:hyde", "output": "hyde: Key business performance metrics include revenue growth rate, net profit margin, customer acquisition cost (CAC), customer lifetime value (CLV), employee productivity, and return on investment (ROI). Use dashboards and quarterly reviews to track KPIs against targets."}
+{"input": "how to volunteer for a political campaign /only:lex", "output": "lex: volunteer political campaign election\nlex: campaign volunteering canvassing phone banking"}
+{"input": "how to volunteer for a political campaign /only:vec", "output": "vec: how can I sign up to volunteer for a political campaign\nvec: what kinds of volunteer work are available on political campaigns"}
+{"input": "how to volunteer for a political campaign /only:hyde", "output": "hyde: To volunteer, visit the candidate's website and fill out the volunteer form. Common roles include canvassing door-to-door, phone banking, text banking, organizing events, and driving voters to polls on election day. Most campaigns welcome volunteers of all experience levels."}
+{"input": "how to bake a chocolate cake? /only:lex", "output": "lex: chocolate cake recipe bake from scratch\nlex: baking chocolate cake ingredients instructions"}
+{"input": "how to bake a chocolate cake? /only:vec", "output": "vec: how do I bake a moist chocolate cake from scratch at home\nvec: what is a simple recipe for homemade chocolate cake"}
+{"input": "how to bake a chocolate cake? /only:hyde", "output": "hyde: Preheat oven to 350\u00b0F. Mix 2 cups flour, 2 cups sugar, 3/4 cup cocoa powder, 2 tsp baking soda, and 1 tsp salt. Add 2 eggs, 1 cup buttermilk, 1 cup hot coffee, and 1/2 cup oil. Pour into greased pans and bake 30-35 minutes. Frost with chocolate ganache."}
+{"input": "how do mystics approach spirituality? /only:lex", "output": "lex: mystics spirituality mystical experience\nlex: mysticism spiritual practice contemplation"}
+{"input": "how do mystics approach spirituality? /only:vec", "output": "vec: how do mystics across traditions approach spiritual experience and union with the divine\nvec: what practices and beliefs characterize mystical approaches to spirituality"}
+{"input": "how do mystics approach spirituality? /only:hyde", "output": "hyde: Mystics seek direct, personal experience of the divine through contemplation, prayer, and meditation. Christian mystics like Meister Eckhart pursued union with God; Sufi mystics practice dhikr (remembrance of God); and Hindu mystics use yoga and devotion to experience Brahman."}
+{"input": "how cultural festivals affect community bonding /only:lex", "output": "lex: cultural festivals community bonding social cohesion\nlex: festivals community identity traditions"}
+{"input": "how cultural festivals affect community bonding /only:vec", "output": "vec: how do cultural festivals strengthen community bonds and social cohesion\nvec: what role do cultural celebrations play in bringing communities together"}
+{"input": "how cultural festivals affect community bonding /only:hyde", "output": "hyde: Cultural festivals create shared experiences that reinforce collective identity. Studies show communities with regular festivals report higher levels of social trust and neighborly interaction. Events like Diwali, Carnival, and Lunar New Year bring together diverse groups through food, music, and ritual."}
+{"input": "how to follow election results /only:lex", "output": "lex: follow election results live tracking\nlex: election night results coverage 2026"}
+{"input": "how to follow election results /only:vec", "output": "vec: how can I follow live election results on election night\nvec: what websites and apps provide real-time election result tracking"}
+{"input": "how to follow election results /only:hyde", "output": "hyde: Follow live election results on the Associated Press (AP) election page, which aggregates official county-level results. Major outlets like CNN, NYT, and BBC offer interactive maps. Sign up for push notifications from news apps. Official state election websites post certified results."}
+{"input": "how to sell a car to a dealership? /only:lex", "output": "lex: sell car dealership trade-in value\nlex: selling car dealer offer negotiation"}
+{"input": "how to sell a car to a dealership? /only:vec", "output": "vec: how do I sell my used car to a dealership and get a fair price\nvec: what steps should I follow when trading in or selling a car to a dealer"}
+{"input": "how to sell a car to a dealership? /only:hyde", "output": "hyde: Get your car's market value from Kelley Blue Book or Edmunds before visiting a dealer. Clean the car, gather maintenance records, and bring the title. Get quotes from multiple dealers. The dealer will inspect the car, run a vehicle history report, and make an offer based on condition and mileage."}
+{"input": "what is a conductor in physics /only:lex", "output": "lex: conductor physics electrical conductivity\nlex: electrical conductor materials electrons"}
+{"input": "what is a conductor in physics /only:vec", "output": "vec: what is an electrical conductor and how does it work in physics\nvec: what makes certain materials good conductors of electricity"}
+{"input": "what is a conductor in physics /only:hyde", "output": "hyde: An electrical conductor is a material that allows electric current to flow freely through it. Metals like copper, silver, and aluminum are excellent conductors because they have free electrons in their outer shells that move easily when a voltage is applied. Conductivity depends on temperature and material structure."}
+{"input": "what is the significance of civil disobedience? /only:lex", "output": "lex: civil disobedience significance history\nlex: civil disobedience Thoreau MLK Gandhi nonviolent protest"}
+{"input": "what is the significance of civil disobedience? /only:vec", "output": "vec: why is civil disobedience significant in political and social movements\nvec: how have acts of civil disobedience changed laws and society throughout history"}
+{"input": "what is the significance of civil disobedience? /only:hyde", "output": "hyde: Civil disobedience\u2014the deliberate, nonviolent refusal to obey unjust laws\u2014has driven major social change. Thoreau coined the term in 1849; Gandhi used it to help end British rule in India; and Martin Luther King Jr. employed it during the American civil rights movement to challenge segregation."}
+{"input": "how to understand research articles /only:lex", "output": "lex: understand research articles reading papers\nlex: read scientific journal article structure"}
+{"input": "how to understand research articles /only:vec", "output": "vec: how do I read and understand scientific research articles effectively\nvec: what strategy helps beginners comprehend academic journal papers"}
+{"input": "how to understand research articles /only:hyde", "output": "hyde: Start by reading the abstract for the main findings. Then read the introduction for context and the conclusion for takeaways. Next, examine figures and tables. Finally, read methods and results in detail. Look up unfamiliar terms. Read the paper multiple times\u2014comprehension improves with each pass."}
+{"input": "how to start a 401(k) /only:lex", "output": "lex: 401k start retirement plan employer\nlex: 401k enrollment contribution match"}
+{"input": "how to start a 401(k) /only:vec", "output": "vec: how do I set up and start contributing to a 401(k) retirement plan\nvec: what are the steps to enroll in my employer's 401(k) plan"}
+{"input": "how to start a 401(k) /only:hyde", "output": "hyde: Enroll through your employer's HR or benefits portal. Choose a contribution percentage\u2014aim for at least enough to get the full employer match (typically 3-6% of salary). Select investment funds based on your retirement timeline. For 2026, the contribution limit is $23,500 ($31,000 if over 50)."}
+{"input": "how to organize a grassroots campaign /only:lex", "output": "lex: grassroots campaign organizing strategy\nlex: grassroots organizing community mobilization"}
+{"input": "how to organize a grassroots campaign /only:vec", "output": "vec: how do you organize a grassroots political or community campaign from scratch\nvec: what are the key steps in building a grassroots movement for a cause"}
+{"input": "how to organize a grassroots campaign /only:hyde", "output": "hyde: Start by defining your goal and identifying your base\u2014who cares about this issue? Build a leadership team, create a volunteer database, and develop talking points. Use door-to-door canvassing, community meetings, social media, and petitions to grow support. Track commitments and follow up consistently."}
+{"input": "what are the fundamental teachings of sikhism? /only:lex", "output": "lex: Sikhism fundamental teachings beliefs\nlex: Sikh Guru Nanak five articles of faith"}
+{"input": "what are the fundamental teachings of sikhism? /only:vec", "output": "vec: what are the core beliefs and teachings of Sikhism\nvec: what did Guru Nanak and the Sikh Gurus teach about God and living"}
+{"input": "what are the fundamental teachings of sikhism? /only:hyde", "output": "hyde: Sikhism, founded by Guru Nanak in the 15th century Punjab, teaches belief in one God (Ik Onkar), equality of all people, honest living (kirat karni), sharing with others (vand chakko), and remembrance of God (naam japna). The Guru Granth Sahib is the eternal Guru and holy scripture."}
+{"input": "what are aboriginal dreamtime stories /only:lex", "output": "lex: Aboriginal Dreamtime stories Australian Indigenous\nlex: Dreamtime creation mythology Aboriginal culture"}
+{"input": "what are aboriginal dreamtime stories /only:vec", "output": "vec: what are Aboriginal Australian Dreamtime stories and what do they represent\nvec: how do Dreamtime stories explain creation and law in Aboriginal culture"}
+{"input": "what are aboriginal dreamtime stories /only:hyde", "output": "hyde: Dreamtime (or Dreaming) stories are the foundational narratives of Aboriginal Australian peoples. They describe how ancestral beings shaped the land, created animals and plants, and established laws and customs. These stories are passed down through oral tradition, song, dance, and art, and remain central to Indigenous identity."}
+{"input": "how do philosophers approach the meaning of life /only:lex", "output": "lex: meaning of life philosophy existentialism\nlex: philosophers purpose existence meaning"}
+{"input": "how do philosophers approach the meaning of life /only:vec", "output": "vec: how have different philosophers addressed the question of life's meaning\nvec: what do existentialist and other philosophical traditions say about the purpose of life"}
+{"input": "how do philosophers approach the meaning of life /only:hyde", "output": "hyde: Existentialists like Sartre argued life has no inherent meaning\u2014we must create it through our choices. Aristotle proposed eudaimonia (flourishing) as life's purpose. Camus explored the absurd, suggesting we must find meaning despite an indifferent universe. Eastern philosophy often points to liberation from suffering."}
+{"input": "how to make compost at home? /only:lex", "output": "lex: compost home DIY composting bin\nlex: composting kitchen scraps yard waste"}
+{"input": "how to make compost at home? /only:vec", "output": "vec: how do I start composting food scraps and yard waste at home\nvec: what is the step-by-step process for making compost in a backyard bin"}
+{"input": "how to make compost at home? /only:hyde", "output": "hyde: Layer brown materials (dried leaves, cardboard) and green materials (kitchen scraps, grass clippings) in a 3:1 ratio. Keep the pile moist like a wrung-out sponge. Turn it every 1-2 weeks with a pitchfork. Avoid meat, dairy, and oils. Finished compost is dark, crumbly, and earthy-smelling in 2-6 months."}
+{"input": "how to reduce food waste? /only:lex", "output": "lex: reduce food waste tips prevention\nlex: food waste reduction meal planning storage"}
+{"input": "how to reduce food waste? /only:vec", "output": "vec: how can I reduce food waste at home through planning and storage\nvec: what strategies help households throw away less food"}
+{"input": "how to reduce food waste? /only:hyde", "output": "hyde: Plan meals weekly and shop with a list to avoid overbuying. Store produce properly\u2014leafy greens in airtight containers, herbs in water. Use FIFO (first in, first out) in your fridge. Freeze leftovers and overripe fruit. Compost scraps you can't eat. The average household wastes 30% of purchased food."}
+{"input": "how to learn about native american culture /only:lex", "output": "lex: Native American culture history learn\nlex: Indigenous peoples traditions tribal nations"}
+{"input": "how to learn about native american culture /only:vec", "output": "vec: how can I respectfully learn about Native American culture and history\nvec: what are good resources for understanding Indigenous peoples' traditions and heritage"}
+{"input": "how to learn about native american culture /only:hyde", "output": "hyde: Visit the National Museum of the American Indian (Smithsonian) or local tribal cultural centers. Read works by Native authors like Joy Harjo, Tommy Orange, and Robin Wall Kimmerer. Attend powwows and cultural events when open to the public. Learn which tribal nations are indigenous to your area."}
+{"input": "how to participate in a town hall meeting /only:lex", "output": "lex: town hall meeting participate attend\nlex: town hall public meeting local government"}
+{"input": "how to participate in a town hall meeting /only:vec", "output": "vec: how do I attend and participate in a local town hall meeting\nvec: what should I know before speaking at a town hall meeting"}
+{"input": "how to participate in a town hall meeting /only:hyde", "output": "hyde: Check your local government website or social media for upcoming town hall schedules. Arrive early and sign up to speak if required. Prepare a concise statement (usually 2-3 minutes). Stay respectful and on-topic. Bring supporting data or personal stories to strengthen your point."}
+{"input": "how to choose a photo backdrop /only:lex", "output": "lex: photo backdrop choose background photography\nlex: photography backdrop portrait studio"}
+{"input": "how to choose a photo backdrop /only:vec", "output": "vec: how do I choose the right backdrop for portrait or studio photography\nvec: what factors should I consider when selecting a photo backdrop"}
+{"input": "how to choose a photo backdrop /only:hyde", "output": "hyde: Choose a backdrop that complements your subject without competing for attention. Solid colors (white, gray, black) are versatile for portraits. Muslin provides a painterly texture. For outdoor shoots, look for uncluttered backgrounds with good depth. Consider the color of your subject's clothing to avoid clashing."}
+{"input": "what is the nature of god in christianity /only:lex", "output": "lex: nature of God Christianity Trinity\nlex: Christian God attributes Father Son Holy Spirit"}
+{"input": "what is the nature of god in christianity /only:vec", "output": "vec: how does Christianity describe the nature and attributes of God\nvec: what is the doctrine of the Trinity in Christian theology"}
+{"input": "what is the nature of god in christianity /only:hyde", "output": "hyde: Christianity teaches that God is one being existing as three persons: the Father, the Son (Jesus Christ), and the Holy Spirit. This is the doctrine of the Trinity. God is described as omniscient, omnipotent, omnipresent, eternal, and perfectly good. God is both transcendent and personally involved in creation."}
+{"input": "how to scale a business /only:lex", "output": "lex: scale business growth strategies\nlex: business scaling operations revenue expansion"}
+{"input": "how to scale a business /only:vec", "output": "vec: how do you scale a business effectively while managing growth challenges\nvec: what strategies help companies expand operations and increase revenue"}
+{"input": "how to scale a business /only:hyde", "output": "hyde: Scaling requires repeatable processes, automation, and a strong team. Standardize operations with SOPs, invest in technology to reduce manual work, and hire ahead of demand. Monitor unit economics\u2014ensure customer acquisition cost stays below lifetime value. Secure funding for growth through revenue, debt, or equity."}
+{"input": "what is yoga and its benefits /only:lex", "output": "lex: yoga benefits health practice\nlex: yoga physical mental health flexibility stress"}
+{"input": "what is yoga and its benefits /only:vec", "output": "vec: what is yoga and what physical and mental health benefits does it provide\nvec: how does regular yoga practice improve flexibility, strength, and well-being"}
+{"input": "what is yoga and its benefits /only:hyde", "output": "hyde: Yoga is an ancient practice combining physical postures (asanas), breathing techniques (pranayama), and meditation. Regular practice improves flexibility, builds strength, reduces stress and anxiety, lowers blood pressure, and enhances sleep quality. Styles range from gentle Hatha to vigorous Vinyasa and Ashtanga."}
+{"input": "how to get rid of self-limiting beliefs? /only:lex", "output": "lex: self-limiting beliefs overcome remove\nlex: limiting beliefs mindset change techniques"}
+{"input": "how to get rid of self-limiting beliefs? /only:vec", "output": "vec: how can I identify and overcome self-limiting beliefs that hold me back\nvec: what techniques help replace self-limiting beliefs with empowering ones"}
+{"input": "how to get rid of self-limiting beliefs? /only:hyde", "output": "hyde: Identify limiting beliefs by noticing recurring thoughts like \"I'm not smart enough\" or \"I don't deserve success.\" Challenge each belief: what evidence supports it? What evidence contradicts it? Replace it with a realistic affirmation. Take small actions that disprove the belief to build new neural pathways."}
+{"input": "how are seasons determined by geography /only:lex", "output": "lex: seasons geography Earth axial tilt\nlex: seasons latitude hemisphere climate"}
+{"input": "how are seasons determined by geography /only:vec", "output": "vec: how does geography and Earth's axial tilt determine the seasons\nvec: why do different parts of the world experience different seasons at the same time"}
+{"input": "how are seasons determined by geography /only:hyde", "output": "hyde: Seasons result from Earth's 23.5\u00b0 axial tilt. As Earth orbits the Sun, the Northern and Southern Hemispheres alternately tilt toward or away from the Sun, varying the angle and duration of sunlight. Near the equator, seasons are minimal; at higher latitudes, seasonal variation is extreme."}
+{"input": "how to create a scalable business model /only:lex", "output": "lex: scalable business model design\nlex: business model scalability revenue growth"}
+{"input": "how to create a scalable business model /only:vec", "output": "vec: how do you design a business model that scales efficiently with growth\nvec: what makes a business model scalable and what are common scalable model types"}
+{"input": "how to create a scalable business model /only:hyde", "output": "hyde: A scalable business model increases revenue without proportional increases in costs. SaaS, marketplace, and platform models are inherently scalable. Key elements: low marginal cost per customer, automation of delivery, network effects, and recurring revenue. Test with a minimum viable product before scaling."}
+{"input": "can pets help reduce kids' anxiety? /only:lex", "output": "lex: pets children anxiety reduction\nlex: pet therapy kids stress mental health"}
+{"input": "can pets help reduce kids' anxiety? /only:vec", "output": "vec: can having pets help reduce anxiety and stress in children\nvec: what research shows about the effect of pets on children's mental health"}
+{"input": "can pets help reduce kids' anxiety? /only:hyde", "output": "hyde: Studies show that children with pets exhibit lower cortisol levels and reduced anxiety. A 2015 study in Preventing Chronic Disease found that children living with dogs had significantly lower rates of childhood anxiety. Petting an animal for 10 minutes reduces cortisol and increases oxytocin levels."}
+{"input": "date parse /only:lex", "output": "lex: date parse string format\nlex: date parsing datetime library"}
+{"input": "date parse /only:vec", "output": "vec: how to parse date strings into date objects in programming\nvec: which libraries handle date parsing and formatting in JavaScript or Python"}
+{"input": "date parse /only:hyde", "output": "hyde: In JavaScript, use `new Date('2025-01-15')` or `Date.parse()` for ISO strings. For complex formats, use `date-fns` parse function or `dayjs('12/25/2025', 'MM/DD/YYYY')`. In Python, use `datetime.strptime('2025-01-15', '%Y-%m-%d')` or the `dateutil.parser.parse()` function for flexible parsing."}
+{"input": "how do christians observe lent? /only:lex", "output": "lex: Christians observe Lent fasting prayer\nlex: Lent Christian observance Ash Wednesday Easter"}
+{"input": "how do christians observe lent? /only:vec", "output": "vec: how do Christians observe the season of Lent before Easter\nvec: what are the traditional Lenten practices of fasting, prayer, and almsgiving"}
+{"input": "how do christians observe lent? /only:hyde", "output": "hyde: Lent is a 40-day period before Easter beginning on Ash Wednesday. Christians observe it through fasting (abstaining from certain foods or luxuries), increased prayer, and almsgiving (charitable giving). Many give up a habit or take on a spiritual discipline. Catholic tradition requires abstaining from meat on Fridays."}
+{"input": "what are literary short stories? /only:lex", "output": "lex: literary short stories fiction genre\nlex: short story literary fiction writers"}
+{"input": "what are literary short stories? /only:vec", "output": "vec: what defines literary short stories as distinct from other fiction genres\nvec: what are the characteristics of literary short fiction and who are notable writers in the genre"}
+{"input": "what are literary short stories? /only:hyde", "output": "hyde: Literary short stories prioritize character development, thematic depth, and prose style over plot-driven entertainment. They often explore the human condition through interior conflict and ambiguity. Notable practitioners include Anton Chekhov, Alice Munro, Raymond Carver, and Jorge Luis Borges."}
+{"input": "thailand /only:lex", "output": "lex: Thailand country travel Southeast Asia\nlex: Thailand Bangkok culture tourism"}
+{"input": "thailand /only:vec", "output": "vec: what should I know about Thailand as a travel destination or country\nvec: what are the key facts about Thailand's culture, geography, and tourist attractions"}
+{"input": "thailand /only:hyde", "output": "hyde: Thailand is a Southeast Asian country known for tropical beaches, ornate temples, and rich cuisine. Bangkok is the capital. Popular destinations include Chiang Mai, Phuket, and the islands of Koh Samui and Phi Phi. Thai food staples include pad thai, green curry, and tom yum soup."}
+{"input": "how to do a flip on a trampoline /only:lex", "output": "lex: trampoline flip backflip technique\nlex: trampoline flip tutorial safety"}
+{"input": "how to do a flip on a trampoline /only:vec", "output": "vec: how do I safely learn to do a backflip on a trampoline\nvec: what is the proper technique for doing flips on a trampoline"}
+{"input": "how to do a flip on a trampoline /only:hyde", "output": "hyde: Start by mastering high, controlled bounces. Practice tucking your knees to your chest mid-air. For a backflip, bounce high, throw your arms back, tuck tightly, and spot your landing. Always practice on a trampoline with safety nets and a spotter. Progress from seat drops to back drops before attempting flips."}
+{"input": "how to efficiently use time at work? /only:lex", "output": "lex: time management work productivity\nlex: efficient time work techniques scheduling"}
+{"input": "how to efficiently use time at work? /only:vec", "output": "vec: how can I manage my time more efficiently at work to increase productivity\nvec: what time management techniques help get more done during the workday"}
+{"input": "how to efficiently use time at work? /only:hyde", "output": "hyde: Use time-blocking to schedule focused work in 90-minute intervals. Prioritize with the Eisenhower Matrix: do urgent-important tasks first, schedule important-not-urgent ones, delegate urgent-not-important tasks, and eliminate the rest. Batch similar tasks, limit meetings, and turn off notifications during deep work."}
+{"input": "what is venture capital funding /only:lex", "output": "lex: venture capital funding investment startups\nlex: VC funding rounds Series A seed"}
+{"input": "what is venture capital funding /only:vec", "output": "vec: what is venture capital and how does VC funding work for startups\nvec: what are the different stages of venture capital funding from seed to Series C"}
+{"input": "what is venture capital funding /only:hyde", "output": "hyde: Venture capital is equity financing provided to high-growth startups in exchange for ownership stakes. Funding stages include pre-seed, seed ($500K-$2M), Series A ($2-15M), Series B ($15-50M), and later rounds. VCs evaluate the team, market size, traction, and scalability before investing."}
+{"input": "app build /only:lex", "output": "lex: app build compile deploy\nlex: mobile app build process configuration"}
+{"input": "app build /only:vec", "output": "vec: how to build and compile a mobile or web application for deployment\nvec: what are the steps in the app build process and common build tools"}
+{"input": "app build /only:hyde", "output": "hyde: For mobile apps, use `xcodebuild` (iOS) or `./gradlew assembleRelease` (Android). For web apps, run `npm run build` or `vite build` to bundle and optimize assets. Configure environment variables, set the build target, and use CI/CD pipelines (GitHub Actions, CircleCI) for automated builds."}
+{"input": "how to build strong relationships? /only:lex", "output": "lex: build strong relationships communication trust\nlex: healthy relationships skills connection"}
+{"input": "how to build strong relationships? /only:vec", "output": "vec: how do you build and maintain strong personal relationships\nvec: what habits and communication skills help strengthen relationships"}
+{"input": "how to build strong relationships? /only:hyde", "output": "hyde: Strong relationships are built on trust, open communication, and mutual respect. Practice active listening\u2014give full attention without planning your response. Express appreciation regularly. Handle conflicts by addressing issues directly without blame. Invest quality time and show up consistently during both good and hard times."}
+{"input": "when to start prenatal classes? /only:lex", "output": "lex: prenatal classes start when pregnancy\nlex: childbirth education classes timing"}
+{"input": "when to start prenatal classes? /only:vec", "output": "vec: when during pregnancy should I start taking prenatal classes\nvec: what is the recommended timing for beginning childbirth education classes"}
+{"input": "when to start prenatal classes? /only:hyde", "output": "hyde: Most experts recommend starting prenatal classes during the second trimester, around weeks 20-24, and completing them by week 36. Early classes cover nutrition, exercise, and fetal development. Later classes focus on labor stages, breathing techniques, pain management options, breastfeeding, and newborn care."}
+{"input": "how to choose kitchen cabinet hardware /only:lex", "output": "lex: kitchen cabinet hardware handles knobs\nlex: cabinet hardware style finish selection"}
+{"input": "how to choose kitchen cabinet hardware /only:vec", "output": "vec: how do I choose the right handles and knobs for kitchen cabinets\nvec: what styles and finishes of kitchen cabinet hardware work with different designs"}
+{"input": "how to choose kitchen cabinet hardware /only:hyde", "output": "hyde: Match hardware to your kitchen style: brushed nickel or stainless for modern kitchens, oil-rubbed bronze for traditional, brass for transitional. Use pulls (3-4 inches) on drawers and knobs on doors. Test ergonomics before buying in bulk. Standard mounting holes are 3 or 3.75 inches apart."}
+{"input": "what is the significance of the torah? /only:lex", "output": "lex: Torah significance Judaism sacred text\nlex: Torah five books Moses Jewish law"}
+{"input": "what is the significance of the torah? /only:vec", "output": "vec: what is the Torah and why is it significant in Judaism\nvec: what role does the Torah play in Jewish religious life and law"}
+{"input": "what is the significance of the torah? /only:hyde", "output": "hyde: The Torah comprises the five books of Moses (Genesis, Exodus, Leviticus, Numbers, Deuteronomy) and is the most sacred text in Judaism. It contains the 613 commandments (mitzvot), the creation narrative, and the covenant between God and the Israelites. It is read publicly in synagogue every week."}
+{"input": "test mock /only:lex", "output": "lex: test mock unit testing\nlex: mock object stub spy testing"}
+{"input": "test mock /only:vec", "output": "vec: how to use mocks and stubs in unit testing\nvec: what are mock objects and how do they help isolate components in tests"}
+{"input": "test mock /only:hyde", "output": "hyde: Mocks replace real dependencies with controlled objects during testing. In Python, use `unittest.mock.patch()` to replace a function. In JavaScript, use `jest.fn()` or `jest.spyOn()`. Mocks verify that methods were called with expected arguments. Stubs return fixed values; spies track calls without replacing behavior."}
+{"input": "how does culture influence identity? /only:lex", "output": "lex: culture influence identity formation\nlex: cultural identity socialization values"}
+{"input": "how does culture influence identity? /only:vec", "output": "vec: how does culture shape a person's sense of identity\nvec: in what ways do cultural values and traditions influence who we become"}
+{"input": "how does culture influence identity? /only:hyde", "output": "hyde: Culture shapes identity through language, traditions, values, and social norms internalized from childhood. Family, community, religion, and media all transmit cultural frameworks. Identity is constructed through negotiation between personal experiences and cultural expectations, creating a sense of belonging and self-understanding."}
+{"input": "how to be a good listener /only:lex", "output": "lex: good listener active listening skills\nlex: listening skills empathy communication"}
+{"input": "how to be a good listener /only:vec", "output": "vec: how can I become a better and more active listener in conversations\nvec: what techniques improve listening skills and show empathy"}
+{"input": "how to be a good listener /only:hyde", "output": "hyde: Active listening means giving full attention: maintain eye contact, put away distractions, and don't interrupt. Reflect back what you heard (\"It sounds like you're saying...\"). Ask open-ended questions to show interest. Avoid jumping to advice\u2014sometimes people just need to feel heard. Validate their emotions."}
+{"input": "how to improve public speaking skills /only:lex", "output": "lex: public speaking skills improve presentation\nlex: public speaking confidence practice tips"}
+{"input": "how to improve public speaking skills /only:vec", "output": "vec: how can I improve my public speaking and overcome stage fright\nvec: what techniques help deliver confident and engaging presentations"}
+{"input": "how to improve public speaking skills /only:hyde", "output": "hyde: Join Toastmasters for regular practice in a supportive environment. Record yourself speaking and review for filler words and pacing. Structure talks with a clear opening hook, three key points, and a memorable close. Practice in front of friends. Manage nerves through deep breathing and visualization beforehand."}
+{"input": "log debug /only:lex", "output": "lex: log debug logging level\nlex: debug logging output configuration"}
+{"input": "log debug /only:vec", "output": "vec: how to configure debug-level logging in an application\nvec: how to use log debug statements for troubleshooting code"}
+{"input": "log debug /only:hyde", "output": "hyde: Set the log level to DEBUG to capture detailed diagnostic output. In Python: `logging.basicConfig(level=logging.DEBUG)`. In Node.js with winston: `logger.level = 'debug'`. In Java with SLF4J: configure logback.xml with `<root level=\"DEBUG\">`. Use debug logs for variable values, flow tracing, and conditional paths."}
+{"input": "what is the large hadron collider /only:lex", "output": "lex: Large Hadron Collider LHC CERN\nlex: LHC particle accelerator Higgs boson"}
+{"input": "what is the large hadron collider /only:vec", "output": "vec: what is the Large Hadron Collider and what has it discovered\nvec: how does the LHC at CERN work to study particle physics"}
+{"input": "what is the large hadron collider /only:hyde", "output": "hyde: The Large Hadron Collider (LHC) at CERN near Geneva is the world's largest and most powerful particle accelerator. It accelerates protons to near light speed in a 27-kilometer ring and collides them to study fundamental particles. In 2012, it confirmed the existence of the Higgs boson."}
+{"input": "what is the significance of worship practices? /only:lex", "output": "lex: worship practices significance religion\nlex: worship rituals prayer spiritual meaning"}
+{"input": "what is the significance of worship practices? /only:vec", "output": "vec: what is the significance of worship practices across different religions\nvec: why do religious communities engage in rituals, prayer, and worship"}
+{"input": "what is the significance of worship practices? /only:hyde", "output": "hyde: Worship practices\u2014prayer, ritual, song, and meditation\u2014serve to connect individuals with the divine, reinforce communal identity, and express gratitude and devotion. In Christianity, worship centers on liturgy and sacraments; in Islam, the five daily prayers (salat); in Hinduism, puja and temple ceremonies."}
+{"input": "what are fair trade products? /only:lex", "output": "lex: fair trade products certification\nlex: fair trade coffee chocolate ethical"}
+{"input": "what are fair trade products? /only:vec", "output": "vec: what are fair trade products and how does fair trade certification work\nvec: what does the fair trade label mean for farmers and consumers"}
+{"input": "what are fair trade products? /only:hyde", "output": "hyde: Fair trade products are goods certified to meet standards ensuring producers in developing countries receive fair prices, safe working conditions, and sustainable practices. Common fair trade products include coffee, chocolate, tea, bananas, and cotton. Look for the Fairtrade International or Fair Trade USA label."}
+{"input": "what is the significance of community in ethics /only:lex", "output": "lex: community ethics significance moral philosophy\nlex: communitarian ethics social responsibility"}
+{"input": "what is the significance of community in ethics /only:vec", "output": "vec: what role does community play in ethical theory and moral life\nvec: how does communitarian philosophy view the relationship between community and ethics"}
+{"input": "what is the significance of community in ethics /only:hyde", "output": "hyde: Communitarian ethics argues that moral reasoning is rooted in community values and shared traditions, not just individual rights. Philosophers like Alasdair MacIntyre and Charles Taylor emphasize that virtues and moral identity are shaped by the communities in which we participate."}
+{"input": "what are index funds /only:lex", "output": "lex: index funds investing passive\nlex: index fund S&P 500 ETF low cost"}
+{"input": "what are index funds /only:vec", "output": "vec: what are index funds and why are they popular for investing\nvec: how do index funds work and what are their advantages over actively managed funds"}
+{"input": "what are index funds /only:hyde", "output": "hyde: An index fund is a type of mutual fund or ETF that tracks a market index like the S&P 500. It holds all (or a representative sample of) the stocks in that index. Index funds offer broad diversification, low expense ratios (typically 0.03-0.20%), and historically outperform most actively managed funds."}
+{"input": "what is hinduism /only:lex", "output": "lex: Hinduism religion beliefs practices\nlex: Hindu dharma gods Vedas karma reincarnation"}
+{"input": "what is hinduism /only:vec", "output": "vec: what is Hinduism and what are its main beliefs and practices\nvec: what do Hindus believe about God, karma, and the cycle of rebirth"}
+{"input": "what is hinduism /only:hyde", "output": "hyde: Hinduism is one of the world's oldest religions, originating in the Indian subcontinent. It encompasses diverse beliefs but key concepts include dharma (duty), karma (action and consequence), samsara (cycle of rebirth), and moksha (liberation). Sacred texts include the Vedas, Upanishads, and Bhagavad Gita."}
+{"input": "what is sufism? /only:lex", "output": "lex: Sufism Islamic mysticism spiritual\nlex: Sufi practices dhikr whirling dervishes"}
+{"input": "what is sufism? /only:vec", "output": "vec: what is Sufism and how does it relate to Islam\nvec: what are the spiritual practices and beliefs of Sufi mystics"}
+{"input": "what is sufism? /only:hyde", "output": "hyde: Sufism is the mystical dimension of Islam, emphasizing the inward search for God and the purification of the soul. Sufis practice dhikr (repetitive remembrance of God), meditation, and poetry to achieve closeness to the divine. Rumi and Al-Ghazali are among the most famous Sufi masters."}
+{"input": "how to outline a novel /only:lex", "output": "lex: outline novel plot structure\nlex: novel outline writing planning chapters"}
+{"input": "how to outline a novel /only:vec", "output": "vec: how do I create an outline for writing a novel\nvec: what methods do authors use to plan and structure a novel before writing"}
+{"input": "how to outline a novel /only:hyde", "output": "hyde: Start with a one-sentence premise, then expand to a paragraph summary. Use the three-act structure: setup, confrontation, resolution. Create character profiles with goals and arcs. Write a chapter-by-chapter outline with scene goals. Methods include the Snowflake Method, Save the Cat beat sheet, or index cards on a corkboard."}
+{"input": "what is the role of the who in pandemics /only:lex", "output": "lex: WHO World Health Organization pandemic role\nlex: WHO pandemic response disease outbreak"}
+{"input": "what is the role of the who in pandemics /only:vec", "output": "vec: what role does the World Health Organization play during pandemics\nvec: how does the WHO coordinate international responses to disease outbreaks"}
+{"input": "what is the role of the who in pandemics /only:hyde", "output": "hyde: The World Health Organization (WHO) coordinates international pandemic response by issuing health guidelines, declaring Public Health Emergencies of International Concern (PHEIC), distributing vaccines through COVAX, providing technical assistance to countries, and monitoring disease surveillance data from member states."}
+{"input": "how are glaciers formed /only:lex", "output": "lex: glacier formation process ice\nlex: glaciers formed snow compaction accumulation"}
+{"input": "how are glaciers formed /only:vec", "output": "vec: how do glaciers form from accumulated snow and ice over time\nvec: what is the process of glacier formation and movement"}
+{"input": "how are glaciers formed /only:hyde", "output": "hyde: Glaciers form when annual snowfall exceeds snowmelt over many years. The accumulated snow compresses into firn (granular ice) and eventually into dense glacial ice. When the ice mass becomes thick enough, gravity causes it to flow slowly downhill. This process takes decades to centuries."}
+{"input": "how to ensure research reproducibility /only:lex", "output": "lex: research reproducibility replication methods\nlex: reproducible research data sharing protocols"}
+{"input": "how to ensure research reproducibility /only:vec", "output": "vec: how do researchers ensure their studies are reproducible by others\nvec: what practices improve the reproducibility and replication of scientific research"}
+{"input": "how to ensure research reproducibility /only:hyde", "output": "hyde: Ensure reproducibility by pre-registering your study, sharing raw data and analysis code in public repositories (e.g., GitHub, Zenodo), documenting every methodological step, using version control, and providing computational environments (Docker containers). Report all results, including null findings."}
+{"input": "how do different religions view angels? /only:lex", "output": "lex: angels religions Christianity Islam Judaism\nlex: angels religious beliefs spiritual beings"}
+{"input": "how do different religions view angels? /only:vec", "output": "vec: how do different religions like Christianity, Islam, and Judaism view angels\nvec: what roles do angels play across major world religions"}
+{"input": "how do different religions view angels? /only:hyde", "output": "hyde: In Christianity, angels are messengers of God (e.g., Gabriel, Michael) who serve as protectors and intermediaries. Islam teaches that angels (mala'ika) are created from light and include Jibril (Gabriel) who delivered the Quran. Judaism describes angels as divine agents carrying out God's will in the Hebrew Bible."}
+{"input": "how does the social contract theory explain governance /only:lex", "output": "lex: social contract theory governance political philosophy\nlex: social contract Hobbes Locke Rousseau"}
+{"input": "how does the social contract theory explain governance /only:vec", "output": "vec: how does social contract theory explain the legitimacy of government\nvec: what did Hobbes, Locke, and Rousseau argue about the social contract and governance"}
+{"input": "how does the social contract theory explain governance /only:hyde", "output": "hyde: Social contract theory holds that governments derive legitimacy from the consent of the governed. Hobbes argued people surrender freedoms to a sovereign for security. Locke emphasized natural rights to life, liberty, and property, with government protecting them. Rousseau proposed the general will as the basis for collective governance."}
+{"input": "how to use trekking poles /only:lex", "output": "lex: trekking poles hiking technique\nlex: trekking poles adjustment grip walking"}
+{"input": "how to use trekking poles /only:vec", "output": "vec: how do you properly use trekking poles while hiking\nvec: what is the correct technique for adjusting and using trekking poles on trails"}
+{"input": "how to use trekking poles /only:hyde", "output": "hyde: Adjust pole length so your elbow is at 90\u00b0 on flat ground. Shorten poles for uphill, lengthen for downhill. Plant the pole opposite your stepping foot. Use wrist straps for support\u2014push down through the strap, not the grip. On steep descents, poles reduce knee impact by up to 25%."}
+{"input": "how does blockchain technology work /only:lex", "output": "lex: blockchain technology distributed ledger\nlex: blockchain cryptography decentralized consensus"}
+{"input": "how does blockchain technology work /only:vec", "output": "vec: how does blockchain technology work at a technical level\nvec: what are the key components of blockchain like blocks, hashing, and consensus mechanisms"}
+{"input": "how does blockchain technology work /only:hyde", "output": "hyde: A blockchain is a distributed ledger where transactions are grouped into blocks. Each block contains a cryptographic hash of the previous block, creating an immutable chain. Nodes validate transactions through consensus mechanisms like Proof of Work or Proof of Stake. No central authority controls the network."}
+{"input": "how to plant a wildflower meadow? /only:lex", "output": "lex: wildflower meadow planting seeds\nlex: plant wildflower meadow soil preparation native"}
+{"input": "how to plant a wildflower meadow? /only:vec", "output": "vec: how do I plant and establish a wildflower meadow in my yard\nvec: what steps are needed to create a wildflower meadow from seed"}
+{"input": "how to plant a wildflower meadow? /only:hyde", "output": "hyde: Clear existing vegetation by mowing low and raking away debris. Loosen the top inch of soil. Mix wildflower seeds with sand for even distribution and scatter in fall or early spring. Press seeds into soil but don't cover them\u2014most need light to germinate. Water gently until established. Avoid fertilizer, which favors grasses."}
+{"input": "how to engage in civil political discussions /only:lex", "output": "lex: civil political discussion respectful debate\nlex: political conversation etiquette disagreement"}
+{"input": "how to engage in civil political discussions /only:vec", "output": "vec: how can I have respectful and productive political discussions with people who disagree\nvec: what strategies help keep political conversations civil and constructive"}
+{"input": "how to engage in civil political discussions /only:hyde", "output": "hyde: Start by listening to understand, not to rebut. Ask questions like \"What experiences led you to that view?\" Avoid personal attacks and generalizations. Find common ground before addressing differences. Use \"I\" statements instead of \"you always\" accusations. Accept that changing minds takes time and repeated respectful engagement."}
+{"input": "where to watch super bowl 2024 /only:lex", "output": "lex: super bowl 2024 streaming channel\nlex: super bowl LVIII broadcast network\nlex: watch super bowl 2024 live"}
+{"input": "where to watch super bowl 2024 /only:vec", "output": "vec: what channel or streaming service is broadcasting Super Bowl 2024\nvec: where can I watch the 2024 Super Bowl LVIII game live online"}
+{"input": "where to watch super bowl 2024 /only:hyde", "output": "hyde: Super Bowl LVIII airs on CBS on February 11, 2024. You can stream it live on Paramount+ or through the CBS Sports app. Kickoff is at 6:30 PM ET from Allegiant Stadium in Las Vegas."}
+{"input": "what is the mind-body problem /only:lex", "output": "lex: mind-body problem philosophy\nlex: dualism consciousness physicalism\nlex: mental states physical brain"}
+{"input": "what is the mind-body problem /only:vec", "output": "vec: what is the philosophical mind-body problem and why is it difficult to solve\nvec: how do philosophers explain the relationship between consciousness and the physical brain"}
+{"input": "what is the mind-body problem /only:hyde", "output": "hyde: The mind-body problem asks how mental states like thoughts, feelings, and consciousness relate to physical states of the brain. Descartes proposed substance dualism, arguing mind and body are fundamentally different substances."}
+{"input": "how to report scientific findings /only:lex", "output": "lex: scientific findings report writing\nlex: research results publication format\nlex: academic paper methodology results"}
+{"input": "how to report scientific findings /only:vec", "output": "vec: how should scientists structure and report their research findings in a paper\nvec: what is the standard format for reporting results in a scientific publication"}
+{"input": "how to report scientific findings /only:hyde", "output": "hyde: When reporting scientific findings, organize your paper into Introduction, Methods, Results, and Discussion (IMRaD). Present results with tables and figures, include statistical analyses, and state findings objectively before interpreting them."}
+{"input": "code test /only:lex", "output": "lex: software unit testing framework\nlex: code testing automated tests\nlex: test-driven development TDD"}
+{"input": "code test /only:vec", "output": "vec: how to write and run automated tests for software code\nvec: what are the common approaches to testing code including unit tests and integration tests"}
+{"input": "code test /only:hyde", "output": "hyde: Unit tests verify individual functions in isolation. Use a testing framework like Jest, pytest, or JUnit to write assertions that check expected outputs against actual results. Run tests with `npm test` or `pytest`."}
+{"input": "what is human rights /only:lex", "output": "lex: human rights definition universal declaration\nlex: fundamental human rights UDHR\nlex: civil political economic social rights"}
+{"input": "what is human rights /only:vec", "output": "vec: what are human rights and what does the Universal Declaration of Human Rights guarantee\nvec: what fundamental freedoms and protections are considered universal human rights"}
+{"input": "what is human rights /only:hyde", "output": "hyde: Human rights are inherent rights belonging to every person regardless of nationality, sex, ethnicity, or religion. The Universal Declaration of Human Rights (1948) established 30 articles covering civil, political, economic, social, and cultural rights."}
+{"input": "what is the function of dna /only:lex", "output": "lex: DNA function genetic information\nlex: deoxyribonucleic acid protein synthesis\nlex: DNA replication transcription translation"}
+{"input": "what is the function of dna /only:vec", "output": "vec: what role does DNA play in storing and transmitting genetic information in cells\nvec: how does DNA encode instructions for building proteins in living organisms"}
+{"input": "what is the function of dna /only:hyde", "output": "hyde: DNA stores the genetic instructions needed for the development and functioning of all living organisms. It encodes genes as sequences of nucleotide bases (A, T, G, C) that are transcribed into RNA and translated into proteins."}
+{"input": "how to advocate for a cause /only:lex", "output": "lex: cause advocacy strategies campaigning\nlex: grassroots advocacy organizing\nlex: political advocacy lobbying petition"}
+{"input": "how to advocate for a cause /only:vec", "output": "vec: what are effective ways to advocate and campaign for a social or political cause\nvec: how can individuals organize and mobilize support for a cause they care about"}
+{"input": "how to advocate for a cause /only:hyde", "output": "hyde: Start by clearly defining your cause and goals. Build a coalition of supporters, create a compelling message, and use multiple channels: social media, petitions, letters to legislators, public events, and media outreach to amplify your message."}
+{"input": "how to grow blueberries at home? /only:lex", "output": "lex: grow blueberries home garden\nlex: blueberry bush planting acidic soil\nlex: container blueberry growing care"}
+{"input": "how to grow blueberries at home? /only:vec", "output": "vec: how do I plant and care for blueberry bushes in my home garden\nvec: what soil pH and conditions do blueberries need to grow well at home"}
+{"input": "how to grow blueberries at home? /only:hyde", "output": "hyde: Blueberries thrive in acidic soil with a pH of 4.5-5.5. Plant in full sun with well-drained soil amended with peat moss. Space bushes 4-6 feet apart and mulch with pine needles. Water regularly and prune dead wood in late winter."}
+{"input": "what causes market volatility /only:lex", "output": "lex: stock market volatility causes\nlex: financial market fluctuations economic factors\nlex: market volatility interest rates inflation"}
+{"input": "what causes market volatility /only:vec", "output": "vec: what economic and geopolitical factors cause stock market volatility\nvec: why do financial markets experience sudden price swings and instability"}
+{"input": "what causes market volatility /only:hyde", "output": "hyde: Market volatility is driven by economic data releases, interest rate changes, geopolitical events, earnings surprises, and investor sentiment. High uncertainty about inflation, central bank policy, or political instability increases price fluctuations across asset classes."}
+{"input": "what is the importance of spiritual leadership? /only:lex", "output": "lex: spiritual leadership organizations values\nlex: spiritual leadership workplace meaning purpose"}
+{"input": "what is the importance of spiritual leadership? /only:vec", "output": "vec: how does spiritual leadership influence organizations and their members\nvec: what role does spiritual leadership play in providing meaning and purpose at work"}
+{"input": "what is the importance of spiritual leadership? /only:hyde", "output": "hyde: Spiritual leadership theory proposes that leaders who foster a sense of calling, meaning, and membership create more engaged and productive organizations. It emphasizes vision, altruistic love, and hope as core values that transcend traditional management."}
+{"input": "what is the paris agreement /only:lex", "output": "lex: Paris Agreement climate change 2015\nlex: Paris climate accord greenhouse gas emissions\nlex: Paris Agreement temperature goals"}
+{"input": "what is the paris agreement /only:vec", "output": "vec: what is the Paris Agreement and what are its goals for addressing climate change\nvec: what commitments did countries make under the 2015 Paris climate accord"}
+{"input": "what is the paris agreement /only:hyde", "output": "hyde: The Paris Agreement is a legally binding international treaty on climate change adopted in 2015. Its goal is to limit global warming to well below 2\u00b0C, preferably 1.5\u00b0C, above pre-industrial levels. Countries submit nationally determined contributions (NDCs) outlining emission reduction targets."}
+{"input": "how to enhance customer engagement /only:lex", "output": "lex: customer engagement strategies retention\nlex: increase customer interaction loyalty\nlex: customer engagement marketing personalization"}
+{"input": "how to enhance customer engagement /only:vec", "output": "vec: what strategies can businesses use to improve customer engagement and loyalty\nvec: how can companies create more meaningful interactions with their customers"}
+{"input": "how to enhance customer engagement /only:hyde", "output": "hyde: Personalize communications using customer data and segmentation. Implement loyalty programs, respond promptly on social media, send targeted email campaigns, and gather feedback through surveys. Omnichannel engagement ensures consistent experience across touchpoints."}
+{"input": "how to encourage children to read? /only:lex", "output": "lex: encourage children reading habits\nlex: kids reading motivation tips\nlex: children literacy books engagement"}
+{"input": "how to encourage children to read? /only:vec", "output": "vec: what strategies help encourage children to develop a love of reading\nvec: how can parents motivate reluctant children to read more books"}
+{"input": "how to encourage children to read? /only:hyde", "output": "hyde: Read aloud to children daily from an early age. Let them choose their own books based on interests. Create a cozy reading nook, visit the library regularly, and set a family reading time. Avoid using reading as punishment; make it enjoyable."}
+{"input": "what is base jumping? /only:lex", "output": "lex: base jumping extreme sport parachute\nlex: BASE jump fixed object skydiving\nlex: base jumping wingsuit cliff"}
+{"input": "what is base jumping? /only:vec", "output": "vec: what is BASE jumping and how does it differ from skydiving\nvec: what does BASE stand for and what are the risks of base jumping"}
+{"input": "what is base jumping? /only:hyde", "output": "hyde: BASE jumping involves parachuting from fixed objects: Buildings, Antennas, Spans (bridges), and Earth (cliffs). Unlike skydiving from aircraft, BASE jumps occur at much lower altitudes, giving jumpers only seconds to deploy their parachute."}
+{"input": "how to clean car engine bay? /only:lex", "output": "lex: clean car engine bay degreaser\nlex: engine bay detailing wash\nlex: engine compartment cleaning steps"}
+{"input": "how to clean car engine bay? /only:vec", "output": "vec: what is the safest way to clean and degrease a car engine bay\nvec: step by step process to clean under the hood of a car"}
+{"input": "how to clean car engine bay? /only:hyde", "output": "hyde: Cover sensitive electrical components with plastic bags. Apply engine degreaser to the entire bay, let it sit 5-10 minutes, then agitate with a brush. Rinse with low-pressure water, avoiding direct spray on the alternator, fuse box, and air intake."}
+{"input": "how to manage sibling rivalry? /only:lex", "output": "lex: sibling rivalry management parenting\nlex: brothers sisters fighting conflict\nlex: sibling jealousy fairness strategies"}
+{"input": "how to manage sibling rivalry? /only:vec", "output": "vec: how can parents effectively manage fighting and rivalry between siblings\nvec: what are proven strategies to reduce sibling conflict and jealousy"}
+{"input": "how to manage sibling rivalry? /only:hyde", "output": "hyde: Avoid comparing siblings to each other. Give each child individual attention and acknowledge their unique strengths. Teach conflict resolution skills rather than always intervening. Set clear family rules about respectful behavior and let children solve minor disputes themselves."}
+{"input": "how to build a raised garden bed? /only:lex", "output": "lex: build raised garden bed DIY\nlex: raised bed construction lumber soil\nlex: raised garden bed plans dimensions"}
+{"input": "how to build a raised garden bed? /only:vec", "output": "vec: how do I build a raised garden bed from wood step by step\nvec: what materials and dimensions work best for a DIY raised garden bed"}
+{"input": "how to build a raised garden bed? /only:hyde", "output": "hyde: Cut four boards of untreated cedar or redwood to size: two at 4 feet and two at 8 feet for a standard 4x8 bed. Screw corners together with deck screws. Place on level ground, line the bottom with cardboard, and fill with a mix of topsoil, compost, and peat moss."}
+{"input": "what is the g7 /only:lex", "output": "lex: G7 group of seven nations\nlex: G7 summit member countries\nlex: G7 economic political alliance"}
+{"input": "what is the g7 /only:vec", "output": "vec: what is the G7 and which countries are members of this international group\nvec: what role does the Group of Seven play in global economic and political governance"}
+{"input": "what is the g7 /only:hyde", "output": "hyde: The G7 (Group of Seven) is an intergovernmental forum of seven major advanced economies: Canada, France, Germany, Italy, Japan, the United Kingdom, and the United States. The EU also participates. Members meet annually to discuss global economic policy, security, and trade."}
+{"input": "what is the role of choice in ethics? /only:lex", "output": "lex: choice ethics moral philosophy\nlex: free will moral responsibility\nlex: ethical decision-making autonomy"}
+{"input": "what is the role of choice in ethics? /only:vec", "output": "vec: what role does personal choice play in moral philosophy and ethical responsibility\nvec: how do ethicists view free will and autonomous choice in determining moral accountability"}
+{"input": "what is the role of choice in ethics? /only:hyde", "output": "hyde: Choice is central to ethics because moral responsibility presupposes the ability to choose freely. Aristotle argued that virtuous action requires deliberate choice (prohairesis). Without genuine alternatives, praise and blame lose their foundation."}
+{"input": "home fix /only:lex", "output": "lex: home repair DIY fix\nlex: house maintenance common repairs\nlex: home improvement handyman tasks"}
+{"input": "home fix /only:vec", "output": "vec: how to do common home repairs and fixes yourself\nvec: what are typical household problems and how to fix them without a professional"}
+{"input": "home fix /only:hyde", "output": "hyde: Common DIY home repairs include fixing leaky faucets, patching drywall holes, unclogging drains, replacing light switches, re-caulking bathrooms, and fixing squeaky doors. Most require only basic tools: screwdriver, pliers, wrench, and putty knife."}
+{"input": "what should i wear hiking? /only:lex", "output": "lex: hiking clothing layers gear\nlex: hiking outfit shoes weather\nlex: what to wear hiking trail"}
+{"input": "what should i wear hiking? /only:vec", "output": "vec: what is the best clothing to wear for a day hike in different weather conditions\nvec: how should I layer my clothes for hiking to stay comfortable"}
+{"input": "what should i wear hiking? /only:hyde", "output": "hyde: Dress in moisture-wicking layers: a synthetic or merino wool base layer, an insulating mid layer like fleece, and a waterproof shell. Wear sturdy hiking boots or trail shoes with wool socks. Avoid cotton, which retains moisture and causes chafing."}
+{"input": "what are the main tenets of jainism? /only:lex", "output": "lex: Jainism main tenets principles\nlex: Jain beliefs ahimsa non-violence\nlex: Jainism five vows anekantavada"}
+{"input": "what are the main tenets of jainism? /only:vec", "output": "vec: what are the core beliefs and principles of the Jain religion\nvec: what are the five main vows and philosophical tenets of Jainism"}
+{"input": "what are the main tenets of jainism? /only:hyde", "output": "hyde: Jainism centers on three jewels: right faith, right knowledge, and right conduct. Its five vows are ahimsa (non-violence), satya (truth), asteya (non-stealing), brahmacharya (chastity), and aparigraha (non-attachment). Jains believe in karma and the soul's liberation through self-discipline."}
+{"input": "what is universal healthcare /only:lex", "output": "lex: universal healthcare single payer system\nlex: universal health coverage public insurance\nlex: universal healthcare countries policy"}
+{"input": "what is universal healthcare /only:vec", "output": "vec: what is universal healthcare and how do different countries implement it\nvec: how does a universal healthcare system provide coverage to all citizens"}
+{"input": "what is universal healthcare /only:hyde", "output": "hyde: Universal healthcare ensures all residents have access to medical services without financial hardship. Models vary: single-payer systems (Canada), national health services (UK's NHS), and mandatory insurance systems (Germany). Funding comes through taxes or mandatory premiums."}
+{"input": "where to buy rare plant seeds? /only:lex", "output": "lex: buy rare plant seeds online\nlex: rare exotic seed suppliers shop\nlex: unusual heirloom seeds catalog"}
+{"input": "where to buy rare plant seeds? /only:vec", "output": "vec: where can I purchase rare and exotic plant seeds online\nvec: what are reputable suppliers for hard-to-find and unusual plant seeds"}
+{"input": "where to buy rare plant seeds? /only:hyde", "output": "hyde: Specialty seed suppliers for rare plants include Baker Creek Heirloom Seeds, Chiltern Seeds, Plant World Seeds, and Rare Seeds. Online marketplaces like Etsy also have independent growers selling unusual varieties. Check import regulations for international orders."}
+{"input": "how to kayak for the first time /only:lex", "output": "lex: beginner kayaking first time tips\nlex: kayak basics paddling technique\nlex: learn kayaking beginner guide"}
+{"input": "how to kayak for the first time /only:vec", "output": "vec: what should a beginner know before going kayaking for the first time\nvec: how do I paddle and balance a kayak as a first-time kayaker"}
+{"input": "how to kayak for the first time /only:hyde", "output": "hyde: For your first kayak outing, choose calm, flat water like a lake or slow river. Adjust the foot pegs so your knees are slightly bent. Hold the paddle with hands shoulder-width apart, knuckles aligned with the blade edge. Use torso rotation, not just arms, for each stroke."}
+{"input": "what are the major teachings in rumi's poetry? /only:lex", "output": "lex: Rumi poetry teachings themes\nlex: Rumi Sufi mysticism divine love\nlex: Rumi Masnavi spiritual wisdom"}
+{"input": "what are the major teachings in rumi's poetry? /only:vec", "output": "vec: what are the central spiritual and philosophical themes in Rumi's poems\nvec: what does Rumi teach about love, the soul, and union with the divine"}
+{"input": "what are the major teachings in rumi's poetry? /only:hyde", "output": "hyde: Rumi's poetry centers on divine love as the path to spiritual union with God. His Masnavi explores themes of longing, surrender, and the dissolution of the ego. He uses metaphors of wine, the beloved, and the reed flute to express the soul's yearning for its source."}
+{"input": "what is the purpose of a pilgrimage /only:lex", "output": "lex: pilgrimage purpose religious spiritual\nlex: pilgrimage meaning journey sacred site"}
+{"input": "what is the purpose of a pilgrimage /only:vec", "output": "vec: what is the spiritual purpose of making a pilgrimage to a sacred site\nvec: why do people of different religions undertake pilgrimages"}
+{"input": "what is the purpose of a pilgrimage /only:hyde", "output": "hyde: A pilgrimage is a sacred journey to a holy site undertaken for spiritual renewal, penance, or devotion. In Islam, Hajj to Mecca is obligatory. Christians walk the Camino de Santiago. Hindus visit Varanasi. The journey itself is seen as transformative, not just the destination."}
+{"input": "craigslist ads /only:lex", "output": "lex: Craigslist ads posting classified\nlex: Craigslist listings buy sell\nlex: Craigslist marketplace local ads"}
+{"input": "craigslist ads /only:vec", "output": "vec: how to post and browse classified ads on Craigslist\nvec: how does Craigslist work for buying, selling, and listing items locally"}
+{"input": "craigslist ads /only:hyde", "output": "hyde: To post a Craigslist ad, go to craigslist.org, select your city, and click \"create a posting.\" Choose a category (for sale, housing, jobs, services), write a clear title and description, add photos, and set your price. Most postings are free for individuals."}
+{"input": "what is a primary election /only:lex", "output": "lex: primary election definition process\nlex: primary election presidential nomination\nlex: open closed primary voting"}
+{"input": "what is a primary election /only:vec", "output": "vec: what is a primary election and how does it determine party nominees\nvec: how do primary elections work in the United States political system"}
+{"input": "what is a primary election /only:hyde", "output": "hyde: A primary election is a vote held by a political party to choose its candidates for the general election. In a closed primary, only registered party members can vote. In an open primary, any registered voter may participate regardless of party affiliation."}
+{"input": "what was the role of the catholic church in the middle ages? /only:lex", "output": "lex: Catholic Church Middle Ages role\nlex: medieval church political power papacy\nlex: Catholic Church feudalism education medieval"}
+{"input": "what was the role of the catholic church in the middle ages? /only:vec", "output": "vec: what political, social, and cultural role did the Catholic Church play during the Middle Ages\nvec: how did the Catholic Church influence governance, education, and daily life in medieval Europe"}
+{"input": "what was the role of the catholic church in the middle ages? /only:hyde", "output": "hyde: The Catholic Church was the dominant institution in medieval Europe. It controlled vast lands, collected tithes, and wielded political power through the papacy. The Church ran schools and universities, preserved classical texts in monasteries, and regulated moral life through canon law and sacraments."}
+{"input": "what to pack in a hospital bag for labor? /only:lex", "output": "lex: hospital bag labor delivery packing list\nlex: what to bring hospital birth bag\nlex: labor bag essentials mother baby"}
+{"input": "what to pack in a hospital bag for labor? /only:vec", "output": "vec: what items should I pack in my hospital bag before going into labor\nvec: what is a complete packing checklist for the hospital for giving birth"}
+{"input": "what to pack in a hospital bag for labor? /only:hyde", "output": "hyde: Hospital bag essentials for labor: ID and insurance card, birth plan, comfortable robe or gown, slippers, toiletries, phone charger, going-home outfit for you and baby, car seat, nursing bra, newborn diapers, snacks, and a pillow from home."}
+{"input": "how international trade agreements affect local economies /only:lex", "output": "lex: international trade agreements local economy impact\nlex: trade deal tariff local jobs wages\nlex: free trade agreement economic effects"}
+{"input": "how international trade agreements affect local economies /only:vec", "output": "vec: how do international trade agreements impact jobs and economies at the local level\nvec: what are the positive and negative effects of free trade agreements on local industries"}
+{"input": "how international trade agreements affect local economies /only:hyde", "output": "hyde: Trade agreements lower tariffs and open markets, which can reduce consumer prices and expand exports. However, local industries that cannot compete with cheaper imports may shrink, leading to job losses in manufacturing regions. The net effect depends on the economy's structure and adjustment policies."}
+{"input": "what is the ring of fire /only:lex", "output": "lex: Ring of Fire Pacific Ocean volcanoes\nlex: Pacific Ring of Fire earthquakes tectonic\nlex: ring of fire map plate boundaries"}
+{"input": "what is the ring of fire /only:vec", "output": "vec: what is the Pacific Ring of Fire and why does it have so many earthquakes and volcanoes\nvec: which tectonic plates form the Ring of Fire around the Pacific Ocean"}
+{"input": "what is the ring of fire /only:hyde", "output": "hyde: The Ring of Fire is a 40,000 km horseshoe-shaped zone around the Pacific Ocean where about 75% of the world's volcanoes and 90% of earthquakes occur. It follows boundaries of tectonic plates including the Pacific, Nazca, and Philippine Sea plates."}
+{"input": "how does relativism differ from absolutism /only:lex", "output": "lex: moral relativism absolutism difference\nlex: ethical relativism vs moral absolutism\nlex: relativism absolutism philosophy comparison"}
+{"input": "how does relativism differ from absolutism /only:vec", "output": "vec: what is the philosophical difference between moral relativism and moral absolutism\nvec: how do relativists and absolutists disagree about the nature of moral truth"}
+{"input": "how does relativism differ from absolutism /only:hyde", "output": "hyde: Moral absolutism holds that certain actions are universally right or wrong regardless of context or culture. Moral relativism argues that moral judgments are not universal but depend on cultural, social, or personal frameworks. Absolutists point to human rights; relativists emphasize cultural diversity."}
+{"input": "how to harvest rainwater for gardening? /only:lex", "output": "lex: rainwater harvesting garden setup\nlex: rain barrel collection irrigation\nlex: harvest rainwater system DIY"}
+{"input": "how to harvest rainwater for gardening? /only:vec", "output": "vec: how can I set up a rainwater collection system to water my garden\nvec: what equipment do I need to harvest rainwater for garden irrigation"}
+{"input": "how to harvest rainwater for gardening? /only:hyde", "output": "hyde: Install a rain barrel or cistern under a downspout to collect roof runoff. Use a first-flush diverter to discard initial dirty water. A screen keeps debris and mosquitoes out. Connect a spigot or hose at the bottom for gravity-fed garden irrigation. A 1,000 sq ft roof yields ~600 gallons per inch of rain."}
+{"input": "what is the significance of the sacred tree in various faiths? /only:lex", "output": "lex: sacred tree symbolism religion\nlex: tree of life world tree spiritual traditions\nlex: sacred trees Buddhism Hinduism Christianity Norse"}
+{"input": "what is the significance of the sacred tree in various faiths? /only:vec", "output": "vec: what role do sacred trees play in the religious symbolism of different faiths\nvec: how are trees like the Bodhi tree and Yggdrasil significant in world religions"}
+{"input": "what is the significance of the sacred tree in various faiths? /only:hyde", "output": "hyde: Sacred trees appear across religions: the Bodhi tree where Buddha attained enlightenment, the Tree of Life in Genesis, Yggdrasil in Norse mythology connecting the nine worlds, and the banyan in Hinduism symbolizing eternal life. Trees represent growth, connection between earth and heaven, and renewal."}
+{"input": "code dep /only:lex", "output": "lex: code dependency management\nlex: software dependency package manager\nlex: dependency resolution version conflicts"}
+{"input": "code dep /only:vec", "output": "vec: how to manage code dependencies and packages in a software project\nvec: what tools help resolve and manage dependencies in programming"}
+{"input": "code dep /only:hyde", "output": "hyde: Dependency management tools track and install external libraries your code relies on. Package managers like npm (JavaScript), pip (Python), and cargo (Rust) resolve version conflicts, maintain lock files, and ensure reproducible builds across environments."}
+{"input": "what is the concept of rebirth in buddhism? /only:lex", "output": "lex: rebirth Buddhism reincarnation concept\nlex: Buddhist rebirth samsara karma cycle\nlex: rebirth reincarnation Buddhism difference"}
+{"input": "what is the concept of rebirth in buddhism? /only:vec", "output": "vec: how does Buddhism explain the concept of rebirth and the cycle of samsara\nvec: what is the difference between rebirth in Buddhism and reincarnation in Hinduism"}
+{"input": "what is the concept of rebirth in buddhism? /only:hyde", "output": "hyde: In Buddhism, rebirth is not the transmigration of a fixed soul but the continuation of a stream of consciousness shaped by karma. Beings cycle through samsara\u2014the realms of existence\u2014until achieving nirvana. Unlike Hindu reincarnation, Buddhism denies a permanent self (anatta) that transfers between lives."}
+{"input": "cultural iconography /only:lex", "output": "lex: cultural iconography symbols art\nlex: iconographic symbols meaning culture\nlex: visual symbolism iconography history"}
+{"input": "cultural iconography /only:vec", "output": "vec: what is cultural iconography and how are visual symbols used to convey meaning across cultures\nvec: how do art historians study and interpret iconographic symbols in different cultural traditions"}
+{"input": "cultural iconography /only:hyde", "output": "hyde: Cultural iconography studies the identification and interpretation of visual symbols in art and media. Icons like the Christian cross, Buddhist lotus, or American bald eagle carry layered meanings shaped by history, religion, and politics. Erwin Panofsky formalized iconographic analysis in three levels."}
+{"input": "current trends in ai research /only:lex", "output": "lex: AI research trends 2025 2026\nlex: artificial intelligence latest developments\nlex: machine learning LLM multimodal research"}
+{"input": "current trends in ai research /only:vec", "output": "vec: what are the most important current trends and breakthroughs in AI research in 2025-2026\nvec: what directions is artificial intelligence research heading in areas like large language models and multimodal AI"}
+{"input": "current trends in ai research /only:hyde", "output": "hyde: Key AI research trends in 2025-2026 include scaling reasoning models, multimodal foundation models combining text, image, and video, AI agents that use tools autonomously, efficient fine-tuning methods like LoRA, and alignment research on safety and interpretability."}
+{"input": "how artificial intelligence is used in healthcare /only:lex", "output": "lex: AI healthcare applications medical\nlex: artificial intelligence diagnosis treatment\nlex: machine learning medical imaging drug discovery"}
+{"input": "how artificial intelligence is used in healthcare /only:vec", "output": "vec: how is artificial intelligence being applied in healthcare for diagnosis and treatment\nvec: what are the main uses of AI and machine learning in the medical field"}
+{"input": "how artificial intelligence is used in healthcare /only:hyde", "output": "hyde: AI in healthcare is used for medical image analysis (detecting tumors in radiology scans), drug discovery (predicting molecular interactions), clinical decision support, electronic health record analysis, robotic surgery assistance, and predicting patient outcomes in intensive care."}
+{"input": "what is gothic literature? /only:lex", "output": "lex: gothic literature definition genre\nlex: gothic fiction horror romance 18th century\nlex: gothic novel characteristics examples"}
+{"input": "what is gothic literature? /only:vec", "output": "vec: what defines gothic literature as a genre and what are its key characteristics\nvec: what are the origins and major works of gothic fiction"}
+{"input": "what is gothic literature? /only:hyde", "output": "hyde: Gothic literature is a genre that combines horror, romance, and mystery, originating with Horace Walpole's The Castle of Otranto (1764). Characteristics include gloomy settings (castles, ruins), supernatural elements, heightened emotion, and themes of decay, madness, and the sublime."}
+{"input": "how to foster inclusivity in interactions? /only:lex", "output": "lex: foster inclusivity interactions communication\nlex: inclusive language behavior workplace\nlex: diversity inclusion interpersonal skills"}
+{"input": "how to foster inclusivity in interactions? /only:vec", "output": "vec: how can I be more inclusive in my daily interactions with diverse people\nvec: what communication strategies foster inclusivity and make everyone feel welcome"}
+{"input": "how to foster inclusivity in interactions? /only:hyde", "output": "hyde: Use people's correct names and pronouns. Practice active listening without interrupting. Avoid assumptions based on appearance. Invite quieter voices into conversations. Be aware of cultural differences in communication styles. Acknowledge and address microaggressions when they occur."}
+{"input": "how to prune hydrangeas? /only:lex", "output": "lex: prune hydrangeas when how\nlex: hydrangea pruning guide timing\nlex: cut back hydrangea old new wood"}
+{"input": "how to prune hydrangeas? /only:vec", "output": "vec: when and how should I prune different types of hydrangeas\nvec: what is the correct pruning technique for hydrangeas that bloom on old versus new wood"}
+{"input": "how to prune hydrangeas? /only:hyde", "output": "hyde: Pruning depends on the hydrangea type. Bigleaf (H. macrophylla) and oakleaf hydrangeas bloom on old wood\u2014prune just after flowering in summer. Panicle (H. paniculata) and smooth (H. arborescens) bloom on new wood\u2014prune in late winter. Remove dead stems to the base and cut back to a pair of healthy buds."}
+{"input": "how do philosophers address moral ambiguity /only:lex", "output": "lex: moral ambiguity philosophy ethics\nlex: ethical dilemma moral uncertainty philosophers\nlex: moral gray area philosophical perspectives"}
+{"input": "how do philosophers address moral ambiguity /only:vec", "output": "vec: how do different philosophical traditions deal with situations of moral ambiguity\nvec: what do philosophers say about making ethical decisions when right and wrong are unclear"}
+{"input": "how do philosophers address moral ambiguity /only:hyde", "output": "hyde: Philosophers address moral ambiguity through competing frameworks. Utilitarians weigh outcomes, deontologists look to duties and rules, and virtue ethicists ask what a person of good character would do. Moral particularists argue each situation is unique and cannot be reduced to universal principles."}
+{"input": "what is a bildungsroman /only:lex", "output": "lex: bildungsroman definition coming-of-age novel\nlex: bildungsroman literary genre examples\nlex: bildungsroman character development growth"}
+{"input": "what is a bildungsroman /only:vec", "output": "vec: what is a bildungsroman and what are the defining features of this literary genre\nvec: what are famous examples of bildungsroman or coming-of-age novels in literature"}
+{"input": "what is a bildungsroman /only:hyde", "output": "hyde: A bildungsroman is a novel that follows the psychological and moral growth of a protagonist from youth to adulthood. The genre originated in German literature with Goethe's Wilhelm Meister's Apprenticeship. Classic examples include Jane Eyre, David Copperfield, and The Catcher in the Rye."}
+{"input": "thai cooking classes online /only:lex", "output": "lex: Thai cooking class online course\nlex: learn Thai cuisine virtual cooking\nlex: Thai food cooking lesson video"}
+{"input": "thai cooking classes online /only:vec", "output": "vec: where can I take online Thai cooking classes to learn authentic Thai cuisine\nvec: what are the best virtual courses for learning to cook Thai food at home"}
+{"input": "thai cooking classes online /only:hyde", "output": "hyde: Online Thai cooking classes teach dishes like pad thai, green curry, tom yum soup, and mango sticky rice. Platforms include Udemy, Skillshare, and dedicated sites like Hot Thai Kitchen. Live Zoom classes with Thai chefs offer real-time guidance on techniques and ingredient sourcing."}
+{"input": "how automation affects employment /only:lex", "output": "lex: automation employment impact jobs\nlex: automation job displacement workforce\nlex: robots AI replacing workers labor market"}
+{"input": "how automation affects employment /only:vec", "output": "vec: how does increasing automation and robotics affect employment and job availability\nvec: what impact does workplace automation have on different types of jobs and wages"}
+{"input": "how automation affects employment /only:hyde", "output": "hyde: Automation displaces routine manual and cognitive tasks but creates new roles in technology maintenance, programming, and oversight. Studies estimate 14% of jobs are highly automatable. Workers in manufacturing, data entry, and transportation face the highest displacement risk, while creative and interpersonal roles are less affected."}
+{"input": "what is a moral compass /only:lex", "output": "lex: moral compass definition ethics\nlex: moral compass inner sense right wrong\nlex: personal values moral guidance"}
+{"input": "what is a moral compass /only:vec", "output": "vec: what does it mean to have a moral compass and how does it guide ethical behavior\nvec: how do people develop an internal sense of right and wrong known as a moral compass"}
+{"input": "what is a moral compass /only:hyde", "output": "hyde: A moral compass is a person's internal sense of right and wrong that guides their decisions and behavior. It is shaped by upbringing, culture, religious beliefs, education, and personal experience. It acts as an ethical guide when facing difficult choices without clear external rules."}
+{"input": "how to set financial goals /only:lex", "output": "lex: set financial goals planning budget\nlex: financial goal setting SMART savings\nlex: personal finance goals short long term"}
+{"input": "how to set financial goals /only:vec", "output": "vec: how do I set effective short-term and long-term financial goals\nvec: what is a step-by-step process for creating and achieving personal financial goals"}
+{"input": "how to set financial goals /only:hyde", "output": "hyde: Set SMART financial goals: Specific (save $10,000), Measurable (track monthly), Achievable (based on income), Relevant (emergency fund), Time-bound (within 12 months). Categorize into short-term (under 1 year), medium-term (1-5 years), and long-term (5+ years) goals. Automate savings to stay on track."}
+{"input": "how to improve car gas mileage? /only:lex", "output": "lex: improve car gas mileage fuel economy\nlex: better fuel efficiency driving tips\nlex: increase MPG car maintenance"}
+{"input": "how to improve car gas mileage? /only:vec", "output": "vec: what are the best ways to improve a car's gas mileage and fuel efficiency\nvec: what driving habits and car maintenance steps help reduce fuel consumption"}
+{"input": "how to improve car gas mileage? /only:hyde", "output": "hyde: Keep tires inflated to the recommended PSI\u2014underinflation increases rolling resistance. Drive at steady speeds using cruise control, avoid rapid acceleration, and reduce idling. Remove excess weight and roof racks. Replace air filters and spark plugs on schedule. Properly inflated tires alone can improve MPG by 3%."}
+{"input": "how to embrace change positively? /only:lex", "output": "lex: embrace change positive mindset\nlex: adapting change personal growth resilience\nlex: coping with change acceptance"}
+{"input": "how to embrace change positively? /only:vec", "output": "vec: how can I learn to embrace change in life with a positive attitude\nvec: what psychological strategies help people adapt to change instead of resisting it"}
+{"input": "how to embrace change positively? /only:hyde", "output": "hyde: Reframe change as an opportunity for growth rather than a threat. Practice mindfulness to stay present instead of worrying about the unknown. Set small, manageable goals during transitions. Build a support network and reflect on past changes you navigated successfully to build confidence."}
+{"input": "how to develop patience? /only:lex", "output": "lex: develop patience self-control techniques\nlex: building patience mindfulness practice\nlex: patience skills emotional regulation"}
+{"input": "how to develop patience? /only:vec", "output": "vec: what techniques can help a person develop more patience in daily life\nvec: how do you train yourself to be more patient and less reactive"}
+{"input": "how to develop patience? /only:hyde", "output": "hyde: Practice the pause: when you feel impatient, take three deep breaths before responding. Mindfulness meditation trains present-moment awareness and reduces reactivity. Reframe waiting as an opportunity. Set realistic expectations and practice delaying gratification with small exercises."}
+{"input": "how to design surveys for scientific research /only:lex", "output": "lex: design survey scientific research methodology\nlex: research questionnaire design validity\nlex: survey instrument Likert scale sampling"}
+{"input": "how to design surveys for scientific research /only:vec", "output": "vec: how should researchers design valid and reliable surveys for scientific studies\nvec: what are the principles of good questionnaire design in scientific research"}
+{"input": "how to design surveys for scientific research /only:hyde", "output": "hyde: Design surveys by first defining clear research questions. Use validated scales where available. Write neutral, unambiguous items avoiding leading questions. Include a mix of Likert-scale and open-ended questions. Pilot test with a small sample, assess reliability (Cronbach's alpha), and use random sampling for generalizability."}
+{"input": "how to get rid of garden pests naturally? /only:lex", "output": "lex: natural garden pest control organic\nlex: garden pests organic remedies\nlex: beneficial insects companion planting pest"}
+{"input": "how to get rid of garden pests naturally? /only:vec", "output": "vec: what are natural and organic methods to get rid of garden pests without chemicals\nvec: how can I control insects and pests in my garden using companion planting and beneficial insects"}
+{"input": "how to get rid of garden pests naturally? /only:hyde", "output": "hyde: Introduce beneficial insects like ladybugs and lacewings to eat aphids. Plant marigolds and basil as companion plants to repel pests. Spray diluted neem oil or insecticidal soap on affected leaves. Use diatomaceous earth around plant bases. Hand-pick slugs and caterpillars in the evening."}
+{"input": "how to build a green roof /only:lex", "output": "lex: green roof construction installation\nlex: build living roof layers materials\nlex: green roof waterproof membrane substrate plants"}
+{"input": "how to build a green roof /only:vec", "output": "vec: how do you build a green roof on a residential or commercial building\nvec: what are the structural layers and materials needed for a green roof installation"}
+{"input": "how to build a green roof /only:hyde", "output": "hyde: A green roof consists of layers: waterproof membrane, root barrier, drainage layer (gravel or drainage mat), filter fabric, lightweight growing substrate (4-6 inches for extensive, 6-24 for intensive), and drought-tolerant plants like sedums. The roof must support 15-30 lbs/sqft when saturated."}
+{"input": "what are the sacred texts of judaism /only:lex", "output": "lex: sacred texts Judaism Torah Talmud\nlex: Jewish scripture Hebrew Bible Tanakh\nlex: Judaism holy books Mishnah"}
+{"input": "what are the sacred texts of judaism /only:vec", "output": "vec: what are the main sacred texts and scriptures in the Jewish religious tradition\nvec: what is the Torah and what other texts are considered holy in Judaism"}
+{"input": "what are the sacred texts of judaism /only:hyde", "output": "hyde: The primary sacred text of Judaism is the Torah (Five Books of Moses), part of the Tanakh (Hebrew Bible), which also includes Nevi'im (Prophets) and Ketuvim (Writings). The Talmud, comprising the Mishnah and Gemara, contains rabbinic commentary and Jewish law (halakha)."}
+{"input": "how technology has impacted communication /only:lex", "output": "lex: technology impact communication changes\nlex: digital communication evolution internet social media\nlex: technology transformed how people communicate"}
+{"input": "how technology has impacted communication /only:vec", "output": "vec: how has technology changed the way people communicate over the last few decades\nvec: what are the major effects of digital technology and the internet on human communication"}
+{"input": "how technology has impacted communication /only:hyde", "output": "hyde: Technology has transformed communication from letters and landlines to instant messaging, video calls, and social media. Email replaced postal mail for business. Smartphones made communication continuous. Social media platforms enabled global, public conversations but also raised concerns about misinformation and reduced face-to-face interaction."}
+{"input": "what are the voting rights /only:lex", "output": "lex: voting rights law history\nlex: Voting Rights Act suffrage amendments\nlex: voter rights eligibility protection"}
+{"input": "what are the voting rights /only:vec", "output": "vec: what are voting rights in the United States and how have they evolved over time\nvec: what laws protect citizens' right to vote and prevent voter discrimination"}
+{"input": "what are the voting rights /only:hyde", "output": "hyde: Voting rights in the US expanded through constitutional amendments: the 15th (race, 1870), 19th (women, 1920), and 26th (age 18, 1971). The Voting Rights Act of 1965 prohibited racial discrimination in voting, including literacy tests and poll taxes, and required federal oversight of elections in certain jurisdictions."}
+{"input": "wedding photography package /only:lex", "output": "lex: wedding photography package pricing\nlex: wedding photographer booking services\nlex: wedding photo package hours albums"}
+{"input": "wedding photography package /only:vec", "output": "vec: what is typically included in a wedding photography package and how much does it cost\nvec: how to choose the right wedding photographer and package for your budget"}
+{"input": "wedding photography package /only:hyde", "output": "hyde: Our wedding photography packages start at $2,500 for 6 hours of coverage with one photographer, 300+ edited digital images, and an online gallery. Premium packages include a second shooter, engagement session, 10x10 album, and 8-10 hours of coverage for $4,500."}
+{"input": "how to address political division in communities /only:lex", "output": "lex: political division community healing\nlex: political polarization bridging divides dialogue\nlex: community political disagreement civil discourse"}
+{"input": "how to address political division in communities /only:vec", "output": "vec: how can communities address political divisions and find common ground\nvec: what strategies help reduce political polarization and promote civil dialogue at the local level"}
+{"input": "how to address political division in communities /only:hyde", "output": "hyde: Host structured community dialogues where participants follow ground rules: listen without interrupting, speak from personal experience, and seek understanding over agreement. Focus on shared local issues\u2014schools, infrastructure, safety\u2014rather than national partisan topics. Train facilitators in conflict mediation techniques."}
+{"input": "how to clean car headlights? /only:lex", "output": "lex: clean car headlights restore foggy\nlex: headlight restoration oxidation yellowing\nlex: headlight lens cleaning toothpaste sanding"}
+{"input": "how to clean car headlights? /only:vec", "output": "vec: how do I clean and restore foggy or yellowed car headlights\nvec: what is the best method for removing oxidation from plastic headlight lenses"}
+{"input": "how to clean car headlights? /only:hyde", "output": "hyde: Sand the headlight lens with wet sandpaper, starting at 800 grit and progressing to 2000 and 3000 grit. Polish with a rubbing compound or plastic polish. Apply a UV-resistant clear coat to prevent future yellowing. Toothpaste works as a mild abrasive for light haze."}
+{"input": "what defines gothic literature /only:lex", "output": "lex: gothic literature characteristics define\nlex: gothic fiction genre elements tropes\nlex: gothic novel dark romantic supernatural"}
+{"input": "what defines gothic literature /only:vec", "output": "vec: what are the defining features and conventions of gothic literature as a literary genre\nvec: what themes, settings, and narrative techniques characterize gothic fiction"}
+{"input": "what defines gothic literature /only:hyde", "output": "hyde: Gothic literature is defined by dark, atmospheric settings (ruined castles, monasteries), supernatural or uncanny events, psychological terror, and themes of isolation, decay, and transgression. Protagonists often face hidden secrets and tyrannical figures. Key works include Frankenstein, Dracula, and The Turn of the Screw."}
+{"input": "what is the importance of cultural heritage in photography? /only:lex", "output": "lex: cultural heritage photography documentation\nlex: photography preserving culture traditions\nlex: cultural heritage visual documentation ethnographic"}
+{"input": "what is the importance of cultural heritage in photography? /only:vec", "output": "vec: why is photography important for preserving and documenting cultural heritage\nvec: how has photography been used to record and protect cultural traditions and historical sites"}
+{"input": "what is the importance of cultural heritage in photography? /only:hyde", "output": "hyde: Photography plays a vital role in documenting cultural heritage\u2014recording endangered architectural sites, traditional crafts, ceremonies, and oral traditions before they disappear. Organizations like UNESCO use photographic archives to catalog World Heritage Sites and support restoration efforts."}
+{"input": "what is logical positivism /only:lex", "output": "lex: logical positivism Vienna Circle philosophy\nlex: logical positivism verification principle\nlex: logical empiricism analytic philosophy"}
+{"input": "what is logical positivism /only:vec", "output": "vec: what is logical positivism and what did the Vienna Circle philosophers argue\nvec: how does the verification principle define meaningful statements in logical positivism"}
+{"input": "what is logical positivism /only:hyde", "output": "hyde: Logical positivism, developed by the Vienna Circle in the 1920s-30s, holds that only statements verifiable through empirical observation or logical proof are meaningful. Metaphysical, ethical, and aesthetic claims are considered cognitively meaningless. Key figures include Carnap, Schlick, and Ayer."}
+{"input": "how to create a self-improvement plan? /only:lex", "output": "lex: self-improvement plan personal development\nlex: personal growth plan goals habits\nlex: self-improvement roadmap steps"}
+{"input": "how to create a self-improvement plan? /only:vec", "output": "vec: how do I create an effective self-improvement plan with clear goals and actionable steps\nvec: what steps should I follow to build a personal development plan that I can stick to"}
+{"input": "how to create a self-improvement plan? /only:hyde", "output": "hyde: Start by assessing your current strengths and weaknesses across life areas: health, career, relationships, finances, and personal growth. Set 2-3 SMART goals per area. Break each goal into weekly habits and milestones. Track progress in a journal and review monthly. Adjust the plan based on what's working."}
+{"input": "how robotics is transforming industries /only:lex", "output": "lex: robotics industry transformation manufacturing\nlex: industrial robots automation sectors\nlex: robotics applications logistics healthcare agriculture"}
+{"input": "how robotics is transforming industries /only:vec", "output": "vec: how is robotics transforming industries like manufacturing, healthcare, and logistics\nvec: what impact are advanced robots and automation having on different industrial sectors"}
+{"input": "how robotics is transforming industries /only:hyde", "output": "hyde: Robotics is transforming manufacturing with collaborative robots (cobots) that work alongside humans on assembly lines. In logistics, warehouse robots from companies like Amazon Robotics sort and move packages. Surgical robots like da Vinci enable minimally invasive procedures. Agricultural robots handle harvesting and weeding autonomously."}
+{"input": "famous photographers /only:lex", "output": "lex: famous photographers history notable\nlex: iconic photographers Ansel Adams Cartier-Bresson\nlex: renowned photographers influential works"}
+{"input": "famous photographers /only:vec", "output": "vec: who are the most famous and influential photographers in history\nvec: which photographers are known for iconic images that shaped the art of photography"}
+{"input": "famous photographers /only:hyde", "output": "hyde: Ansel Adams is known for dramatic black-and-white landscapes of the American West. Henri Cartier-Bresson pioneered street photography and the decisive moment. Dorothea Lange documented the Great Depression. Annie Leibovitz is renowned for celebrity portraiture. Sebasti\u00e3o Salgado captures powerful social documentary images."}
+{"input": "how does climate change affect global politics /only:lex", "output": "lex: climate change global politics geopolitics\nlex: climate change international relations policy\nlex: climate politics diplomacy conflict resources"}
+{"input": "how does climate change affect global politics /only:vec", "output": "vec: how does climate change influence international relations and global political dynamics\nvec: what are the geopolitical consequences of climate change including resource conflicts and migration"}
+{"input": "how does climate change affect global politics /only:hyde", "output": "hyde: Climate change reshapes global politics through resource competition (water, arable land), climate-driven migration, and diplomatic tensions over emissions targets. Arctic ice melt opens new shipping routes and territorial disputes. Island nations face existential threats, driving climate justice advocacy at the UN."}
+{"input": "how to organize a scientific conference /only:lex", "output": "lex: organize scientific conference planning\nlex: academic conference logistics program committee\nlex: scientific meeting venue call for papers"}
+{"input": "how to organize a scientific conference /only:vec", "output": "vec: what are the steps to organizing a successful scientific conference\nvec: how do you plan an academic conference including call for papers, venue, and scheduling"}
+{"input": "how to organize a scientific conference /only:hyde", "output": "hyde: Start 12-18 months ahead. Form a program committee, select a venue, set dates, and issue a call for papers. Use a submission system like EasyChair. Arrange keynote speakers, peer review, and session scheduling. Handle registration, catering, AV equipment, and proceedings publication."}
+{"input": "how to fix a leaking faucet /only:lex", "output": "lex: fix leaking faucet repair dripping\nlex: faucet leak washer cartridge replacement\nlex: kitchen bathroom faucet drip fix"}
+{"input": "how to fix a leaking faucet /only:vec", "output": "vec: how do I fix a dripping faucet in my kitchen or bathroom\nvec: what are the steps to repair a leaking faucet by replacing the washer or cartridge"}
+{"input": "how to fix a leaking faucet /only:hyde", "output": "hyde: Turn off the water supply valves under the sink. Remove the faucet handle by unscrewing the decorative cap and handle screw. Pull out the cartridge or stem and inspect the rubber washer or O-ring. Replace worn parts, reassemble, and turn the water back on. Most leaks are caused by a degraded washer."}
+{"input": "how social media influences behavior /only:lex", "output": "lex: social media influence behavior psychology\nlex: social media impact mental health habits\nlex: social media behavioral effects users"}
+{"input": "how social media influences behavior /only:vec", "output": "vec: how does social media use influence people's behavior, opinions, and mental health\nvec: what psychological effects does regular social media use have on user behavior"}
+{"input": "how social media influences behavior /only:hyde", "output": "hyde: Social media influences behavior through social comparison, echo chambers, and dopamine-driven feedback loops. Users curate idealized self-presentations, leading to anxiety and low self-esteem in viewers. Algorithmic content feeds reinforce existing beliefs and can radicalize opinions through filter bubbles."}
+{"input": "how does intertextuality work? /only:lex", "output": "lex: intertextuality literary theory texts\nlex: intertextuality allusion reference literature\nlex: Kristeva Barthes intertextuality meaning"}
+{"input": "how does intertextuality work? /only:vec", "output": "vec: how does intertextuality work as a concept in literary theory and criticism\nvec: what does intertextuality mean and how do texts reference and build on other texts"}
+{"input": "how does intertextuality work? /only:hyde", "output": "hyde: Intertextuality, coined by Julia Kristeva, describes how every text is shaped by and references other texts. Meaning is not contained in a single work but emerges from its relationships with prior texts through allusion, quotation, parody, and genre conventions. Roland Barthes argued the reader constructs meaning from these textual connections."}
+{"input": "how does stoicism inspire inner peace /only:lex", "output": "lex: Stoicism inner peace philosophy\nlex: Stoic philosophy tranquility Marcus Aurelius Epictetus\nlex: Stoic practices equanimity calm"}
+{"input": "how does stoicism inspire inner peace /only:vec", "output": "vec: how do Stoic philosophical principles help achieve inner peace and tranquility\nvec: what Stoic practices and teachings from Marcus Aurelius and Epictetus promote emotional calm"}
+{"input": "how does stoicism inspire inner peace /only:hyde", "output": "hyde: Stoicism teaches inner peace through the dichotomy of control: focus only on what you can influence (your thoughts and actions) and accept what you cannot (external events). Marcus Aurelius wrote in Meditations that disturbance comes not from things themselves but from our judgments about them."}
+{"input": "how to install a car stereo? /only:lex", "output": "lex: install car stereo aftermarket head unit\nlex: car stereo replacement wiring harness\nlex: car radio installation dash kit"}
+{"input": "how to install a car stereo? /only:vec", "output": "vec: how do I install an aftermarket car stereo and connect the wiring\nvec: what tools and adapters do I need to replace a factory car radio with a new head unit"}
+{"input": "how to install a car stereo? /only:hyde", "output": "hyde: Disconnect the battery. Remove the factory stereo using DIN removal tools or dash panel screws. Connect the aftermarket wiring harness adapter to the car's plug\u2014match wire colors (red=accessory, yellow=battery, black=ground). Mount the new head unit in a dash kit, slide it in, and reconnect the battery."}
+{"input": "art class /only:lex", "output": "lex: art class painting drawing course\nlex: art classes beginners local online\nlex: learn art lessons studio workshop"}
+{"input": "art class /only:vec", "output": "vec: where can I find art classes for beginners to learn painting or drawing\nvec: what types of art classes are available online and in person for adults"}
+{"input": "art class /only:hyde", "output": "hyde: Beginner art classes cover fundamentals like drawing, color theory, and composition. Options include community college courses, local studio workshops, and online platforms like Skillshare and Domestika. Classes range from watercolor and acrylic painting to charcoal drawing and digital illustration."}
+{"input": "what is the concept of ahimsa /only:lex", "output": "lex: ahimsa non-violence concept Hinduism Jainism Buddhism\nlex: ahimsa meaning Indian philosophy\nlex: ahimsa Gandhi non-harm"}
+{"input": "what is the concept of ahimsa /only:vec", "output": "vec: what is the concept of ahimsa and how is non-violence practiced in Indian religions\nvec: how did Gandhi apply the principle of ahimsa in his philosophy and political movement"}
+{"input": "what is the concept of ahimsa /only:hyde", "output": "hyde: Ahimsa means non-violence or non-harm and is a central principle in Hinduism, Jainism, and Buddhism. In Jainism, ahimsa extends to all living beings, including insects. Gandhi adopted ahimsa as the foundation of his political resistance, using nonviolent civil disobedience against British colonial rule."}
+{"input": "what was the byzantine empire /only:lex", "output": "lex: Byzantine Empire history Eastern Roman\nlex: Byzantine Empire Constantinople medieval\nlex: Byzantine Empire culture government fall 1453"}
+{"input": "what was the byzantine empire /only:vec", "output": "vec: what was the Byzantine Empire and how did it continue from the Roman Empire\nvec: what were the major achievements and eventual fall of the Byzantine Empire"}
+{"input": "what was the byzantine empire /only:hyde", "output": "hyde: The Byzantine Empire was the continuation of the Eastern Roman Empire, centered on Constantinople (modern Istanbul). It lasted from 330 CE to 1453 CE when it fell to the Ottoman Turks. It preserved Greek and Roman culture, developed Eastern Orthodox Christianity, and Justinian's legal code influenced European law."}
+{"input": "how to run for public office /only:lex", "output": "lex: run for public office campaign steps\nlex: running for election candidate requirements\nlex: political campaign filing candidacy"}
+{"input": "how to run for public office /only:vec", "output": "vec: what are the steps to running for public office in the United States\nvec: how do I start a political campaign and file as a candidate for local or state office"}
+{"input": "how to run for public office /only:hyde", "output": "hyde: To run for public office, first research eligibility requirements (age, residency, citizenship) for your target seat. File candidacy paperwork with the local election office by the deadline. Build a campaign team, set a budget, raise funds, and collect any required petition signatures. Develop a platform and begin voter outreach."}
+{"input": "how to contact local government officials /only:lex", "output": "lex: contact local government officials representatives\nlex: reach city council county officials email phone\nlex: local elected officials contact information"}
+{"input": "how to contact local government officials /only:vec", "output": "vec: how can I find contact information for and reach out to my local government representatives\nvec: what is the best way to contact city council members or county officials about local issues"}
+{"input": "how to contact local government officials /only:hyde", "output": "hyde: Find your local officials through your city or county website's \"elected officials\" page or use usa.gov's elected officials lookup tool. Contact methods include email, phone calls to their office, attending public town hall meetings, and submitting comments during city council sessions."}
+{"input": "what is the metaphysics of morality /only:lex", "output": "lex: metaphysics of morality moral philosophy\nlex: metaethics moral realism anti-realism\nlex: metaphysical foundations ethics moral facts"}
+{"input": "what is the metaphysics of morality /only:vec", "output": "vec: what is the metaphysics of morality and how does it address the nature of moral facts\nvec: how do metaethicists debate whether moral truths exist objectively or are constructed"}
+{"input": "what is the metaphysics of morality /only:hyde", "output": "hyde: The metaphysics of morality examines whether moral facts exist independently of human minds (moral realism) or are constructed by societies and individuals (anti-realism). Moral realists argue that \"murder is wrong\" is objectively true. Constructivists and expressivists argue moral claims express attitudes or social agreements, not metaphysical truths."}
+{"input": "latest research on climate change /only:lex", "output": "lex: latest climate change research 2025 2026\nlex: recent climate science findings studies\nlex: climate change new research global warming"}
+{"input": "latest research on climate change /only:vec", "output": "vec: what are the latest scientific findings and research on climate change in 2025-2026\nvec: what do recent climate studies say about global warming trends and projections"}
+{"input": "latest research on climate change /only:hyde", "output": "hyde: Recent research in 2025 shows global temperatures exceeded 1.5\u00b0C above pre-industrial levels for a full calendar year. Studies in Nature Climate Change report accelerating ice sheet loss in Greenland and West Antarctica. New modeling suggests tipping points for the Amazon rainforest may be closer than previously estimated."}
+{"input": "where to find eco-friendly furniture /only:lex", "output": "lex: eco-friendly furniture sustainable shop\nlex: sustainable furniture store green materials\nlex: eco furniture reclaimed wood organic"}
+{"input": "where to find eco-friendly furniture /only:vec", "output": "vec: where can I buy eco-friendly and sustainably made furniture\nvec: what brands and stores sell furniture made from sustainable or recycled materials"}
+{"input": "where to find eco-friendly furniture /only:hyde", "output": "hyde: Eco-friendly furniture brands include West Elm (FSC-certified wood), Medley (organic fabrics, solid wood), and Sabai (recycled and recyclable materials). Thrift stores and Habitat for Humanity ReStores sell secondhand furniture. Look for FSC certification, non-toxic finishes, and reclaimed or recycled materials."}
+{"input": "how to stay informed about politics /only:lex", "output": "lex: stay informed politics news sources\nlex: follow political news reliable media\nlex: political awareness current events tracking"}
+{"input": "how to stay informed about politics /only:vec", "output": "vec: how can I stay well-informed about politics and current political events\nvec: what are reliable sources and strategies for keeping up with political news"}
+{"input": "how to stay informed about politics /only:hyde", "output": "hyde: Read multiple news sources across the political spectrum: AP News and Reuters for wire reporting, then compare coverage from different outlets. Subscribe to newsletters like The Morning (NYT) or Axios AM. Follow legislative trackers like Congress.gov. Attend local government meetings and candidate forums."}
+{"input": "what is the tao te ching /only:lex", "output": "lex: Tao Te Ching Laozi Taoism text\nlex: Tao Te Ching Daodejing philosophy\nlex: Tao Te Ching teachings Dao virtue"}
+{"input": "what is the tao te ching /only:vec", "output": "vec: what is the Tao Te Ching and what does it teach about the Dao and living wisely\nvec: who wrote the Tao Te Ching and what are its main philosophical ideas"}
+{"input": "what is the tao te ching /only:hyde", "output": "hyde: The Tao Te Ching, attributed to Laozi (6th century BCE), is the foundational text of Taoism. Its 81 short chapters describe the Dao (the Way)\u2014an ineffable cosmic principle\u2014and De (virtue/power). It advocates wu wei (effortless action), simplicity, humility, and living in harmony with nature."}
+{"input": "what is the ethics of ai /only:lex", "output": "lex: AI ethics artificial intelligence ethical issues\nlex: ethics of AI bias fairness accountability\nlex: AI ethics alignment safety"}
+{"input": "what is the ethics of ai /only:vec", "output": "vec: what are the major ethical issues and concerns surrounding artificial intelligence\nvec: how do ethicists address bias, fairness, transparency, and safety in AI systems"}
+{"input": "what is the ethics of ai /only:hyde", "output": "hyde: AI ethics addresses bias in training data that leads to discriminatory outputs, lack of transparency in black-box models, accountability when AI causes harm, privacy concerns from mass data collection, and the alignment problem of ensuring AI systems act according to human values. Frameworks include fairness, accountability, and transparency (FAccT)."}
+{"input": "what is the difference between realism and idealism /only:lex", "output": "lex: realism idealism philosophy difference\nlex: realism vs idealism metaphysics epistemology\nlex: philosophical realism idealism comparison"}
+{"input": "what is the difference between realism and idealism /only:vec", "output": "vec: what is the philosophical difference between realism and idealism in metaphysics\nvec: how do realists and idealists disagree about the nature of reality and perception"}
+{"input": "what is the difference between realism and idealism /only:hyde", "output": "hyde: Realism holds that an external world exists independently of our minds and perceptions. Idealism argues that reality is fundamentally mental or mind-dependent. Plato's Forms represent a kind of realism about abstract objects, while Berkeley argued that to exist is to be perceived (esse est percipi)."}
+{"input": "how to prevent garden soil erosion? /only:lex", "output": "lex: prevent garden soil erosion methods\nlex: soil erosion control garden mulch ground cover\nlex: garden erosion prevention retaining wall"}
+{"input": "how to prevent garden soil erosion? /only:vec", "output": "vec: how can I prevent soil erosion in my garden or yard\nvec: what methods and ground covers help stop soil from washing away in a garden"}
+{"input": "how to prevent garden soil erosion? /only:hyde", "output": "hyde: Prevent soil erosion by mulching garden beds with 2-3 inches of wood chips or straw. Plant ground covers like creeping thyme or clover on slopes. Install retaining walls or terraces on steep grades. Use rain gardens to absorb runoff. Avoid leaving soil bare between seasons\u2014plant cover crops like rye or clover."}
+{"input": "how to write a scientific research paper /only:lex", "output": "lex: write scientific research paper structure\nlex: scientific paper writing IMRaD format\nlex: academic research paper methodology results discussion"}
+{"input": "how to write a scientific research paper /only:vec", "output": "vec: how do you write a scientific research paper following the standard academic format\nvec: what is the structure and process for writing a research paper for journal publication"}
+{"input": "how to write a scientific research paper /only:hyde", "output": "hyde: A scientific research paper follows the IMRaD structure: Introduction (background, hypothesis, objectives), Methods (detailed procedures for reproducibility), Results (data presented with figures and tables), and Discussion (interpretation, limitations, implications). Include an abstract, references in the journal's required citation style, and acknowledgments."}
+{"input": "how to diversify investment portfolio /only:lex", "output": "lex: diversify investment portfolio strategy\nlex: portfolio diversification asset allocation\nlex: investment diversification stocks bonds ETFs"}
+{"input": "how to diversify investment portfolio /only:vec", "output": "vec: how should I diversify my investment portfolio across different asset classes\nvec: what is a good strategy for spreading risk through portfolio diversification"}
+{"input": "how to diversify investment portfolio /only:hyde", "output": "hyde: Diversify across asset classes: stocks, bonds, real estate, and commodities. Within stocks, spread across sectors (tech, healthcare, energy) and geographies (US, international, emerging markets). Use index funds or ETFs for broad exposure. A common allocation is 60% stocks, 30% bonds, 10% alternatives, adjusted by age and risk tolerance."}
+{"input": "how to use social media for business /only:lex", "output": "lex: social media business marketing strategy\nlex: social media marketing business growth\nlex: business social media content engagement"}
+{"input": "how to use social media for business /only:vec", "output": "vec: how can small businesses effectively use social media platforms for marketing and growth\nvec: what strategies work best for using social media to promote a business and attract customers"}
+{"input": "how to use social media for business /only:hyde", "output": "hyde: Choose platforms where your target audience is active: Instagram for visual products, LinkedIn for B2B, TikTok for younger demographics. Post consistently, mix promotional content with value-added posts (tips, behind-the-scenes). Use analytics to track engagement. Run targeted ads with clear CTAs and A/B test creative assets."}
+{"input": "what is zero waste? /only:lex", "output": "lex: zero waste lifestyle definition\nlex: zero waste reduce reuse recycle\nlex: zero waste living tips practices"}
+{"input": "what is zero waste? /only:vec", "output": "vec: what is the zero waste movement and how do people reduce waste in daily life\nvec: what does zero waste mean and what are practical ways to minimize household waste"}
+{"input": "what is zero waste? /only:hyde", "output": "hyde: Zero waste is a philosophy and lifestyle aiming to send nothing to landfills by reducing consumption, reusing items, recycling, and composting. Practical steps include using reusable bags, bottles, and containers, buying in bulk, composting food scraps, and choosing products with minimal or recyclable packaging."}
+{"input": "what is the role of civil society in governance /only:lex", "output": "lex: civil society governance role function\nlex: civil society organizations NGOs democratic governance\nlex: civil society accountability transparency"}
+{"input": "what is the role of civil society in governance /only:vec", "output": "vec: what role does civil society play in democratic governance and government accountability\nvec: how do non-governmental organizations and civic groups contribute to governance"}
+{"input": "what is the role of civil society in governance /only:hyde", "output": "hyde: Civil society organizations\u2014NGOs, advocacy groups, media, and community organizations\u2014serve as intermediaries between citizens and government. They monitor government transparency, advocate for policy changes, provide public services, and mobilize civic participation. A strong civil society holds government accountable and strengthens democracy."}
+{"input": "what is the meaning of diwali /only:lex", "output": "lex: Diwali meaning festival of lights\nlex: Diwali Hindu celebration significance\nlex: Diwali traditions Lakshmi Rama"}
+{"input": "what is the meaning of diwali /only:vec", "output": "vec: what is Diwali and what does the festival of lights celebrate in Hindu tradition\nvec: what is the religious and cultural significance of the Diwali festival"}
+{"input": "what is the meaning of diwali /only:hyde", "output": "hyde: Diwali, the festival of lights, is celebrated by Hindus, Jains, and Sikhs over five days in autumn. It symbolizes the victory of light over darkness and good over evil. Hindus celebrate Lord Rama's return to Ayodhya and honor Lakshmi, goddess of prosperity. Traditions include lighting diyas, fireworks, rangoli art, and sharing sweets."}
+{"input": "what is a political debate /only:lex", "output": "lex: political debate definition election\nlex: political debate format candidates issues\nlex: political debate presidential election"}
+{"input": "what is a political debate /only:vec", "output": "vec: what is a political debate and how do candidates discuss issues in structured debates\nvec: how are political debates organized and what role do they play in elections"}
+{"input": "what is a political debate /only:hyde", "output": "hyde: A political debate is a structured event where candidates for elected office discuss policy positions and respond to questions from moderators and sometimes the audience. Debates follow agreed-upon formats with time limits for responses and rebuttals. They allow voters to compare candidates' positions on key issues directly."}
+{"input": "macro photography /only:lex", "output": "lex: macro photography techniques close-up\nlex: macro photography lens equipment\nlex: macro photography insects flowers detail"}
+{"input": "macro photography /only:vec", "output": "vec: what is macro photography and what equipment and techniques does it require\nvec: how do I take high-quality macro photographs of small subjects like insects and flowers"}
+{"input": "macro photography /only:hyde", "output": "hyde: Macro photography captures subjects at 1:1 magnification or greater, revealing details invisible to the naked eye. Use a dedicated macro lens (100mm is popular) or extension tubes. Shoot at f/8-f/16 for sufficient depth of field. Use a tripod and focus stacking to get the entire subject sharp."}
+{"input": "what was the enlightenment /only:lex", "output": "lex: Enlightenment 18th century intellectual movement\nlex: Age of Enlightenment reason philosophy\nlex: Enlightenment thinkers Voltaire Locke Kant"}
+{"input": "what was the enlightenment /only:vec", "output": "vec: what was the Enlightenment and how did it change Western philosophy and politics\nvec: who were the key Enlightenment thinkers and what ideas did they promote"}
+{"input": "what was the enlightenment /only:hyde", "output": "hyde: The Enlightenment was an 18th-century intellectual movement emphasizing reason, science, individual liberty, and skepticism of authority. Key thinkers include John Locke (natural rights), Voltaire (free speech), Montesquieu (separation of powers), and Kant (\"dare to know\"). It directly influenced the American and French Revolutions."}
+{"input": "how do philosophers interpret free will /only:lex", "output": "lex: free will philosophy determinism\nlex: philosophers free will debate libertarian compatibilist\nlex: free will hard determinism compatibilism"}
+{"input": "how do philosophers interpret free will /only:vec", "output": "vec: how do different philosophers interpret the problem of free will and determinism\nvec: what are the main philosophical positions on whether humans have free will"}
+{"input": "how do philosophers interpret free will /only:hyde", "output": "hyde: Three main positions dominate: hard determinism (all events are causally determined, free will is an illusion), libertarianism (genuine free will exists and is incompatible with determinism), and compatibilism (free will and determinism can coexist\u2014you act freely when acting on your own desires without external coercion). Hume and Frankfurt defend compatibilism."}
+{"input": "how to stay engaged in local politics /only:lex", "output": "lex: engaged local politics civic participation\nlex: local politics involvement community\nlex: civic engagement local government attend meetings"}
+{"input": "how to stay engaged in local politics /only:vec", "output": "vec: how can I stay actively engaged and involved in local politics and government\nvec: what are practical ways to participate in local political decision-making"}
+{"input": "how to stay engaged in local politics /only:hyde", "output": "hyde: Attend city council and school board meetings, which are open to the public. Subscribe to your local government's agenda notifications. Join neighborhood associations or civic groups. Vote in every local election\u2014municipal and school board elections often have low turnout, amplifying each vote's impact."}
+{"input": "how to paint abstract landscapes? /only:lex", "output": "lex: paint abstract landscape technique\nlex: abstract landscape painting acrylic oil\nlex: abstract landscape art color composition"}
+{"input": "how to paint abstract landscapes? /only:vec", "output": "vec: how do I paint abstract landscape art using acrylic or oil paints\nvec: what techniques and approaches do artists use when painting abstract landscapes"}
+{"input": "how to paint abstract landscapes? /only:hyde", "output": "hyde: Start with a loose underpainting to block in the horizon and major shapes. Use a palette knife or large brush for expressive marks. Simplify landscape elements\u2014hills, sky, water\u2014into geometric shapes and bold color fields. Layer transparent glazes over opaque areas. Let the painting suggest the landscape rather than depict it literally."}
+{"input": "how to decorate a small apartment /only:lex", "output": "lex: small apartment decorating ideas\nlex: tiny apartment interior design\nlex: space-saving furniture small rooms"}
+{"input": "how to decorate a small apartment /only:vec", "output": "vec: what are the best ways to decorate and furnish a small apartment to maximize space?\nvec: interior design tips for making a compact apartment look bigger and more stylish"}
+{"input": "how to decorate a small apartment /only:hyde", "output": "hyde: Use mirrors and light colors to make a small apartment feel larger. Choose multi-functional furniture like a storage ottoman or a fold-down desk. Vertical shelving frees up floor space while adding display areas."}
+{"input": "what is an allegory /only:lex", "output": "lex: allegory literary device definition\nlex: allegory examples literature"}
+{"input": "what is an allegory /only:vec", "output": "vec: what does allegory mean as a literary device and how is it used in storytelling?\nvec: how do authors use allegory to convey hidden meanings through characters and events?"}
+{"input": "what is an allegory /only:hyde", "output": "hyde: An allegory is a narrative in which characters, events, and settings represent abstract ideas or moral qualities. For example, George Orwell's Animal Farm is an allegory for the Russian Revolution, with farm animals standing in for political figures."}
+{"input": "what is wildlife photography? /only:lex", "output": "lex: wildlife photography techniques\nlex: wildlife photography camera gear\nlex: photographing animals in nature"}
+{"input": "what is wildlife photography? /only:vec", "output": "vec: what is wildlife photography and what skills and equipment does it require?\nvec: how do photographers capture images of wild animals in their natural habitats?"}
+{"input": "what is wildlife photography? /only:hyde", "output": "hyde: Wildlife photography involves capturing images of animals in their natural environments. Photographers typically use long telephoto lenses (300mm-600mm) and fast shutter speeds to freeze motion. Patience and knowledge of animal behavior are essential for getting close without disturbing subjects."}
+{"input": "what is chaos theory /only:lex", "output": "lex: chaos theory mathematics\nlex: butterfly effect deterministic systems\nlex: nonlinear dynamics sensitive dependence"}
+{"input": "what is chaos theory /only:vec", "output": "vec: what is chaos theory and how does it explain unpredictable behavior in deterministic systems?\nvec: how does the butterfly effect relate to chaos theory in mathematics and physics?"}
+{"input": "what is chaos theory /only:hyde", "output": "hyde: Chaos theory studies deterministic systems that are highly sensitive to initial conditions. A tiny change in starting values can produce vastly different outcomes over time \u2014 the so-called butterfly effect. The Lorenz attractor, discovered in 1963, was one of the first examples of chaotic behavior in weather modeling."}
+{"input": "what is the role of ethics in scientific research /only:lex", "output": "lex: research ethics scientific integrity\nlex: ethical guidelines human subjects research\nlex: scientific misconduct fraud prevention"}
+{"input": "what is the role of ethics in scientific research /only:vec", "output": "vec: why are ethical standards important in conducting scientific research?\nvec: how do ethics committees and institutional review boards regulate scientific experiments?"}
+{"input": "what is the role of ethics in scientific research /only:hyde", "output": "hyde: Ethics in scientific research ensures the integrity of findings and the protection of human and animal subjects. Researchers must obtain informed consent, avoid fabrication or falsification of data, and disclose conflicts of interest. Institutional Review Boards (IRBs) review proposed studies before they begin."}
+{"input": "how to shoot video in low light /only:lex", "output": "lex: low light video settings camera\nlex: filming dark environments ISO aperture\nlex: low light videography tips"}
+{"input": "how to shoot video in low light /only:vec", "output": "vec: what camera settings and techniques produce the best video quality in low light conditions?\nvec: how do filmmakers shoot usable footage in dark or dimly lit environments?"}
+{"input": "how to shoot video in low light /only:hyde", "output": "hyde: For low light video, open your aperture to f/1.4\u2013f/2.8 and lower your shutter speed to 1/50 for 24fps footage. Raise ISO gradually \u2014 modern cameras handle ISO 3200\u20136400 with acceptable noise. Use a fast prime lens and add practical lights in the scene when possible."}
+{"input": "what is compositional balance? /only:lex", "output": "lex: compositional balance art design\nlex: symmetrical asymmetrical balance visual\nlex: balance principles composition photography"}
+{"input": "what is compositional balance? /only:vec", "output": "vec: what does compositional balance mean in art, photography, and graphic design?\nvec: how do artists achieve visual balance through symmetrical and asymmetrical arrangements?"}
+{"input": "what is compositional balance? /only:hyde", "output": "hyde: Compositional balance refers to the distribution of visual weight within an image or artwork. Symmetrical balance places equal elements on both sides of a central axis, while asymmetrical balance uses contrasting elements \u2014 such as a large shape offset by a smaller, brighter one \u2014 to create dynamic equilibrium."}
+{"input": "what is the impact of lobbyists on legislation /only:lex", "output": "lex: lobbyists influence legislation policy\nlex: lobbying congress lawmaking\nlex: corporate lobbying political spending"}
+{"input": "what is the impact of lobbyists on legislation /only:vec", "output": "vec: how do lobbyists influence the legislative process and shape laws passed by government?\nvec: what impact does corporate and special interest lobbying have on policy outcomes?"}
+{"input": "what is the impact of lobbyists on legislation /only:hyde", "output": "hyde: Lobbyists meet with lawmakers, draft model legislation, and organize campaign contributions to influence policy outcomes. In the U.S., spending on lobbying exceeded $4 billion annually. Critics argue this gives wealthy interests disproportionate power, while proponents say lobbyists provide expertise legislators need."}
+{"input": "how to navigate with a compass /only:lex", "output": "lex: compass navigation orienteering\nlex: magnetic compass bearing map reading\nlex: compass declination true north"}
+{"input": "how to navigate with a compass /only:vec", "output": "vec: how do you use a magnetic compass and topographic map to navigate outdoors?\nvec: what are the steps for taking a bearing with a compass and following it in the field?"}
+{"input": "how to navigate with a compass /only:hyde", "output": "hyde: Hold the compass flat and rotate the bezel until the orienting arrow aligns with the magnetic needle pointing north. Place the compass on your map, align the edge with your start and destination, and rotate the bezel to match the map's grid lines. Adjust for magnetic declination, then follow the bearing."}
+{"input": "what is genetic drift /only:lex", "output": "lex: genetic drift population genetics\nlex: bottleneck effect founder effect allele frequency"}
+{"input": "what is genetic drift /only:vec", "output": "vec: what is genetic drift and how does it cause random changes in allele frequencies in small populations?\nvec: how do the bottleneck effect and founder effect relate to genetic drift in evolution?"}
+{"input": "what is genetic drift /only:hyde", "output": "hyde: Genetic drift is a mechanism of evolution where allele frequencies change randomly from one generation to the next due to chance sampling. Its effects are strongest in small populations. The bottleneck effect occurs when a population is drastically reduced, and the founder effect occurs when a small group colonizes a new area."}
+{"input": "what is the significance of the alhambra? /only:lex", "output": "lex: Alhambra palace Granada Spain\nlex: Alhambra Islamic architecture Nasrid\nlex: Alhambra historical significance"}
+{"input": "what is the significance of the alhambra? /only:vec", "output": "vec: why is the Alhambra in Granada, Spain considered a masterpiece of Islamic architecture?\nvec: what is the cultural and historical significance of the Alhambra palace?"}
+{"input": "what is the significance of the alhambra? /only:hyde", "output": "hyde: The Alhambra is a palace and fortress complex in Granada, Spain, built primarily by the Nasrid dynasty in the 13th and 14th centuries. Its intricate stucco work, muqarnas ceilings, and geometric tile patterns represent the pinnacle of Moorish art in Europe. The Court of the Lions features 124 marble columns surrounding a central fountain."}
+{"input": "how the human brain functions /only:lex", "output": "lex: human brain function neuroscience\nlex: brain regions neurons synapses\nlex: cerebral cortex brain anatomy"}
+{"input": "how the human brain functions /only:vec", "output": "vec: how does the human brain process information through neurons and different brain regions?\nvec: what are the major parts of the brain and their roles in cognition, memory, and movement?"}
+{"input": "how the human brain functions /only:hyde", "output": "hyde: The human brain contains approximately 86 billion neurons that communicate via electrical and chemical signals across synapses. The cerebral cortex handles higher-order functions like reasoning and language. The hippocampus is critical for forming new memories, while the cerebellum coordinates movement and balance."}
+{"input": "how is love viewed in different religions? /only:lex", "output": "lex: love religion Christianity Islam Buddhism\nlex: divine love spiritual traditions\nlex: religious teachings about love"}
+{"input": "how is love viewed in different religions? /only:vec", "output": "vec: how do different world religions like Christianity, Islam, Hinduism, and Buddhism define and teach about love?\nvec: what role does love play in the spiritual teachings of major religions?"}
+{"input": "how is love viewed in different religions? /only:hyde", "output": "hyde: In Christianity, love (agape) is the highest virtue \u2014 \"God is love\" (1 John 4:8). Islam teaches that Allah is Al-Wadud, the Loving, and compassion toward others is a core duty. In Buddhism, metta (loving-kindness) is cultivated through meditation. Hinduism describes divine love (bhakti) as devotion to God."}
+{"input": "what is literary symbolism? /only:lex", "output": "lex: literary symbolism examples\nlex: symbolism in literature meaning\nlex: symbolic imagery fiction poetry"}
+{"input": "what is literary symbolism? /only:vec", "output": "vec: what is symbolism as a literary device and how do authors use symbols to convey deeper meaning?\nvec: how do readers identify and interpret symbols in novels, poems, and short stories?"}
+{"input": "what is literary symbolism? /only:hyde", "output": "hyde: Literary symbolism is the use of objects, characters, or events to represent abstract ideas beyond their literal meaning. In The Great Gatsby, the green light symbolizes Gatsby's unattainable dream. The conch shell in Lord of the Flies represents order and democratic authority."}
+{"input": "what is the relationship between ethics and law? /only:lex", "output": "lex: ethics versus law differences\nlex: morality legality relationship\nlex: ethical standards legal requirements"}
+{"input": "what is the relationship between ethics and law? /only:vec", "output": "vec: how do ethics and law relate to each other, and where do they diverge?\nvec: can something be legal but unethical, or illegal but morally justified?"}
+{"input": "what is the relationship between ethics and law? /only:hyde", "output": "hyde: Ethics and law overlap but are distinct. Laws are formal rules enforced by the state, while ethics are moral principles guiding individual conduct. Something can be legal yet unethical \u2014 such as exploitative pricing \u2014 or illegal yet ethically defensible, as in acts of civil disobedience against unjust laws."}
+{"input": "json load /only:lex", "output": "lex: JSON parse load file\nlex: JSON.parse read file\nlex: json load Python JavaScript"}
+{"input": "json load /only:vec", "output": "vec: how do you load and parse a JSON file in Python or JavaScript?\nvec: what functions are used to read JSON data from a file or string?"}
+{"input": "json load /only:hyde", "output": "hyde: In Python, use json.load(f) to read from a file object and json.loads(s) to parse a string. In JavaScript, use JSON.parse(str) to convert a JSON string into an object, or fetch a file and call response.json() to parse the result."}
+{"input": "how to remove oil stains from clothes /only:lex", "output": "lex: remove oil stains clothing\nlex: grease stain removal fabric\nlex: oil stain laundry treatment"}
+{"input": "how to remove oil stains from clothes /only:vec", "output": "vec: what is the best method for removing oil and grease stains from clothing fabric?\nvec: how do you get cooking oil or motor oil stains out of clothes at home?"}
+{"input": "how to remove oil stains from clothes /only:hyde", "output": "hyde: Apply dish soap or liquid detergent directly to the oil stain and gently rub it in. Let it sit for 10-15 minutes, then wash in the hottest water safe for the fabric. For stubborn stains, sprinkle baking soda or cornstarch on the spot to absorb excess oil before treating."}
+{"input": "where to buy greenhouse supplies? /only:lex", "output": "lex: greenhouse supplies store online\nlex: buy greenhouse panels heaters shelving\nlex: greenhouse gardening equipment"}
+{"input": "where to buy greenhouse supplies? /only:vec", "output": "vec: where can I purchase greenhouse supplies like panels, heaters, ventilation, and shelving?\nvec: what are the best online and local stores for buying greenhouse building materials and accessories?"}
+{"input": "where to buy greenhouse supplies? /only:hyde", "output": "hyde: Greenhouse supplies are available at garden centers like Home Depot and Lowe's, as well as specialty retailers like Greenhouse Megastore and Bootstrap Farmer. Online, Amazon carries polycarbonate panels, shade cloth, heating mats, and ventilation fans. For commercial-grade supplies, contact manufacturers like Rimol Greenhouses directly."}
+{"input": "how to support climbing roses? /only:lex", "output": "lex: climbing roses trellis support\nlex: train climbing roses wall fence\nlex: rose arbor lattice structure"}
+{"input": "how to support climbing roses? /only:vec", "output": "vec: what structures and techniques are used to support and train climbing roses?\nvec: how do you attach and guide climbing roses along a trellis, wall, or arbor?"}
+{"input": "how to support climbing roses? /only:hyde", "output": "hyde: Install a sturdy trellis, arbor, or wire system at least 3 inches from the wall to allow air circulation. Tie canes horizontally with soft plant ties to encourage lateral growth and more blooms. Prune in late winter, removing dead wood and shortening side shoots to 2-3 buds."}
+{"input": "how to manage debt /only:lex", "output": "lex: debt management repayment plan\nlex: pay off debt strategies snowball avalanche\nlex: credit card debt consolidation"}
+{"input": "how to manage debt /only:vec", "output": "vec: what are the most effective strategies for managing and paying off personal debt?\nvec: how does the debt snowball versus debt avalanche method work for debt repayment?"}
+{"input": "how to manage debt /only:hyde", "output": "hyde: List all debts with their balances, interest rates, and minimum payments. With the avalanche method, pay extra toward the highest-interest debt first to save the most money. With the snowball method, pay off the smallest balance first for psychological momentum. Consider consolidation loans if you qualify for a lower rate."}
+{"input": "sailing adventures /only:lex", "output": "lex: sailing adventure trips voyages\nlex: sailing vacation destinations cruises\nlex: ocean sailing expedition"}
+{"input": "sailing adventures /only:vec", "output": "vec: what are some popular sailing adventure destinations and voyages around the world?\nvec: how do people plan and prepare for multi-day sailing trips and ocean crossings?"}
+{"input": "sailing adventures /only:hyde", "output": "hyde: Popular sailing adventures include island-hopping in the Greek Cyclades, crossing the Atlantic via the trade winds from the Canary Islands to the Caribbean, and navigating the fjords of Norway. Charter companies offer bareboat and crewed options for all experience levels, from weekend coastal cruises to month-long blue water passages."}
+{"input": "paint flow /only:lex", "output": "lex: paint flow viscosity consistency\nlex: acrylic paint flow medium pouring\nlex: paint flow rate spray gun"}
+{"input": "paint flow /only:vec", "output": "vec: how do you control paint flow and viscosity for acrylic pouring or spray application?\nvec: what is a flow medium and how does it affect paint consistency?"}
+{"input": "paint flow /only:hyde", "output": "hyde: Paint flow refers to how freely paint moves and levels on a surface. For acrylic pouring, mix paint with a flow medium like Floetrol at a 2:1 ratio to achieve a honey-like consistency. For spray guns, thin paint to the manufacturer's recommended viscosity using a flow cup to measure."}
+{"input": "how to create a budget plan /only:lex", "output": "lex: budget plan personal monthly\nlex: create budget spreadsheet expenses income\nlex: 50/30/20 budgeting rule"}
+{"input": "how to create a budget plan /only:vec", "output": "vec: how do you create a personal monthly budget plan to track income and expenses?\nvec: what steps are involved in building a budget and sticking to it?"}
+{"input": "how to create a budget plan /only:hyde", "output": "hyde: Start by listing your monthly after-tax income. Track all expenses for one month, categorizing them as needs, wants, and savings. Apply the 50/30/20 rule: 50% to necessities, 30% to discretionary spending, and 20% to savings and debt repayment. Use a spreadsheet or app like YNAB to monitor progress."}
+{"input": "how to apply for research funding /only:lex", "output": "lex: research funding application grant\nlex: apply grant NIH NSF proposal\nlex: research grant writing tips"}
+{"input": "how to apply for research funding /only:vec", "output": "vec: what is the process for applying for academic or scientific research funding grants?\nvec: how do researchers write successful grant proposals for agencies like NIH and NSF?"}
+{"input": "how to apply for research funding /only:hyde", "output": "hyde: Identify funding agencies that match your research area \u2014 NIH for biomedical, NSF for science and engineering, NEH for humanities. Read the request for proposals (RFP) carefully. Write a clear specific aims page, include preliminary data, and describe your methodology in detail. Submit through the agency's online portal before the deadline."}
+{"input": "how to improve credit score /only:lex", "output": "lex: improve credit score FICO\nlex: raise credit score fast tips\nlex: credit score factors payment history"}
+{"input": "how to improve credit score /only:vec", "output": "vec: what are the most effective ways to raise your credit score quickly?\nvec: which factors affect your FICO credit score the most and how can you improve them?"}
+{"input": "how to improve credit score /only:hyde", "output": "hyde: Pay all bills on time \u2014 payment history accounts for 35% of your FICO score. Keep credit utilization below 30% of your total credit limit. Avoid opening too many new accounts at once. Check your credit report for errors and dispute inaccuracies. Keeping old accounts open increases your average account age."}
+{"input": "what is literary criticism? /only:lex", "output": "lex: literary criticism theory analysis\nlex: literary criticism schools formalism structuralism\nlex: literary analysis methods approaches"}
+{"input": "what is literary criticism? /only:vec", "output": "vec: what is literary criticism and what are its major schools of thought?\nvec: how do literary critics analyze and interpret works of literature using different theoretical frameworks?"}
+{"input": "what is literary criticism? /only:hyde", "output": "hyde: Literary criticism is the study, evaluation, and interpretation of literature. Major approaches include formalism (focusing on the text itself), structuralism (analyzing underlying structures), feminist criticism (examining gender representation), and post-colonialism (exploring power dynamics). Each lens offers a different way to interpret a work's meaning."}
+{"input": "how do ethical theories apply to social issues /only:lex", "output": "lex: ethical theories social issues applied ethics\nlex: utilitarianism deontology social justice\nlex: ethics poverty inequality healthcare"}
+{"input": "how do ethical theories apply to social issues /only:vec", "output": "vec: how are ethical theories like utilitarianism and deontology applied to real-world social issues?\nvec: what ethical frameworks do philosophers use to analyze problems like poverty, inequality, and healthcare?"}
+{"input": "how do ethical theories apply to social issues /only:hyde", "output": "hyde: Utilitarian ethics evaluates social policies by their overall consequences \u2014 a policy is just if it maximizes well-being for the greatest number. Deontological ethics focuses on rights and duties regardless of outcome. Applying these frameworks to issues like healthcare access reveals tensions between collective welfare and individual rights."}
+{"input": "where to buy affordable art prints /only:lex", "output": "lex: buy affordable art prints online\nlex: cheap art prints posters wall decor\nlex: art print shops Etsy Society6"}
+{"input": "where to buy affordable art prints /only:vec", "output": "vec: where can I buy affordable and high-quality art prints for home decoration?\nvec: what are the best online stores for purchasing inexpensive art prints and posters?"}
+{"input": "where to buy affordable art prints /only:hyde", "output": "hyde: Affordable art prints are available on Society6, Redbubble, and Etsy, where independent artists sell prints starting at $15\u2013$30. IKEA offers framed prints under $20. For museum-quality reproductions, check Artsy or Saatchi Art's prints section. King & McGaw specializes in licensed fine art reproductions at mid-range prices."}
+{"input": "how do you critique a literary work? /only:lex", "output": "lex: critique literary work analysis\nlex: literary critique essay writing\nlex: evaluate novel poem fiction"}
+{"input": "how do you critique a literary work? /only:vec", "output": "vec: what steps do you follow to write a literary critique of a novel or poem?\nvec: how do you analyze and evaluate the strengths and weaknesses of a literary work?"}
+{"input": "how do you critique a literary work? /only:hyde", "output": "hyde: To critique a literary work, start by reading it closely and noting your initial reactions. Identify the theme, narrative structure, character development, and use of literary devices. Evaluate how effectively the author conveys their message. Support your assessment with specific textual evidence and quotations from the work."}
+{"input": "what are the principles of democracy /only:lex", "output": "lex: principles democracy government\nlex: democratic principles rule of law elections\nlex: democracy separation of powers rights"}
+{"input": "what are the principles of democracy /only:vec", "output": "vec: what are the fundamental principles that define a democratic system of government?\nvec: how do free elections, rule of law, and separation of powers form the foundation of democracy?"}
+{"input": "what are the principles of democracy /only:hyde", "output": "hyde: The core principles of democracy include popular sovereignty (power derives from the people), free and fair elections, rule of law, separation of powers among branches of government, protection of individual rights and civil liberties, and majority rule with minority rights. An independent judiciary ensures laws are applied equally."}
+{"input": "how to grow tomatoes at home? /only:lex", "output": "lex: grow tomatoes home garden\nlex: tomato plant care watering sunlight\nlex: container tomatoes growing tips"}
+{"input": "how to grow tomatoes at home? /only:vec", "output": "vec: how do you grow tomato plants at home in a garden bed or container?\nvec: what soil, sunlight, and watering conditions do tomato plants need to produce fruit?"}
+{"input": "how to grow tomatoes at home? /only:hyde", "output": "hyde: Plant tomato seedlings after the last frost in a spot receiving 6-8 hours of direct sunlight. Use well-draining soil amended with compost. Water deeply at the base 1-2 inches per week. Stake or cage plants for support. Feed with a balanced fertilizer every two weeks once fruit begins to set."}
+{"input": "how to fix a loud exhaust? /only:lex", "output": "lex: fix loud exhaust car muffler\nlex: exhaust leak repair pipe\nlex: muffler replacement noisy exhaust"}
+{"input": "how to fix a loud exhaust? /only:vec", "output": "vec: how do you diagnose and fix a loud or rattling car exhaust system?\nvec: what causes a car exhaust to become loud and how do you repair or replace the muffler?"}
+{"input": "how to fix a loud exhaust? /only:hyde", "output": "hyde: A loud exhaust is usually caused by a hole in the muffler, a cracked exhaust pipe, or a failed gasket at the manifold. For small holes, apply exhaust repair tape or paste as a temporary fix. For larger damage, replace the affected section. A rusted-through muffler should be replaced entirely \u2014 bolt-on universal mufflers cost $30\u2013$80."}
+{"input": "what is kinetic art? /only:lex", "output": "lex: kinetic art sculpture movement\nlex: kinetic art artists Calder Tinguely\nlex: moving art installation mechanical"}
+{"input": "what is kinetic art? /only:vec", "output": "vec: what is kinetic art and how do artists create sculptures and installations that move?\nvec: who are the most famous kinetic artists and what are their notable works?"}
+{"input": "what is kinetic art? /only:hyde", "output": "hyde: Kinetic art is a genre of art that incorporates real or apparent movement. Alexander Calder pioneered the mobile \u2014 hanging sculptures that move with air currents. Jean Tinguely built complex mechanical assemblages that rattled and spun. Modern kinetic artists use motors, wind, and magnets to create motion."}
+{"input": "async web /only:lex", "output": "lex: async web framework server\nlex: asynchronous HTTP request JavaScript Python\nlex: async await web API"}
+{"input": "async web /only:vec", "output": "vec: how do asynchronous programming patterns work in web development and API requests?\nvec: what are the best async web frameworks for building non-blocking HTTP servers?"}
+{"input": "async web /only:hyde", "output": "hyde: Asynchronous web programming allows a server to handle multiple requests concurrently without blocking. In Python, frameworks like FastAPI and aiohttp use async/await syntax with an event loop. In JavaScript, Express with async handlers or Fastify process requests non-blockingly. This improves throughput for I/O-bound workloads."}
+{"input": "what is the philosophy of nonviolence /only:lex", "output": "lex: philosophy nonviolence ahimsa pacifism\nlex: nonviolence Gandhi King civil disobedience"}
+{"input": "what is the philosophy of nonviolence /only:vec", "output": "vec: what is the philosophical basis for nonviolence as practiced by Gandhi and Martin Luther King Jr.?\nvec: how does the concept of ahimsa relate to the broader philosophy of nonviolent resistance?"}
+{"input": "what is the philosophy of nonviolence /only:hyde", "output": "hyde: Nonviolence (ahimsa) as a philosophy holds that physical force is never justified as a means of conflict resolution. Mahatma Gandhi developed satyagraha \u2014 truth-force \u2014 as a method of nonviolent resistance against British colonial rule. Martin Luther King Jr. adapted these principles to the American civil rights movement."}
+{"input": "what are the main sects of islam? /only:lex", "output": "lex: sects of Islam Sunni Shia Sufi\nlex: Islamic denominations branches\nlex: Sunni Shia differences beliefs"}
+{"input": "what are the main sects of islam? /only:vec", "output": "vec: what are the major sects and branches within Islam and how do they differ?\nvec: what caused the split between Sunni and Shia Muslims and what are their key theological differences?"}
+{"input": "what are the main sects of islam? /only:hyde", "output": "hyde: The two main sects of Islam are Sunni (approximately 85-90% of Muslims) and Shia (10-15%). The split originated from a disagreement over succession after Prophet Muhammad's death in 632 CE. Sunnis accepted Abu Bakr as caliph, while Shia believed leadership belonged to Ali, Muhammad's cousin and son-in-law. Sufism is a mystical tradition found within both branches."}
+{"input": "how to use charcoal for drawing? /only:lex", "output": "lex: charcoal drawing techniques\nlex: vine compressed charcoal sketching\nlex: charcoal shading blending paper"}
+{"input": "how to use charcoal for drawing? /only:vec", "output": "vec: what are the techniques for drawing and shading with charcoal on paper?\nvec: what types of charcoal are used for drawing and how do they differ in effect?"}
+{"input": "how to use charcoal for drawing? /only:hyde", "output": "hyde: Vine charcoal is soft and ideal for light sketching and easy erasing. Compressed charcoal is denser, producing darker, richer marks. Hold the charcoal on its side for broad strokes and use the tip for fine lines. Blend with a tortillon or chamois cloth. Fix finished drawings with spray fixative to prevent smudging."}
+{"input": "what is mindfulness /only:lex", "output": "lex: mindfulness meditation practice\nlex: mindfulness definition awareness present moment\nlex: mindfulness stress reduction MBSR"}
+{"input": "what is mindfulness /only:vec", "output": "vec: what is mindfulness and how is it practiced as a form of meditation?\nvec: what are the psychological and health benefits of practicing mindfulness regularly?"}
+{"input": "what is mindfulness /only:hyde", "output": "hyde: Mindfulness is the practice of paying attention to the present moment without judgment. It involves observing thoughts, feelings, and sensations as they arise and letting them pass. Jon Kabat-Zinn developed Mindfulness-Based Stress Reduction (MBSR), an eight-week program shown to reduce anxiety, depression, and chronic pain."}
+{"input": "latest updates on the ukraine conflict /only:lex", "output": "lex: Ukraine conflict war 2025 2026 updates\nlex: Ukraine Russia war latest news\nlex: Ukraine ceasefire negotiations frontline"}
+{"input": "latest updates on the ukraine conflict /only:vec", "output": "vec: what are the most recent developments in the Russia-Ukraine war as of 2025-2026?\nvec: what is the current status of the Ukraine conflict including ceasefire talks and territorial changes?"}
+{"input": "latest updates on the ukraine conflict /only:hyde", "output": "hyde: As fighting continues along the eastern front, diplomatic efforts have intensified with multiple rounds of negotiations. Ukraine's forces have focused on defensive operations in the Donetsk region while maintaining pressure on supply lines. International support continues with new aid packages and sanctions enforcement."}
+{"input": "git push /only:lex", "output": "lex: git push remote origin\nlex: git push branch upstream\nlex: git push force rejected"}
+{"input": "git push /only:vec", "output": "vec: how do you push commits to a remote repository using git push?\nvec: what do you do when git push is rejected and how do you set upstream tracking branches?"}
+{"input": "git push /only:hyde", "output": "hyde: Use `git push origin main` to push your local main branch to the remote. For a new branch, use `git push -u origin feature-branch` to set the upstream tracking reference. If the push is rejected because the remote has new commits, run `git pull --rebase` first, then push again."}
+{"input": "what is hedonism /only:lex", "output": "lex: hedonism philosophy pleasure\nlex: hedonism Epicurus ethical theory\nlex: hedonistic ethics pleasure pain"}
+{"input": "what is hedonism /only:vec", "output": "vec: what is hedonism as a philosophical doctrine about pleasure and the good life?\nvec: how did Epicurus define hedonism and how does it differ from popular conceptions of pleasure-seeking?"}
+{"input": "what is hedonism /only:hyde", "output": "hyde: Hedonism is the philosophical view that pleasure is the highest good and the proper aim of human life. Epicurus distinguished between kinetic pleasures (active enjoyment) and katastematic pleasures (the absence of pain). He argued that simple pleasures, friendship, and tranquility produce the most lasting happiness \u2014 not excess or indulgence."}
+{"input": "what is a mathematical model /only:lex", "output": "lex: mathematical model definition\nlex: mathematical modeling equations simulation\nlex: applied mathematics modeling real world"}
+{"input": "what is a mathematical model /only:vec", "output": "vec: what is a mathematical model and how is it used to represent real-world systems?\nvec: how do scientists and engineers build mathematical models to simulate and predict phenomena?"}
+{"input": "what is a mathematical model /only:hyde", "output": "hyde: A mathematical model uses equations and variables to represent a real-world system. For example, the SIR model uses differential equations to predict infectious disease spread: dS/dt = -\u03b2SI, dI/dt = \u03b2SI - \u03b3I, dR/dt = \u03b3I. Models are validated by comparing predictions against observed data and refined iteratively."}
+{"input": "how to grow an herb garden /only:lex", "output": "lex: grow herb garden home indoor outdoor\nlex: herb garden planting basil cilantro thyme\nlex: container herb garden windowsill"}
+{"input": "how to grow an herb garden /only:vec", "output": "vec: how do you start and maintain an herb garden at home, indoors or outdoors?\nvec: which herbs grow best together and what soil and light conditions do they need?"}
+{"input": "how to grow an herb garden /only:hyde", "output": "hyde: Start with easy herbs like basil, parsley, mint, rosemary, and thyme. Plant in well-draining soil with 6+ hours of sunlight. Herbs in containers need pots with drainage holes and regular watering when the top inch of soil is dry. Harvest regularly by pinching stems above leaf nodes to encourage bushy growth."}
+{"input": "how to evaluate a scientific claim /only:lex", "output": "lex: evaluate scientific claim evidence\nlex: critical thinking scientific evidence peer review\nlex: assess scientific study credibility"}
+{"input": "how to evaluate a scientific claim /only:vec", "output": "vec: how do you critically evaluate whether a scientific claim is supported by credible evidence?\nvec: what criteria should you use to judge the reliability of a scientific study or finding?"}
+{"input": "how to evaluate a scientific claim /only:hyde", "output": "hyde: Check if the claim is published in a peer-reviewed journal. Look at the sample size, methodology, and whether results have been replicated independently. Consider whether the source has conflicts of interest. Distinguish between correlation and causation. Evaluate the statistical significance and effect size reported in the study."}
+{"input": "what is virtue signaling? /only:lex", "output": "lex: virtue signaling definition examples\nlex: virtue signaling social media politics"}
+{"input": "what is virtue signaling? /only:vec", "output": "vec: what does virtue signaling mean and how is the term used in political and social discourse?\nvec: how do people use virtue signaling to publicly express moral values without substantive action?"}
+{"input": "what is virtue signaling? /only:hyde", "output": "hyde: Virtue signaling refers to the public expression of moral values or opinions primarily intended to demonstrate one's good character rather than to effect change. The term is often used critically to describe performative displays on social media \u2014 such as posting a hashtag or changing a profile picture \u2014 without taking meaningful action on the issue."}
+{"input": "what is impact investing? /only:lex", "output": "lex: impact investing ESG social return\nlex: impact investing funds sustainable\nlex: socially responsible investing SRI"}
+{"input": "what is impact investing? /only:vec", "output": "vec: what is impact investing and how does it generate both financial returns and social or environmental benefit?\nvec: how does impact investing differ from traditional investing and ESG strategies?"}
+{"input": "what is impact investing? /only:hyde", "output": "hyde: Impact investing directs capital toward companies and projects that generate measurable social or environmental benefits alongside financial returns. Unlike ESG screening, which excludes harmful sectors, impact investing actively targets positive outcomes \u2014 such as affordable housing, renewable energy, or microfinance. The Global Impact Investing Network (GIIN) estimates the market at over $1 trillion."}
+{"input": "stellar cartography /only:lex", "output": "lex: stellar cartography star mapping\nlex: star chart celestial mapping catalog\nlex: astronomical survey stellar positions"}
+{"input": "stellar cartography /only:vec", "output": "vec: what is stellar cartography and how do astronomers map the positions and movements of stars?\nvec: what tools and surveys are used to create detailed maps of stars in the galaxy?"}
+{"input": "stellar cartography /only:hyde", "output": "hyde: Stellar cartography is the science of mapping the positions, distances, and motions of stars. The ESA's Gaia mission has cataloged over 1.8 billion stars with precise positions and parallax measurements. Stellar maps use right ascension and declination coordinates, with distances measured in parsecs from trigonometric parallax."}
+{"input": "what are hedge funds? /only:lex", "output": "lex: hedge funds investment strategy\nlex: hedge fund accredited investors returns\nlex: hedge fund management fee structure"}
+{"input": "what are hedge funds? /only:vec", "output": "vec: what are hedge funds and how do they differ from mutual funds and other investment vehicles?\nvec: what strategies do hedge funds use to generate returns and manage risk?"}
+{"input": "what are hedge funds? /only:hyde", "output": "hyde: A hedge fund is a pooled investment fund that employs diverse strategies \u2014 including long/short equity, arbitrage, and derivatives trading \u2014 to generate returns for accredited investors. Unlike mutual funds, hedge funds face fewer regulatory restrictions and typically charge a 2% management fee plus 20% of profits (the \"2 and 20\" model)."}
+{"input": "github repository /only:lex", "output": "lex: GitHub repository create manage\nlex: GitHub repo clone push pull\nlex: git repository hosting GitHub"}
+{"input": "github repository /only:vec", "output": "vec: how do you create and manage a repository on GitHub for version control?\nvec: what are the basic operations for working with a GitHub repository including cloning, pushing, and pull requests?"}
+{"input": "github repository /only:hyde", "output": "hyde: To create a GitHub repository, click \"New repository\" on github.com, name it, and choose public or private visibility. Clone it locally with `git clone https://github.com/user/repo.git`. Add files, commit changes, and push with `git push origin main`. Collaborate through pull requests and code reviews."}
+{"input": "how to enhance positive social impact? /only:lex", "output": "lex: enhance social impact community\nlex: positive social impact strategies nonprofit\nlex: social change community engagement"}
+{"input": "how to enhance positive social impact? /only:vec", "output": "vec: what are effective strategies for individuals and organizations to create positive social impact?\nvec: how can nonprofits and businesses measure and increase their social impact in communities?"}
+{"input": "how to enhance positive social impact? /only:hyde", "output": "hyde: To enhance social impact, define clear measurable goals aligned with community needs. Use a theory of change to map how activities lead to outcomes. Partner with local organizations for culturally informed approaches. Measure results with both quantitative metrics (people served, outcomes achieved) and qualitative feedback from beneficiaries."}
+{"input": "how to negotiate rent prices /only:lex", "output": "lex: negotiate rent price landlord\nlex: rent negotiation apartment lease\nlex: lower rent strategies tenant"}
+{"input": "how to negotiate rent prices /only:vec", "output": "vec: how do you negotiate a lower rent price with your landlord when signing or renewing a lease?\nvec: what tactics and arguments can tenants use to get a better deal on apartment rent?"}
+{"input": "how to negotiate rent prices /only:hyde", "output": "hyde: Research comparable rents in your area on Zillow or Apartments.com before negotiating. Highlight your strengths as a tenant: stable income, good credit, long tenure, or willingness to sign a longer lease. Negotiate during off-peak months (November-February) when demand is lower. Offer to prepay several months or handle minor maintenance in exchange for a reduction."}
+{"input": "how to propagate succulents from leaves /only:lex", "output": "lex: propagate succulents leaves cuttings\nlex: succulent leaf propagation rooting\nlex: grow succulents from leaf"}
+{"input": "how to propagate succulents from leaves /only:vec", "output": "vec: how do you propagate new succulent plants from individual leaf cuttings?\nvec: what is the step-by-step process for rooting succulent leaves to grow new plants?"}
+{"input": "how to propagate succulents from leaves /only:hyde", "output": "hyde: Gently twist a healthy leaf from the stem, ensuring a clean break with the base intact. Let it callous over for 2-3 days in indirect light. Place on top of well-draining cactus soil and mist every few days. Roots and a tiny rosette will appear in 2-4 weeks. Avoid direct sunlight until established."}
+{"input": "what is the role of non-governmental organizations /only:lex", "output": "lex: NGO non-governmental organization role\nlex: NGOs humanitarian aid development\nlex: nonprofit organizations international advocacy"}
+{"input": "what is the role of non-governmental organizations /only:vec", "output": "vec: what roles do non-governmental organizations (NGOs) play in humanitarian aid, development, and advocacy?\nvec: how do NGOs influence government policy and deliver services in developing countries?"}
+{"input": "what is the role of non-governmental organizations /only:hyde", "output": "hyde: Non-governmental organizations (NGOs) operate independently from government to address social, environmental, and humanitarian issues. They deliver aid in crisis zones, advocate for policy changes, monitor human rights, and provide services like healthcare and education. Major NGOs include M\u00e9decins Sans Fronti\u00e8res, Amnesty International, and the Red Cross."}
+{"input": "what is pentecost in christian faith /only:lex", "output": "lex: Pentecost Christian Holy Spirit\nlex: Pentecost Acts apostles church\nlex: Pentecost feast day Christianity"}
+{"input": "what is pentecost in christian faith /only:vec", "output": "vec: what is the meaning and significance of Pentecost in the Christian faith?\nvec: what happened on the day of Pentecost according to the Book of Acts in the Bible?"}
+{"input": "what is pentecost in christian faith /only:hyde", "output": "hyde: Pentecost commemorates the descent of the Holy Spirit upon the apostles fifty days after Easter, as described in Acts 2. The apostles began speaking in tongues and Peter preached to a crowd, leading to about 3,000 conversions. It is often called the birthday of the Christian Church and is celebrated as a major feast day."}
+{"input": "how to pay off student loans faster /only:lex", "output": "lex: pay off student loans faster\nlex: student loan repayment strategies\nlex: student loan refinance extra payments"}
+{"input": "how to pay off student loans faster /only:vec", "output": "vec: what are the most effective strategies for paying off student loans ahead of schedule?\nvec: how can refinancing or making extra payments help you pay off student loans faster?"}
+{"input": "how to pay off student loans faster /only:hyde", "output": "hyde: Make payments above the minimum and specify that extra goes toward the principal. Refinance at a lower interest rate if your credit has improved. Use the avalanche method to target the highest-rate loan first. Set up biweekly payments instead of monthly to make one extra payment per year. Allocate windfalls like tax refunds directly to loans."}
+{"input": "what are the characteristics of gothic literature? /only:lex", "output": "lex: gothic literature characteristics elements\nlex: gothic fiction dark romantic horror\nlex: gothic novel atmosphere supernatural"}
+{"input": "what are the characteristics of gothic literature? /only:vec", "output": "vec: what are the defining characteristics and common elements of gothic literature?\nvec: how do gothic novels use setting, atmosphere, and the supernatural to create suspense and dread?"}
+{"input": "what are the characteristics of gothic literature? /only:hyde", "output": "hyde: Gothic literature features dark, brooding settings like castles, ruins, and isolated mansions. Common elements include supernatural events, madness, secrets, and heightened emotion. The atmosphere is oppressive and foreboding. Key works include Horace Walpole's The Castle of Otranto, Mary Shelley's Frankenstein, and Bram Stoker's Dracula."}
+{"input": "how to register a political party /only:lex", "output": "lex: register political party requirements\nlex: form new political party ballot access\nlex: political party registration petition signatures"}
+{"input": "how to register a political party /only:vec", "output": "vec: what is the legal process for registering a new political party in the United States?\nvec: what requirements must be met to officially form and register a political party for elections?"}
+{"input": "how to register a political party /only:hyde", "output": "hyde: Requirements to register a political party vary by state. Generally, you must file organizational documents with the secretary of state, collect a minimum number of petition signatures (often 1-5% of registered voters), adopt a party platform and bylaws, and hold a founding convention. Some states also require fielding candidates in a certain number of races."}
+{"input": "leather reclining lounge chairs /only:lex", "output": "lex: leather reclining lounge chair\nlex: leather recliner chair buy\nlex: reclining lounge chair living room"}
+{"input": "leather reclining lounge chairs /only:vec", "output": "vec: what are the best leather reclining lounge chairs for comfort and durability?\nvec: where can I buy a high-quality leather recliner chair for my living room?"}
+{"input": "leather reclining lounge chairs /only:hyde", "output": "hyde: The La-Z-Boy Kirkwood leather recliner features top-grain leather upholstery, a power reclining mechanism, and lumbar support. At $1,200, it's a mid-range option with a 10-year warranty. For premium choices, the Ekornes Stressless recliner offers ergonomic design with adjustable headrest and glide function starting at $2,500."}
+{"input": "how to write a scientific research proposal /only:lex", "output": "lex: write scientific research proposal\nlex: research proposal template structure\nlex: grant proposal methodology aims"}
+{"input": "how to write a scientific research proposal /only:vec", "output": "vec: how do you write a compelling scientific research proposal with clear aims and methodology?\nvec: what sections and structure should a scientific research proposal include?"}
+{"input": "how to write a scientific research proposal /only:hyde", "output": "hyde: A scientific research proposal typically includes: title, abstract, specific aims, background and significance, preliminary data, research design and methods, timeline, budget and justification, and references. The specific aims page is the most critical \u2014 state the problem, your hypothesis, and 2-3 measurable objectives clearly in one page."}
+{"input": "how to open a savings account /only:lex", "output": "lex: open savings account bank\nlex: savings account requirements documents\nlex: high yield savings account online"}
+{"input": "how to open a savings account /only:vec", "output": "vec: what is the process for opening a savings account at a bank or online institution?\nvec: what documents and minimum deposit do you need to open a savings account?"}
+{"input": "how to open a savings account /only:hyde", "output": "hyde: To open a savings account, choose a bank or credit union and compare interest rates (high-yield online accounts often offer 4-5% APY). You'll need a government-issued ID, Social Security number, and an initial deposit (often $25-$100). Apply online or in person. Link a checking account for easy transfers and set up automatic deposits."}
+{"input": "what is the role of e-commerce in modern business /only:lex", "output": "lex: e-commerce business online retail\nlex: e-commerce sales growth digital\nlex: online shopping platform business model"}
+{"input": "what is the role of e-commerce in modern business /only:vec", "output": "vec: how has e-commerce transformed the way businesses sell products and reach customers?\nvec: what role does e-commerce play in business strategy including direct-to-consumer and marketplace models?"}
+{"input": "what is the role of e-commerce in modern business /only:hyde", "output": "hyde: E-commerce enables businesses to sell products globally without physical storefronts. Companies use platforms like Shopify, Amazon Marketplace, and WooCommerce to reach customers online. In 2024, global e-commerce sales exceeded $6 trillion. Direct-to-consumer (DTC) brands cut out middlemen, while marketplaces aggregate sellers for one-stop shopping."}
+{"input": "tree climb /only:lex", "output": "lex: tree climbing techniques equipment\nlex: recreational tree climbing arborist\nlex: tree climbing harness rope"}
+{"input": "tree climb /only:vec", "output": "vec: what techniques and equipment are used for recreational or professional tree climbing?\nvec: how do arborists safely climb trees using ropes, harnesses, and climbing spurs?"}
+{"input": "tree climb /only:hyde", "output": "hyde: Recreational tree climbing uses a doubled-rope technique (DRT) with a throw line to set the rope over a branch. Climbers wear a saddle harness and ascend using mechanical ascenders or friction hitches like the Blake's hitch. Arborists use single-rope technique (SRT) for efficiency and may use climbing spurs for removals only."}
+{"input": "how to upgrade car headlights? /only:lex", "output": "lex: upgrade car headlights LED HID\nlex: replace headlight bulbs brighter\nlex: headlight upgrade installation"}
+{"input": "how to upgrade car headlights? /only:vec", "output": "vec: how do you upgrade your car's headlights to brighter LED or HID bulbs?\nvec: what are the steps for replacing stock halogen headlights with aftermarket LED headlights?"}
+{"input": "how to upgrade car headlights? /only:hyde", "output": "hyde: To upgrade from halogen to LED headlights, find your bulb size in the owner's manual (e.g., H11, 9005). Purchase a quality LED kit from brands like Hikari or Fahren. Remove the old bulb by twisting the retaining ring, insert the LED bulb, and connect the driver/ballast. Aim the headlights after installation to avoid blinding oncoming traffic."}
+{"input": "what are the themes of to kill a mockingbird? /only:lex", "output": "lex: To Kill a Mockingbird themes\nlex: To Kill a Mockingbird racial injustice innocence\nlex: Harper Lee themes moral courage"}
+{"input": "what are the themes of to kill a mockingbird? /only:vec", "output": "vec: what are the major themes explored in Harper Lee's To Kill a Mockingbird?\nvec: how does To Kill a Mockingbird address racial injustice, moral courage, and the loss of innocence?"}
+{"input": "what are the themes of to kill a mockingbird? /only:hyde", "output": "hyde: The central themes of To Kill a Mockingbird include racial injustice in the American South, as shown through Tom Robinson's trial. Moral courage is embodied by Atticus Finch, who defends Robinson despite social pressure. The loss of innocence is traced through Scout's growing awareness of prejudice and cruelty in Maycomb, Alabama."}
+{"input": "how to install a car roof rack? /only:lex", "output": "lex: install car roof rack\nlex: roof rack mounting crossbars\nlex: car roof rack installation guide"}
+{"input": "how to install a car roof rack? /only:vec", "output": "vec: how do you install a roof rack on a car with or without factory roof rails?\nvec: what are the steps for mounting crossbars and a roof rack system on a vehicle?"}
+{"input": "how to install a car roof rack? /only:hyde", "output": "hyde: For cars with factory side rails, slide the crossbar feet onto the rails and tighten the clamps at your desired spacing. For bare roofs, use a fit kit with clips that hook into the door frame. Torque the mounting hardware to the manufacturer's specification (usually 6-8 Nm). Test by pushing firmly on the bars to confirm they don't shift."}
+{"input": "why is deforestation a concern? /only:lex", "output": "lex: deforestation environmental impact\nlex: deforestation climate change biodiversity loss\nlex: tropical rainforest destruction causes"}
+{"input": "why is deforestation a concern? /only:vec", "output": "vec: why is deforestation considered a serious environmental problem and what are its consequences?\nvec: how does deforestation contribute to climate change, biodiversity loss, and soil erosion?"}
+{"input": "why is deforestation a concern? /only:hyde", "output": "hyde: Deforestation removes trees that absorb CO2, releasing stored carbon and accelerating climate change. Tropical forests hold over 50% of Earth's species \u2014 clearing them drives mass extinction. Deforested land loses topsoil to erosion, reducing agricultural productivity. The Amazon alone lost 10,000 square kilometers of forest in a single year."}
+{"input": "how do philosophers explore the nature of reality /only:lex", "output": "lex: philosophy nature of reality metaphysics\nlex: metaphysics ontology existence\nlex: philosophical realism idealism"}
+{"input": "how do philosophers explore the nature of reality /only:vec", "output": "vec: how have philosophers historically explored and debated the nature of reality and existence?\nvec: what are the main metaphysical positions on whether reality is fundamentally material, mental, or something else?"}
+{"input": "how do philosophers explore the nature of reality /only:hyde", "output": "hyde: Metaphysics, the branch of philosophy concerned with the nature of reality, asks questions like: What exists? Is the physical world all there is? Plato argued that true reality consists of abstract Forms. Descartes proposed mind-body dualism. Materialists hold that only physical matter exists, while idealists like Berkeley argued that reality is fundamentally mental."}
+{"input": "how to build a writing routine /only:lex", "output": "lex: writing routine daily habit\nlex: build writing practice discipline\nlex: writing schedule productivity"}
+{"input": "how to build a writing routine /only:vec", "output": "vec: how do you establish a consistent daily writing routine and maintain discipline?\nvec: what strategies do professional writers use to build and sustain a writing habit?"}
+{"input": "how to build a writing routine /only:hyde", "output": "hyde: Set a specific time each day for writing \u2014 morning works best for many writers because willpower is highest. Start with a modest goal of 300-500 words and increase gradually. Write in the same place to create environmental cues. Track your word count daily. Don't edit while drafting \u2014 the first draft's only job is to exist."}
+{"input": "what are public sentiments on immigration /only:lex", "output": "lex: public opinion immigration polls\nlex: immigration attitudes survey sentiment\nlex: immigration policy public views 2025 2026"}
+{"input": "what are public sentiments on immigration /only:vec", "output": "vec: what do recent polls and surveys reveal about public sentiment on immigration policy?\nvec: how do public attitudes toward immigration vary by country, political affiliation, and demographics?"}
+{"input": "what are public sentiments on immigration /only:hyde", "output": "hyde: A 2025 Gallup poll found that 28% of Americans wanted immigration increased, 36% wanted it decreased, and 33% wanted it kept at current levels. Views split sharply along party lines: 55% of Democrats favored more immigration versus 11% of Republicans. In Europe, surveys showed rising concern about integration alongside recognition of labor market needs."}
+{"input": "how do people practice meditation in buddhism /only:lex", "output": "lex: Buddhist meditation practice techniques\nlex: Vipassana Zen meditation Buddhism\nlex: mindfulness meditation Buddhist traditions"}
+{"input": "how do people practice meditation in buddhism /only:vec", "output": "vec: what are the main forms of meditation practiced in Buddhism and how are they performed?\nvec: how do Vipassana, Zen, and Tibetan Buddhist meditation techniques differ from each other?"}
+{"input": "how do people practice meditation in buddhism /only:hyde", "output": "hyde: Buddhist meditation includes two main types: samatha (calm abiding) and vipassana (insight). In Vipassana, practitioners observe bodily sensations and mental events with equanimity. Zen meditation (zazen) involves sitting with awareness of breath, often facing a wall. Tibetan Buddhism adds visualization practices and mantra recitation. All traditions emphasize mindful awareness."}
+{"input": "how to edit in lightroom /only:lex", "output": "lex: edit photos Adobe Lightroom\nlex: Lightroom editing tutorial sliders\nlex: Lightroom develop module adjustments"}
+{"input": "how to edit in lightroom /only:vec", "output": "vec: how do you edit and enhance photos using Adobe Lightroom's develop module?\nvec: what are the essential Lightroom editing steps for exposure, color, and tone adjustments?"}
+{"input": "how to edit in lightroom /only:hyde", "output": "hyde: In Lightroom's Develop module, start with the Basic panel: adjust Exposure for overall brightness, then Highlights and Shadows to recover detail. Set White Balance using the eyedropper or Temperature/Tint sliders. Increase Clarity for midtone contrast and Vibrance for subtle color boost. Use the HSL panel to fine-tune individual colors."}
+{"input": "how does the philosophy of education explore learning /only:lex", "output": "lex: philosophy of education learning theory\nlex: educational philosophy Dewey Montessori\nlex: epistemology education pedagogy"}
+{"input": "how does the philosophy of education explore learning /only:vec", "output": "vec: how do educational philosophers like Dewey and Montessori theorize about the nature of learning?\nvec: what are the major philosophical approaches to education and how do they shape teaching methods?"}
+{"input": "how does the philosophy of education explore learning /only:hyde", "output": "hyde: John Dewey's pragmatism views learning as experiential \u2014 students learn by doing and reflecting. Montessori emphasizes self-directed activity and hands-on learning in prepared environments. Constructivism holds that learners build knowledge actively rather than passively receiving it. Each philosophy leads to different classroom structures and teaching practices."}
+{"input": "how to make a family budget? /only:lex", "output": "lex: family budget plan household\nlex: family budget spreadsheet expenses\nlex: household budgeting categories"}
+{"input": "how to make a family budget? /only:vec", "output": "vec: how do you create a family budget that accounts for all household income and expenses?\nvec: what categories and tools should you use when building a family budget?"}
+{"input": "how to make a family budget? /only:hyde", "output": "hyde: List all family income sources including salaries, freelance work, and benefits. Categorize expenses into fixed (mortgage, insurance, utilities), variable (groceries, gas, clothing), and discretionary (dining out, entertainment). Allocate funds using the envelope method or a budgeting app like Mint or YNAB. Review spending together monthly."}
+{"input": "what is the significance of the ten commandments /only:lex", "output": "lex: Ten Commandments significance Bible\nlex: Ten Commandments Moses Judaism Christianity\nlex: Decalogue moral law religious"}
+{"input": "what is the significance of the ten commandments /only:vec", "output": "vec: what is the religious and historical significance of the Ten Commandments in Judaism and Christianity?\nvec: how have the Ten Commandments influenced Western law, ethics, and moral codes?"}
+{"input": "what is the significance of the ten commandments /only:hyde", "output": "hyde: The Ten Commandments (Decalogue) were given by God to Moses on Mount Sinai, as recorded in Exodus 20 and Deuteronomy 5. They form the foundational moral code of Judaism and Christianity, covering duties to God (no other gods, no idols, keep the Sabbath) and duties to others (honor parents, do not murder, steal, or lie)."}
+{"input": "what is creative non-fiction? /only:lex", "output": "lex: creative non-fiction genre writing\nlex: creative nonfiction memoir essay narrative\nlex: literary nonfiction storytelling"}
+{"input": "what is creative non-fiction? /only:vec", "output": "vec: what is creative non-fiction and how does it differ from traditional journalism or academic writing?\nvec: what techniques do creative non-fiction writers use to tell true stories in a literary way?"}
+{"input": "what is creative non-fiction? /only:hyde", "output": "hyde: Creative non-fiction uses literary techniques \u2014 narrative arc, scene-setting, dialogue, and vivid description \u2014 to tell true stories. Subgenres include memoir, personal essay, literary journalism, and nature writing. Unlike standard reporting, the writer's voice and perspective are central. Examples include Truman Capote's In Cold Blood and Joan Didion's essays."}
+{"input": "air filter /only:lex", "output": "lex: air filter replacement HVAC\nlex: car engine air filter\nlex: home air purifier HEPA filter"}
+{"input": "air filter /only:vec", "output": "vec: how often should you replace an air filter in your car engine or home HVAC system?\nvec: what types of air filters are available for home air purifiers and what do HEPA ratings mean?"}
+{"input": "air filter /only:hyde", "output": "hyde: Replace your car's engine air filter every 15,000-30,000 miles depending on driving conditions. Home HVAC filters should be changed every 1-3 months. HEPA filters capture 99.97% of particles 0.3 microns or larger. MERV ratings from 1-16 indicate filtration efficiency \u2014 MERV 13+ is recommended for allergy sufferers."}
+{"input": "what is the periodic table /only:lex", "output": "lex: periodic table elements chemistry\nlex: periodic table groups periods atomic number\nlex: Mendeleev periodic table organization"}
+{"input": "what is the periodic table /only:vec", "output": "vec: what is the periodic table and how are chemical elements organized within it?\nvec: how did Mendeleev create the periodic table and what patterns does it reveal about element properties?"}
+{"input": "what is the periodic table /only:hyde", "output": "hyde: The periodic table organizes all known chemical elements by increasing atomic number into rows (periods) and columns (groups). Elements in the same group share similar chemical properties because they have the same number of valence electrons. Dmitri Mendeleev published the first widely recognized periodic table in 1869, predicting undiscovered elements."}
+{"input": "how to use green screen /only:lex", "output": "lex: green screen chroma key setup\nlex: green screen video editing background\nlex: green screen lighting technique"}
+{"input": "how to use green screen /only:vec", "output": "vec: how do you set up and use a green screen for video production and chroma key compositing?\nvec: what lighting and camera settings are needed for clean green screen footage?"}
+{"input": "how to use green screen /only:hyde", "output": "hyde: Set up an evenly lit green screen with no wrinkles or shadows. Place the subject at least 6 feet in front of the screen to avoid green spill. Use two softbox lights at 45-degree angles on the screen and separate lights for the subject. In post-production, apply chroma key in software like DaVinci Resolve or After Effects to replace the green background."}
+{"input": "what are the latest fashion trends 2023? /only:lex", "output": "lex: fashion trends 2023 2024 2025\nlex: latest fashion trends clothing style\nlex: 2023 fashion runway trends"}
+{"input": "what are the latest fashion trends 2023? /only:vec", "output": "vec: what were the top fashion trends in 2023 and how have they evolved into 2024-2025?\nvec: what clothing styles, colors, and silhouettes defined fashion trends in recent years?"}
+{"input": "what are the latest fashion trends 2023? /only:hyde", "output": "hyde: Key fashion trends in 2023 included quiet luxury with understated neutral tones and premium fabrics, oversized blazers and tailored wide-leg trousers, sheer fabrics, ballet flats, and the revival of denim-on-denim. Barbiecore pink carried over from 2022, while earth tones and burgundy gained momentum heading into 2024."}
+{"input": "how to conduct field research /only:lex", "output": "lex: field research methods data collection\nlex: conduct field study observation interview\nlex: ethnographic fieldwork techniques"}
+{"input": "how to conduct field research /only:vec", "output": "vec: how do researchers plan and conduct field research including observation and interviews?\nvec: what are the methods and ethical considerations involved in conducting ethnographic field research?"}
+{"input": "how to conduct field research /only:hyde", "output": "hyde: Field research involves collecting data in natural settings through observation, interviews, and surveys. Begin with a clear research question and ethical approval. Use participant observation to immerse yourself in the environment. Take detailed field notes immediately after each session. Triangulate data from multiple sources to strengthen validity."}
+{"input": "digital currencies /only:lex", "output": "lex: digital currency cryptocurrency Bitcoin\nlex: digital currency CBDC blockchain\nlex: cryptocurrency exchange trading"}
+{"input": "digital currencies /only:vec", "output": "vec: what are digital currencies including cryptocurrencies and central bank digital currencies (CBDCs)?\nvec: how do digital currencies like Bitcoin and Ethereum work using blockchain technology?"}
+{"input": "digital currencies /only:hyde", "output": "hyde: Digital currencies exist only in electronic form and include cryptocurrencies like Bitcoin and Ethereum, which use decentralized blockchain networks, and central bank digital currencies (CBDCs) issued by governments. Bitcoin uses proof-of-work consensus while Ethereum moved to proof-of-stake. Over 130 countries are exploring or piloting CBDCs as of 2025."}
+{"input": "tree grow /only:lex", "output": "lex: tree growth rate species\nlex: grow trees planting care\nlex: tree growth stages seedling mature"}
+{"input": "tree grow /only:vec", "output": "vec: how fast do different tree species grow and what conditions promote healthy tree growth?\nvec: what are the stages of tree growth from seedling to mature tree and how do you care for young trees?"}
+{"input": "tree grow /only:hyde", "output": "hyde: Tree growth rates vary widely by species. Fast-growing trees like hybrid poplar and willow can add 3-5 feet per year, while oaks grow 1-2 feet annually. For healthy growth, plant in appropriate soil with adequate drainage, water deeply during the first two years, mulch around the base (not touching the trunk), and prune to establish strong structure."}
+{"input": "sail set /only:lex", "output": "lex: sail set trim sailing\nlex: setting sails rigging sailboat\nlex: sail trim wind angle"}
+{"input": "sail set /only:vec", "output": "vec: how do you properly set and trim sails on a sailboat for different wind conditions?\nvec: what is the correct technique for setting a mainsail and jib when sailing upwind or downwind?"}
+{"input": "sail set /only:hyde", "output": "hyde: To set the mainsail, head into the wind and raise the halyard while feeding the luff into the mast track. Tension the outhaul and cunningham based on wind strength. When sailing upwind, trim the mainsheet until the telltales flow evenly. Ease the sheet when reaching or running. Adjust the jib sheet so the luff telltales break evenly."}
+{"input": "how to apply the scientific method /only:lex", "output": "lex: scientific method steps process\nlex: apply scientific method experiment hypothesis\nlex: scientific method observation data analysis"}
+{"input": "how to apply the scientific method /only:vec", "output": "vec: what are the steps of the scientific method and how do you apply them to an experiment?\nvec: how do scientists use the scientific method to test hypotheses and draw conclusions?"}
+{"input": "how to apply the scientific method /only:hyde", "output": "hyde: The scientific method follows these steps: (1) Observe a phenomenon, (2) Ask a question, (3) Form a testable hypothesis, (4) Design and conduct an experiment with controlled variables, (5) Collect and analyze data, (6) Draw conclusions \u2014 does the evidence support or refute the hypothesis? (7) Communicate results and invite replication."}
+{"input": "what is the role of the holy spirit in christianity? /only:lex", "output": "lex: Holy Spirit Christianity role\nlex: Holy Spirit Trinity Christian theology\nlex: Holy Spirit gifts fruits Bible"}
+{"input": "what is the role of the holy spirit in christianity? /only:vec", "output": "vec: what role does the Holy Spirit play in Christian theology and the life of believers?\nvec: how is the Holy Spirit understood within the doctrine of the Trinity in Christianity?"}
+{"input": "what is the role of the holy spirit in christianity? /only:hyde", "output": "hyde: In Christian theology, the Holy Spirit is the third person of the Trinity \u2014 coequal with the Father and the Son. The Spirit convicts of sin, regenerates believers at conversion, indwells Christians as a guide and comforter, and empowers them with spiritual gifts (1 Corinthians 12). At Pentecost, the Spirit descended on the apostles, enabling them to preach."}
+{"input": "code review /only:lex", "output": "lex: code review pull request\nlex: code review checklist guidelines\nlex: peer code review feedback"}
+{"input": "code review /only:vec", "output": "vec: what are the best practices for conducting an effective code review on a pull request?\nvec: what should reviewers look for during a code review including bugs, readability, and architecture?"}
+{"input": "code review /only:hyde", "output": "hyde: During a code review, check for correctness, readability, and maintainability. Look for edge cases, error handling, and potential security issues. Verify that naming conventions are clear and tests cover the new code. Provide constructive feedback with specific suggestions rather than vague criticism. Approve only when the code is production-ready."}
+{"input": "how to manage personal finances /only:lex", "output": "lex: personal finance management\nlex: manage money budgeting saving investing\nlex: personal financial planning"}
+{"input": "how to manage personal finances /only:vec", "output": "vec: what are the key steps for managing your personal finances including budgeting, saving, and investing?\nvec: how should you organize your personal finances to build wealth and avoid debt?"}
+{"input": "how to manage personal finances /only:hyde", "output": "hyde: Start with a budget tracking all income and expenses. Build an emergency fund covering 3-6 months of expenses. Pay off high-interest debt aggressively. Contribute enough to your 401(k) to get the employer match, then fund a Roth IRA. Automate savings and investments. Review your financial plan quarterly and adjust as income or goals change."}
+{"input": "how to understand legislative documents /only:lex", "output": "lex: read legislative documents bills statutes\nlex: understand legislation legal language\nlex: interpreting bills acts laws"}
+{"input": "how to understand legislative documents /only:vec", "output": "vec: how do you read and interpret legislative documents such as bills, statutes, and regulations?\nvec: what techniques help non-lawyers understand the language and structure of legislative texts?"}
+{"input": "how to understand legislative documents /only:hyde", "output": "hyde: Legislative documents follow a standard structure: the title, enacting clause, definitions section, substantive provisions, and effective date. Start with the definitions section \u2014 legal terms often have specific meanings different from everyday use. Read the \"findings\" or \"purpose\" section for context. Track cross-references to other statutes. Legislative summaries from CRS or CBO can provide plain-language explanations."}
+{"input": "how to participate in public policy discussions /only:lex", "output": "lex: participate public policy discussion civic\nlex: public policy engagement town hall\nlex: citizen participation policy advocacy"}
+{"input": "how to participate in public policy discussions /only:vec", "output": "vec: how can citizens effectively participate in public policy discussions and influence government decisions?\nvec: what are the ways individuals can engage in public policy debates at the local, state, and federal level?"}
+{"input": "how to participate in public policy discussions /only:hyde", "output": "hyde: Attend town hall meetings and public comment sessions held by local and state government bodies. Submit written comments during rulemaking periods \u2014 federal agencies post proposed rules on regulations.gov. Contact your elected representatives by phone or email. Join advocacy organizations that align with your policy priorities and participate in their campaigns."}
+{"input": "what is the role of philosophy in religion? /only:lex", "output": "lex: philosophy of religion theology\nlex: philosophical arguments God existence\nlex: religion philosophy relationship faith reason"}
+{"input": "what is the role of philosophy in religion? /only:vec", "output": "vec: what role does philosophy play in examining and understanding religious beliefs and concepts?\nvec: how do philosophers analyze religious claims about God, the soul, and the meaning of existence?"}
+{"input": "what is the role of philosophy in religion? /only:hyde", "output": "hyde: Philosophy of religion examines fundamental questions that religions address: Does God exist? What is the nature of the soul? How can evil exist if God is omnipotent? Philosophers evaluate arguments for God's existence (cosmological, teleological, ontological) and critique them. The field also explores the relationship between faith and reason, asking whether religious belief can be rationally justified."}
+{"input": "what is outdoor survival training? /only:lex", "output": "lex: outdoor survival training wilderness\nlex: survival skills shelter fire water\nlex: wilderness survival course"}
+{"input": "what is outdoor survival training? /only:vec", "output": "vec: what does outdoor survival training involve and what skills does it teach?\nvec: how do wilderness survival courses teach people to find shelter, water, fire, and food in the wild?"}
+{"input": "what is outdoor survival training? /only:hyde", "output": "hyde: Outdoor survival training teaches skills needed to stay alive in wilderness emergencies. Core topics include building emergency shelters from natural materials, finding and purifying water, starting fire without matches using a ferro rod or bow drill, signaling for rescue, and basic navigation without GPS. Courses range from weekend workshops to multi-week immersive programs."}
+{"input": "what is the history of the jazz age /only:lex", "output": "lex: Jazz Age history 1920s\nlex: Jazz Age Harlem Renaissance Roaring Twenties\nlex: jazz music history Louis Armstrong"}
+{"input": "what is the history of the jazz age /only:vec", "output": "vec: what was the Jazz Age and how did jazz music shape American culture in the 1920s?\nvec: how did the Jazz Age connect to the Harlem Renaissance and the social changes of the Roaring Twenties?"}
+{"input": "what is the history of the jazz age /only:hyde", "output": "hyde: The Jazz Age, spanning roughly 1920-1929, was a cultural movement defined by the rise of jazz music, loosened social mores, and economic prosperity. Jazz originated in New Orleans and spread to Chicago and New York. The Harlem Renaissance saw Black artists, musicians, and writers flourish. Louis Armstrong, Duke Ellington, and Bessie Smith became icons. The era ended with the stock market crash of 1929."}
+{"input": "how to analyze government budgets /only:lex", "output": "lex: analyze government budget fiscal\nlex: government budget analysis revenue expenditure\nlex: federal state budget breakdown"}
+{"input": "how to analyze government budgets /only:vec", "output": "vec: how do you read and analyze a government budget to understand spending priorities and fiscal health?\nvec: what tools and frameworks are used to evaluate government budget allocations and deficits?"}
+{"input": "how to analyze government budgets /only:hyde", "output": "hyde: To analyze a government budget, start with the summary tables showing total revenue, total expenditure, and the deficit or surplus. Compare allocations across categories: defense, healthcare, education, infrastructure. Track year-over-year changes to identify spending trends. Examine revenue sources (income tax, sales tax, borrowing) and assess whether projected growth assumptions are realistic."}
+{"input": "how to learn python programming? /only:lex", "output": "lex: learn Python programming beginner\nlex: Python tutorial course exercises\nlex: Python programming fundamentals syntax"}
+{"input": "how to learn python programming? /only:vec", "output": "vec: what is the best way for a beginner to learn Python programming from scratch?\nvec: what resources, courses, and projects should someone use to learn Python programming?"}
+{"input": "how to learn python programming? /only:hyde", "output": "hyde: Start with Python's official tutorial at docs.python.org. Learn the basics: variables, data types, loops, conditionals, and functions. Practice on sites like LeetCode or HackerRank. Build small projects \u2014 a calculator, a to-do list, or a web scraper using requests and BeautifulSoup. Automate the Boring Stuff with Python is a popular free book for beginners."}
+{"input": "what is the gospel of wealth /only:lex", "output": "lex: Gospel of Wealth Andrew Carnegie\nlex: Gospel of Wealth philanthropy gilded age"}
+{"input": "what is the gospel of wealth /only:vec", "output": "vec: what is the Gospel of Wealth written by Andrew Carnegie and what does it argue about the duty of the rich?\nvec: how did Andrew Carnegie's Gospel of Wealth influence philanthropy and attitudes toward wealth in America?"}
+{"input": "what is the gospel of wealth /only:hyde", "output": "hyde: The Gospel of Wealth is an 1889 essay by Andrew Carnegie arguing that the wealthy have a moral obligation to distribute their surplus wealth for the public good. Carnegie believed that rich individuals were better suited than government to direct resources toward education, libraries, and civic institutions. He practiced this philosophy by funding over 2,500 public libraries."}
+{"input": "how do various religions interpret the concept of god? /only:lex", "output": "lex: concept of God religions monotheism polytheism\nlex: God Christianity Islam Hinduism Judaism\nlex: religious interpretations divine nature"}
+{"input": "how do various religions interpret the concept of god? /only:vec", "output": "vec: how do different world religions like Christianity, Islam, Hinduism, and Buddhism understand the concept of God?\nvec: what are the key differences between monotheistic, polytheistic, and non-theistic religious views of God?"}
+{"input": "how do various religions interpret the concept of god? /only:hyde", "output": "hyde: Christianity, Islam, and Judaism are monotheistic \u2014 they worship one God, though Christianity distinguishes three persons in the Trinity. Hinduism includes both monotheistic and polytheistic traditions: Brahman is the ultimate reality, while deities like Vishnu and Shiva represent aspects of it. Buddhism is non-theistic, focusing on awakening rather than worship of a creator God."}
+{"input": "what is satire /only:lex", "output": "lex: satire literary device definition\nlex: satire examples humor criticism\nlex: satirical writing Swift Orwell"}
+{"input": "what is satire /only:vec", "output": "vec: what is satire as a literary form and how does it use humor to criticize people, institutions, or society?\nvec: what are famous examples of satire in literature, television, and political commentary?"}
+{"input": "what is satire /only:hyde", "output": "hyde: Satire uses irony, exaggeration, and ridicule to expose and criticize foolishness or corruption. Jonathan Swift's A Modest Proposal satirized British policy toward Ireland by suggesting the poor sell their children as food. George Orwell's Animal Farm satirized Soviet totalitarianism. Modern satire appears in shows like The Daily Show and publications like The Onion."}
+{"input": "json serial /only:lex", "output": "lex: JSON serialization deserialization\nlex: JSON serialize object string\nlex: JSON stringify parse encoding"}
+{"input": "json serial /only:vec", "output": "vec: how do you serialize objects to JSON and deserialize JSON strings back to objects in programming?\nvec: what functions are used for JSON serialization in Python, JavaScript, and other languages?"}
+{"input": "json serial /only:hyde", "output": "hyde: JSON serialization converts an object into a JSON string for storage or transmission. In JavaScript, JSON.stringify(obj) serializes and JSON.parse(str) deserializes. In Python, json.dumps(obj) converts to a string and json.loads(str) parses back. Custom serialization for dates or complex types requires encoder/decoder overrides."}
+{"input": "how to fix car air conditioning? /only:lex", "output": "lex: fix car air conditioning AC repair\nlex: car AC not blowing cold recharge\nlex: automotive AC compressor refrigerant"}
+{"input": "how to fix car air conditioning? /only:vec", "output": "vec: how do you diagnose and fix a car air conditioning system that is not blowing cold air?\nvec: what are the common causes of car AC failure and how do you recharge the refrigerant?"}
+{"input": "how to fix car air conditioning? /only:hyde", "output": "hyde: If your car AC blows warm air, check the refrigerant level first \u2014 low refrigerant is the most common cause. Use a recharge kit with R-134a (or R-1234yf for newer cars) and a pressure gauge. If the compressor clutch doesn't engage, check the fuse and relay. A leak requires UV dye detection and repair before recharging. Cabin filter clogs can also reduce airflow."}
+{"input": "what is moral absolutism /only:lex", "output": "lex: moral absolutism ethics definition\nlex: moral absolutism versus relativism\nlex: absolute moral principles deontology"}
+{"input": "what is moral absolutism /only:vec", "output": "vec: what is moral absolutism and how does it differ from moral relativism in ethical philosophy?\nvec: what are the arguments for and against the view that some moral rules are universally true?"}
+{"input": "what is moral absolutism /only:hyde", "output": "hyde: Moral absolutism holds that certain actions are intrinsically right or wrong regardless of context, culture, or consequences. For example, an absolutist would say lying is always wrong, even to protect someone. This view aligns with Kantian deontology and natural law theory. Critics argue it fails to account for moral dilemmas where absolute rules conflict."}
+{"input": "world capitals quiz /only:lex", "output": "lex: world capitals quiz tutorial\nlex: world capitals quiz guide\nlex: world capitals quiz examples"}
+{"input": "world capitals quiz /only:vec", "output": "vec: guide for world capitals quiz\nvec: how to world capitals quiz"}
+{"input": "trivia facts about space /only:lex", "output": "lex: trivia facts about space examples\nlex: trivia facts about space best practices\nlex: trivia facts about space guide"}
+{"input": "trivia facts about space /only:vec", "output": "vec: understanding trivia facts about space\nvec: guide for trivia facts about space"}
+{"input": "did you know history /only:lex", "output": "lex: did you know history examples\nlex: did you know history guide\nlex: did you know history best practices"}
+{"input": "did you know history /only:vec", "output": "vec: complete did you know history reference\nvec: learn about did you know history"}
+{"input": "random science facts /only:lex", "output": "lex: random science facts tutorial\nlex: random science facts guide\nlex: random science facts best practices"}
+{"input": "random science facts /only:vec", "output": "vec: how to random science facts\nvec: guide for random science facts"}
+{"input": "famous inventions timeline /only:lex", "output": "lex: famous inventions timeline best practices\nlex: famous inventions timeline documentation\nlex: famous inventions timeline tutorial"}
+{"input": "famous inventions timeline /only:vec", "output": "vec: how to famous inventions timeline\nvec: complete famous inventions timeline reference"}
+{"input": "world records list /only:lex", "output": "lex: world records list guide\nlex: world records list tutorial\nlex: world records list best practices"}
+{"input": "world records list /only:vec", "output": "vec: how to world records list\nvec: understanding world records list"}
+{"input": "fun geography facts /only:lex", "output": "lex: fun geography facts documentation\nlex: fun geography facts guide\nlex: fun geography facts examples"}
+{"input": "fun geography facts /only:vec", "output": "vec: guide for fun geography facts\nvec: understanding fun geography facts"}
+{"input": "historical trivia questions /only:lex", "output": "lex: historical trivia questions documentation\nlex: historical trivia questions guide\nlex: historical trivia questions best practices"}
+{"input": "historical trivia questions /only:vec", "output": "vec: how to historical trivia questions\nvec: guide for historical trivia questions"}
+{"input": "animal trivia facts /only:lex", "output": "lex: animal trivia facts best practices\nlex: animal trivia facts tutorial\nlex: animal trivia facts guide"}
+{"input": "animal trivia facts /only:vec", "output": "vec: complete animal trivia facts reference\nvec: guide for animal trivia facts"}
+{"input": "sports trivia records /only:lex", "output": "lex: sports trivia records examples\nlex: sports trivia records documentation\nlex: sports trivia records guide"}
+{"input": "sports trivia records /only:vec", "output": "vec: learn about sports trivia records\nvec: how to sports trivia records"}
+{"input": "largest countries by area /only:lex", "output": "lex: largest countries by area guide\nlex: largest countries by area documentation\nlex: largest countries by area best practices"}
+{"input": "largest countries by area /only:vec", "output": "vec: understanding largest countries by area\nvec: complete largest countries by area reference"}
+{"input": "rivers that cross multiple countries /only:lex", "output": "lex: rivers that cross multiple countries documentation\nlex: rivers that cross multiple countries tutorial\nlex: rivers that cross multiple countries guide"}
+{"input": "rivers that cross multiple countries /only:vec", "output": "vec: complete rivers that cross multiple countries reference\nvec: understanding rivers that cross multiple countries"}
+{"input": "highest mountain peaks /only:lex", "output": "lex: highest mountain peaks documentation\nlex: highest mountain peaks examples\nlex: highest mountain peaks guide"}
+{"input": "highest mountain peaks /only:vec", "output": "vec: understanding highest mountain peaks\nvec: guide for highest mountain peaks"}
+{"input": "desert climate zones /only:lex", "output": "lex: desert climate zones examples\nlex: desert climate zones documentation\nlex: desert climate zones tutorial"}
+{"input": "desert climate zones /only:vec", "output": "vec: guide for desert climate zones\nvec: how to desert climate zones"}
+{"input": "island nations list /only:lex", "output": "lex: island nations list guide\nlex: island nations list best practices\nlex: island nations list documentation"}
+{"input": "island nations list /only:vec", "output": "vec: understanding island nations list\nvec: how to island nations list"}
+{"input": "capital cities europe /only:lex", "output": "lex: capital cities europe best practices\nlex: capital cities europe documentation\nlex: capital cities europe tutorial"}
+{"input": "capital cities europe /only:vec", "output": "vec: guide for capital cities europe\nvec: learn about capital cities europe"}
+{"input": "population by continent /only:lex", "output": "lex: population by continent guide\nlex: population by continent examples\nlex: population by continent best practices"}
+{"input": "population by continent /only:vec", "output": "vec: learn about population by continent\nvec: understanding population by continent"}
+{"input": "time zones map /only:lex", "output": "lex: time zones map tutorial\nlex: time zones map guide\nlex: time zones map documentation"}
+{"input": "time zones map /only:vec", "output": "vec: how to time zones map\nvec: complete time zones map reference"}
+{"input": "latitude longitude coordinates /only:lex", "output": "lex: latitude longitude coordinates best practices\nlex: latitude longitude coordinates documentation\nlex: latitude longitude coordinates tutorial"}
+{"input": "latitude longitude coordinates /only:vec", "output": "vec: complete latitude longitude coordinates reference\nvec: how to latitude longitude coordinates"}
+{"input": "borders between countries /only:lex", "output": "lex: borders between countries tutorial\nlex: borders between countries documentation\nlex: borders between countries best practices"}
+{"input": "borders between countries /only:vec", "output": "vec: learn about borders between countries\nvec: complete borders between countries reference"}
+{"input": "ocean currents patterns /only:lex", "output": "lex: ocean currents patterns tutorial\nlex: ocean currents patterns examples\nlex: ocean currents patterns documentation"}
+{"input": "ocean currents patterns /only:vec", "output": "vec: understanding ocean currents patterns\nvec: how to ocean currents patterns"}
+{"input": "tectonic plate boundaries /only:lex", "output": "lex: tectonic plate boundaries examples\nlex: tectonic plate boundaries documentation\nlex: tectonic plate boundaries best practices"}
+{"input": "tectonic plate boundaries /only:vec", "output": "vec: complete tectonic plate boundaries reference\nvec: learn about tectonic plate boundaries"}
+{"input": "climate zones earth /only:lex", "output": "lex: climate zones earth tutorial\nlex: climate zones earth guide\nlex: climate zones earth documentation"}
+{"input": "climate zones earth /only:vec", "output": "vec: learn about climate zones earth\nvec: guide for climate zones earth"}
+{"input": "stoicism daily practice /only:lex", "output": "lex: stoicism daily practice examples\nlex: stoicism daily practice best practices\nlex: stoicism daily practice tutorial"}
+{"input": "stoicism daily practice /only:vec", "output": "vec: guide for stoicism daily practice\nvec: learn about stoicism daily practice"}
+{"input": "existentialism meaning life /only:lex", "output": "lex: existentialism meaning life examples\nlex: existentialism meaning life guide\nlex: existentialism meaning life documentation"}
+{"input": "existentialism meaning life /only:vec", "output": "vec: learn about existentialism meaning life\nvec: complete existentialism meaning life reference"}
+{"input": "utilitarianism ethics explained /only:lex", "output": "lex: utilitarianism ethics explained tutorial\nlex: utilitarianism ethics explained guide\nlex: utilitarianism ethics explained examples"}
+{"input": "utilitarianism ethics explained /only:vec", "output": "vec: guide for utilitarianism ethics explained\nvec: complete utilitarianism ethics explained reference"}
+{"input": "kant categorical imperative /only:lex", "output": "lex: kant categorical imperative best practices\nlex: kant categorical imperative guide\nlex: kant categorical imperative tutorial"}
+{"input": "kant categorical imperative /only:vec", "output": "vec: complete kant categorical imperative reference\nvec: how to kant categorical imperative"}
+{"input": "free will determinism debate /only:lex", "output": "lex: free will determinism debate documentation\nlex: free will determinism debate examples\nlex: free will determinism debate tutorial"}
+{"input": "free will determinism debate /only:vec", "output": "vec: complete free will determinism debate reference\nvec: learn about free will determinism debate"}
+{"input": "nietzsche will to power /only:lex", "output": "lex: nietzsche will to power guide\nlex: nietzsche will to power best practices\nlex: nietzsche will to power examples"}
+{"input": "nietzsche will to power /only:vec", "output": "vec: complete nietzsche will to power reference\nvec: learn about nietzsche will to power"}
+{"input": "socrates method questioning /only:lex", "output": "lex: socrates method questioning guide\nlex: socrates method questioning tutorial\nlex: socrates method questioning examples"}
+{"input": "socrates method questioning /only:vec", "output": "vec: understanding socrates method questioning\nvec: complete socrates method questioning reference"}
+{"input": "plato theory forms /only:lex", "output": "lex: plato theory forms tutorial\nlex: plato theory forms best practices\nlex: plato theory forms guide"}
+{"input": "plato theory forms /only:vec", "output": "vec: how to plato theory forms\nvec: guide for plato theory forms"}
+{"input": "aristotle virtue ethics /only:lex", "output": "lex: aristotle virtue ethics documentation\nlex: aristotle virtue ethics best practices\nlex: aristotle virtue ethics tutorial"}
+{"input": "aristotle virtue ethics /only:vec", "output": "vec: complete aristotle virtue ethics reference\nvec: how to aristotle virtue ethics"}
+{"input": "descartes cogito ergo sum /only:lex", "output": "lex: descartes cogito ergo sum guide\nlex: descartes cogito ergo sum examples\nlex: descartes cogito ergo sum best practices"}
+{"input": "descartes cogito ergo sum /only:vec", "output": "vec: complete descartes cogito ergo sum reference\nvec: learn about descartes cogito ergo sum"}
+{"input": "logic propositional calculus /only:lex", "output": "lex: logic propositional calculus documentation\nlex: logic propositional calculus tutorial\nlex: logic propositional calculus guide"}
+{"input": "logic propositional calculus /only:vec", "output": "vec: understanding logic propositional calculus\nvec: complete logic propositional calculus reference"}
+{"input": "epistemology knowledge theory /only:lex", "output": "lex: epistemology knowledge theory examples\nlex: epistemology knowledge theory tutorial\nlex: epistemology knowledge theory documentation"}
+{"input": "epistemology knowledge theory /only:vec", "output": "vec: learn about epistemology knowledge theory\nvec: complete epistemology knowledge theory reference"}
+{"input": "metaphysics existence reality /only:lex", "output": "lex: metaphysics existence reality tutorial\nlex: metaphysics existence reality best practices\nlex: metaphysics existence reality guide"}
+{"input": "metaphysics existence reality /only:vec", "output": "vec: understanding metaphysics existence reality\nvec: how to metaphysics existence reality"}
+{"input": "ancient civilizations timeline /only:lex", "output": "lex: ancient civilizations timeline documentation\nlex: ancient civilizations timeline examples\nlex: ancient civilizations timeline best practices"}
+{"input": "ancient civilizations timeline /only:vec", "output": "vec: complete ancient civilizations timeline reference\nvec: understanding ancient civilizations timeline"}
+{"input": "roman empire fall reasons /only:lex", "output": "lex: roman empire fall reasons guide\nlex: roman empire fall reasons best practices\nlex: roman empire fall reasons documentation"}
+{"input": "roman empire fall reasons /only:vec", "output": "vec: guide for roman empire fall reasons\nvec: how to roman empire fall reasons"}
+{"input": "medieval period events /only:lex", "output": "lex: medieval period events documentation\nlex: medieval period events best practices\nlex: medieval period events tutorial"}
+{"input": "medieval period events /only:vec", "output": "vec: learn about medieval period events\nvec: how to medieval period events"}
+{"input": "renaissance art movement /only:lex", "output": "lex: renaissance art movement examples\nlex: renaissance art movement guide\nlex: renaissance art movement documentation"}
+{"input": "renaissance art movement /only:vec", "output": "vec: understanding renaissance art movement\nvec: how to renaissance art movement"}
+{"input": "industrial revolution inventions /only:lex", "output": "lex: industrial revolution inventions tutorial\nlex: industrial revolution inventions best practices\nlex: industrial revolution inventions examples"}
+{"input": "industrial revolution inventions /only:vec", "output": "vec: how to industrial revolution inventions\nvec: guide for industrial revolution inventions"}
+{"input": "world war i causes /only:lex", "output": "lex: world war i causes tutorial\nlex: world war i causes documentation\nlex: world war i causes best practices"}
+{"input": "world war i causes /only:vec", "output": "vec: learn about world war i causes\nvec: how to world war i causes"}
+{"input": "cold war key events /only:lex", "output": "lex: cold war key events best practices\nlex: cold war key events tutorial\nlex: cold war key events guide"}
+{"input": "cold war key events /only:vec", "output": "vec: understanding cold war key events\nvec: learn about cold war key events"}
+{"input": "french revolution timeline /only:lex", "output": "lex: french revolution timeline tutorial\nlex: french revolution timeline documentation\nlex: french revolution timeline guide"}
+{"input": "french revolution timeline /only:vec", "output": "vec: understanding french revolution timeline\nvec: guide for french revolution timeline"}
+{"input": "american civil war battles /only:lex", "output": "lex: american civil war battles documentation\nlex: american civil war battles tutorial\nlex: american civil war battles guide"}
+{"input": "american civil war battles /only:vec", "output": "vec: learn about american civil war battles\nvec: complete american civil war battles reference"}
+{"input": "egyptian pharaohs dynasty /only:lex", "output": "lex: egyptian pharaohs dynasty guide\nlex: egyptian pharaohs dynasty examples\nlex: egyptian pharaohs dynasty documentation"}
+{"input": "egyptian pharaohs dynasty /only:vec", "output": "vec: how to egyptian pharaohs dynasty\nvec: understanding egyptian pharaohs dynasty"}
+{"input": "bronze age collapse /only:lex", "output": "lex: bronze age collapse guide\nlex: bronze age collapse tutorial\nlex: bronze age collapse documentation"}
+{"input": "bronze age collapse /only:vec", "output": "vec: guide for bronze age collapse\nvec: understanding bronze age collapse"}
+{"input": "byzantine empire history /only:lex", "output": "lex: byzantine empire history tutorial\nlex: byzantine empire history best practices\nlex: byzantine empire history documentation"}
+{"input": "byzantine empire history /only:vec", "output": "vec: learn about byzantine empire history\nvec: how to byzantine empire history"}
+{"input": "vietnam war timeline /only:lex", "output": "lex: vietnam war timeline examples\nlex: vietnam war timeline best practices\nlex: vietnam war timeline documentation"}
+{"input": "vietnam war timeline /only:vec", "output": "vec: understanding vietnam war timeline\nvec: complete vietnam war timeline reference"}
+{"input": "quantum mechanics basics /only:lex", "output": "lex: quantum mechanics basics guide\nlex: quantum mechanics basics documentation\nlex: quantum mechanics basics examples"}
+{"input": "quantum mechanics basics /only:vec", "output": "vec: complete quantum mechanics basics reference\nvec: learn about quantum mechanics basics"}
+{"input": "theory of relativity explained /only:lex", "output": "lex: theory of relativity explained documentation\nlex: theory of relativity explained examples\nlex: theory of relativity explained tutorial"}
+{"input": "theory of relativity explained /only:vec", "output": "vec: learn about theory of relativity explained\nvec: guide for theory of relativity explained"}
+{"input": "dna structure discovery /only:lex", "output": "lex: dna structure discovery best practices\nlex: dna structure discovery tutorial\nlex: dna structure discovery guide"}
+{"input": "dna structure discovery /only:vec", "output": "vec: understanding dna structure discovery\nvec: learn about dna structure discovery"}
+{"input": "photosynthesis process steps /only:lex", "output": "lex: photosynthesis process steps documentation\nlex: photosynthesis process steps guide\nlex: photosynthesis process steps examples"}
+{"input": "photosynthesis process steps /only:vec", "output": "vec: guide for photosynthesis process steps\nvec: complete photosynthesis process steps reference"}
+{"input": "black holes physics /only:lex", "output": "lex: black holes physics tutorial\nlex: black holes physics examples\nlex: black holes physics best practices"}
+{"input": "black holes physics /only:vec", "output": "vec: understanding black holes physics\nvec: complete black holes physics reference"}
+{"input": "plate tectonics theory /only:lex", "output": "lex: plate tectonics theory examples\nlex: plate tectonics theory guide\nlex: plate tectonics theory best practices"}
+{"input": "plate tectonics theory /only:vec", "output": "vec: how to plate tectonics theory\nvec: guide for plate tectonics theory"}
+{"input": "evolution natural selection /only:lex", "output": "lex: evolution natural selection examples\nlex: evolution natural selection best practices\nlex: evolution natural selection documentation"}
+{"input": "evolution natural selection /only:vec", "output": "vec: learn about evolution natural selection\nvec: guide for evolution natural selection"}
+{"input": "periodic table elements /only:lex", "output": "lex: periodic table elements tutorial\nlex: periodic table elements examples\nlex: periodic table elements best practices"}
+{"input": "periodic table elements /only:vec", "output": "vec: understanding periodic table elements\nvec: complete periodic table elements reference"}
+{"input": "cell biology fundamentals /only:lex", "output": "lex: cell biology fundamentals tutorial\nlex: cell biology fundamentals examples\nlex: cell biology fundamentals best practices"}
+{"input": "cell biology fundamentals /only:vec", "output": "vec: complete cell biology fundamentals reference\nvec: how to cell biology fundamentals"}
+{"input": "climate change evidence /only:lex", "output": "lex: climate change evidence best practices\nlex: climate change evidence examples\nlex: climate change evidence documentation"}
+{"input": "climate change evidence /only:vec", "output": "vec: learn about climate change evidence\nvec: complete climate change evidence reference"}
+{"input": "impressionist painters list /only:lex", "output": "lex: impressionist painters list tutorial\nlex: impressionist painters list best practices\nlex: impressionist painters list guide"}
+{"input": "impressionist painters list /only:vec", "output": "vec: understanding impressionist painters list\nvec: complete impressionist painters list reference"}
+{"input": "shakespeare plays summary /only:lex", "output": "lex: shakespeare plays summary guide\nlex: shakespeare plays summary examples\nlex: shakespeare plays summary tutorial"}
+{"input": "shakespeare plays summary /only:vec", "output": "vec: how to shakespeare plays summary\nvec: learn about shakespeare plays summary"}
+{"input": "classical music composers /only:lex", "output": "lex: classical music composers examples\nlex: classical music composers documentation\nlex: classical music composers best practices"}
+{"input": "classical music composers /only:vec", "output": "vec: how to classical music composers\nvec: understanding classical music composers"}
+{"input": "modern art movements /only:lex", "output": "lex: modern art movements tutorial\nlex: modern art movements examples\nlex: modern art movements guide"}
+{"input": "modern art movements /only:vec", "output": "vec: how to modern art movements\nvec: guide for modern art movements"}
+{"input": "film noir characteristics /only:lex", "output": "lex: film noir characteristics examples\nlex: film noir characteristics tutorial\nlex: film noir characteristics documentation"}
+{"input": "film noir characteristics /only:vec", "output": "vec: guide for film noir characteristics\nvec: how to film noir characteristics"}
+{"input": "jazz history origins /only:lex", "output": "lex: jazz history origins best practices\nlex: jazz history origins documentation\nlex: jazz history origins tutorial"}
+{"input": "jazz history origins /only:vec", "output": "vec: learn about jazz history origins\nvec: understanding jazz history origins"}
+{"input": "renaissance sculpture techniques /only:lex", "output": "lex: renaissance sculpture techniques documentation\nlex: renaissance sculpture techniques examples\nlex: renaissance sculpture techniques best practices"}
+{"input": "renaissance sculpture techniques /only:vec", "output": "vec: how to renaissance sculpture techniques\nvec: guide for renaissance sculpture techniques"}
+{"input": "photography composition rules /only:lex", "output": "lex: photography composition rules best practices\nlex: photography composition rules documentation\nlex: photography composition rules guide"}
+{"input": "photography composition rules /only:vec", "output": "vec: understanding photography composition rules\nvec: complete photography composition rules reference"}
+{"input": "poetry forms haiku /only:lex", "output": "lex: poetry forms haiku documentation\nlex: poetry forms haiku examples\nlex: poetry forms haiku guide"}
+{"input": "poetry forms haiku /only:vec", "output": "vec: learn about poetry forms haiku\nvec: how to poetry forms haiku"}
+{"input": "baroque art characteristics /only:lex", "output": "lex: baroque art characteristics tutorial\nlex: baroque art characteristics guide\nlex: baroque art characteristics best practices"}
+{"input": "baroque art characteristics /only:vec", "output": "vec: complete baroque art characteristics reference\nvec: guide for baroque art characteristics"}
+{"input": "street art graffiti history /only:lex", "output": "lex: street art graffiti history guide\nlex: street art graffiti history examples\nlex: street art graffiti history documentation"}
+{"input": "street art graffiti history /only:vec", "output": "vec: understanding street art graffiti history\nvec: guide for street art graffiti history"}
+{"input": "symptoms of vitamin deficiency /only:lex", "output": "lex: symptoms of vitamin deficiency examples\nlex: symptoms of vitamin deficiency best practices\nlex: symptoms of vitamin deficiency guide"}
+{"input": "symptoms of vitamin deficiency /only:vec", "output": "vec: learn about symptoms of vitamin deficiency\nvec: how to symptoms of vitamin deficiency"}
+{"input": "how vaccines work immune system /only:lex", "output": "lex: how vaccines work immune system tutorial\nlex: how vaccines work immune system examples\nlex: how vaccines work immune system documentation"}
+{"input": "how vaccines work immune system /only:vec", "output": "vec: guide for how vaccines work immune system\nvec: how to how vaccines work immune system"}
+{"input": "blood pressure normal range /only:lex", "output": "lex: blood pressure normal range documentation\nlex: blood pressure normal range examples\nlex: blood pressure normal range best practices"}
+{"input": "blood pressure normal range /only:vec", "output": "vec: complete blood pressure normal range reference\nvec: learn about blood pressure normal range"}
+{"input": "sleep hygiene tips /only:lex", "output": "lex: sleep hygiene tips examples\nlex: sleep hygiene tips best practices\nlex: sleep hygiene tips guide"}
+{"input": "sleep hygiene tips /only:vec", "output": "vec: learn about sleep hygiene tips\nvec: guide for sleep hygiene tips"}
+{"input": "intermittent fasting benefits /only:lex", "output": "lex: intermittent fasting benefits documentation\nlex: intermittent fasting benefits guide\nlex: intermittent fasting benefits best practices"}
+{"input": "intermittent fasting benefits /only:vec", "output": "vec: complete intermittent fasting benefits reference\nvec: learn about intermittent fasting benefits"}
+{"input": "anxiety coping strategies /only:lex", "output": "lex: anxiety coping strategies guide\nlex: anxiety coping strategies best practices\nlex: anxiety coping strategies documentation"}
+{"input": "anxiety coping strategies /only:vec", "output": "vec: understanding anxiety coping strategies\nvec: complete anxiety coping strategies reference"}
+{"input": "stretching exercises back pain /only:lex", "output": "lex: stretching exercises back pain guide\nlex: stretching exercises back pain best practices\nlex: stretching exercises back pain tutorial"}
+{"input": "stretching exercises back pain /only:vec", "output": "vec: how to stretching exercises back pain\nvec: understanding stretching exercises back pain"}
+{"input": "heart disease prevention /only:lex", "output": "lex: heart disease prevention guide\nlex: heart disease prevention examples\nlex: heart disease prevention best practices"}
+{"input": "heart disease prevention /only:vec", "output": "vec: guide for heart disease prevention\nvec: complete heart disease prevention reference"}
+{"input": "diabetes type 2 management /only:lex", "output": "lex: diabetes type 2 management documentation\nlex: diabetes type 2 management best practices\nlex: diabetes type 2 management tutorial"}
+{"input": "diabetes type 2 management /only:vec", "output": "vec: how to diabetes type 2 management\nvec: guide for diabetes type 2 management"}
+{"input": "meditation mental health /only:lex", "output": "lex: meditation mental health documentation\nlex: meditation mental health tutorial\nlex: meditation mental health examples"}
+{"input": "meditation mental health /only:vec", "output": "vec: understanding meditation mental health\nvec: learn about meditation mental health"}
+{"input": "nutrition macros explained /only:lex", "output": "lex: nutrition macros explained documentation\nlex: nutrition macros explained best practices\nlex: nutrition macros explained tutorial"}
+{"input": "nutrition macros explained /only:vec", "output": "vec: understanding nutrition macros explained\nvec: guide for nutrition macros explained"}
+{"input": "first aid basics /only:lex", "output": "lex: first aid basics best practices\nlex: first aid basics tutorial\nlex: first aid basics examples"}
+{"input": "first aid basics /only:vec", "output": "vec: understanding first aid basics\nvec: learn about first aid basics"}
+{"input": "compound interest calculator /only:lex", "output": "lex: compound interest calculator examples\nlex: compound interest calculator guide\nlex: compound interest calculator best practices"}
+{"input": "compound interest calculator /only:vec", "output": "vec: understanding compound interest calculator\nvec: how to compound interest calculator"}
+{"input": "stock market basics beginners /only:lex", "output": "lex: stock market basics beginners guide\nlex: stock market basics beginners documentation\nlex: stock market basics beginners examples"}
+{"input": "stock market basics beginners /only:vec", "output": "vec: guide for stock market basics beginners\nvec: learn about stock market basics beginners"}
+{"input": "startup funding stages /only:lex", "output": "lex: startup funding stages tutorial\nlex: startup funding stages best practices\nlex: startup funding stages documentation"}
+{"input": "startup funding stages /only:vec", "output": "vec: complete startup funding stages reference\nvec: guide for startup funding stages"}
+{"input": "tax deductions small business /only:lex", "output": "lex: tax deductions small business best practices\nlex: tax deductions small business documentation\nlex: tax deductions small business examples"}
+{"input": "tax deductions small business /only:vec", "output": "vec: learn about tax deductions small business\nvec: complete tax deductions small business reference"}
+{"input": "budgeting methods 50 30 20 /only:lex", "output": "lex: budgeting methods 50 30 20 guide\nlex: budgeting methods 50 30 20 best practices\nlex: budgeting methods 50 30 20 documentation"}
+{"input": "budgeting methods 50 30 20 /only:vec", "output": "vec: complete budgeting methods 50 30 20 reference\nvec: how to budgeting methods 50 30 20"}
+{"input": "cryptocurrency explained simply /only:lex", "output": "lex: cryptocurrency explained simply documentation\nlex: cryptocurrency explained simply examples\nlex: cryptocurrency explained simply guide"}
+{"input": "cryptocurrency explained simply /only:vec", "output": "vec: how to cryptocurrency explained simply\nvec: learn about cryptocurrency explained simply"}
+{"input": "inflation effects on savings /only:lex", "output": "lex: inflation effects on savings documentation\nlex: inflation effects on savings tutorial\nlex: inflation effects on savings guide"}
+{"input": "inflation effects on savings /only:vec", "output": "vec: guide for inflation effects on savings\nvec: complete inflation effects on savings reference"}
+{"input": "retirement planning strategies /only:lex", "output": "lex: retirement planning strategies guide\nlex: retirement planning strategies documentation\nlex: retirement planning strategies examples"}
+{"input": "retirement planning strategies /only:vec", "output": "vec: understanding retirement planning strategies\nvec: how to retirement planning strategies"}
+{"input": "passive income ideas /only:lex", "output": "lex: passive income ideas documentation\nlex: passive income ideas guide\nlex: passive income ideas tutorial"}
+{"input": "passive income ideas /only:vec", "output": "vec: how to passive income ideas\nvec: guide for passive income ideas"}
+{"input": "venture capital vs angel investors /only:lex", "output": "lex: venture capital vs angel investors tutorial\nlex: venture capital vs angel investors best practices\nlex: venture capital vs angel investors guide"}
+{"input": "venture capital vs angel investors /only:vec", "output": "vec: learn about venture capital vs angel investors\nvec: guide for venture capital vs angel investors"}
+{"input": "balance sheet basics /only:lex", "output": "lex: balance sheet basics guide\nlex: balance sheet basics tutorial\nlex: balance sheet basics examples"}
+{"input": "balance sheet basics /only:vec", "output": "vec: complete balance sheet basics reference\nvec: how to balance sheet basics"}
+{"input": "supply chain management /only:lex", "output": "lex: supply chain management tutorial\nlex: supply chain management guide\nlex: supply chain management best practices"}
+{"input": "supply chain management /only:vec", "output": "vec: learn about supply chain management\nvec: guide for supply chain management"}
+{"input": "marathon training schedule /only:lex", "output": "lex: marathon training schedule guide\nlex: marathon training schedule tutorial\nlex: marathon training schedule best practices"}
+{"input": "marathon training schedule /only:vec", "output": "vec: learn about marathon training schedule\nvec: guide for marathon training schedule"}
+{"input": "weightlifting proper form /only:lex", "output": "lex: weightlifting proper form guide\nlex: weightlifting proper form documentation\nlex: weightlifting proper form examples"}
+{"input": "weightlifting proper form /only:vec", "output": "vec: guide for weightlifting proper form\nvec: how to weightlifting proper form"}
+{"input": "swimming stroke techniques /only:lex", "output": "lex: swimming stroke techniques tutorial\nlex: swimming stroke techniques best practices\nlex: swimming stroke techniques guide"}
+{"input": "swimming stroke techniques /only:vec", "output": "vec: how to swimming stroke techniques\nvec: complete swimming stroke techniques reference"}
+{"input": "tennis serve mechanics /only:lex", "output": "lex: tennis serve mechanics documentation\nlex: tennis serve mechanics tutorial\nlex: tennis serve mechanics examples"}
+{"input": "tennis serve mechanics /only:vec", "output": "vec: understanding tennis serve mechanics\nvec: how to tennis serve mechanics"}
+{"input": "basketball dribbling drills /only:lex", "output": "lex: basketball dribbling drills documentation\nlex: basketball dribbling drills tutorial\nlex: basketball dribbling drills best practices"}
+{"input": "basketball dribbling drills /only:vec", "output": "vec: understanding basketball dribbling drills\nvec: complete basketball dribbling drills reference"}
+{"input": "soccer formations tactics /only:lex", "output": "lex: soccer formations tactics documentation\nlex: soccer formations tactics tutorial\nlex: soccer formations tactics best practices"}
+{"input": "soccer formations tactics /only:vec", "output": "vec: complete soccer formations tactics reference\nvec: understanding soccer formations tactics"}
+{"input": "golf swing fundamentals /only:lex", "output": "lex: golf swing fundamentals examples\nlex: golf swing fundamentals guide\nlex: golf swing fundamentals tutorial"}
+{"input": "golf swing fundamentals /only:vec", "output": "vec: how to golf swing fundamentals\nvec: learn about golf swing fundamentals"}
+{"input": "yoga poses beginners /only:lex", "output": "lex: yoga poses beginners guide\nlex: yoga poses beginners examples\nlex: yoga poses beginners documentation"}
+{"input": "yoga poses beginners /only:vec", "output": "vec: learn about yoga poses beginners\nvec: guide for yoga poses beginners"}
+{"input": "running injury prevention /only:lex", "output": "lex: running injury prevention best practices\nlex: running injury prevention tutorial\nlex: running injury prevention examples"}
+{"input": "running injury prevention /only:vec", "output": "vec: understanding running injury prevention\nvec: guide for running injury prevention"}
+{"input": "cycling gear ratios /only:lex", "output": "lex: cycling gear ratios guide\nlex: cycling gear ratios tutorial\nlex: cycling gear ratios best practices"}
+{"input": "cycling gear ratios /only:vec", "output": "vec: complete cycling gear ratios reference\nvec: guide for cycling gear ratios"}
+{"input": "rock climbing grades /only:lex", "output": "lex: rock climbing grades documentation\nlex: rock climbing grades tutorial\nlex: rock climbing grades examples"}
+{"input": "rock climbing grades /only:vec", "output": "vec: complete rock climbing grades reference\nvec: how to rock climbing grades"}
+{"input": "surfing wave types /only:lex", "output": "lex: surfing wave types tutorial\nlex: surfing wave types examples\nlex: surfing wave types documentation"}
+{"input": "surfing wave types /only:vec", "output": "vec: guide for surfing wave types\nvec: complete surfing wave types reference"}
+{"input": "best time visit japan /only:lex", "output": "lex: best time visit japan examples\nlex: best time visit japan documentation\nlex: best time visit japan best practices"}
+{"input": "best time visit japan /only:vec", "output": "vec: understanding best time visit japan\nvec: guide for best time visit japan"}
+{"input": "travel packing checklist /only:lex", "output": "lex: travel packing checklist documentation\nlex: travel packing checklist tutorial\nlex: travel packing checklist guide"}
+{"input": "travel packing checklist /only:vec", "output": "vec: complete travel packing checklist reference\nvec: guide for travel packing checklist"}
+{"input": "budget backpacking europe /only:lex", "output": "lex: budget backpacking europe documentation\nlex: budget backpacking europe guide\nlex: budget backpacking europe examples"}
+{"input": "budget backpacking europe /only:vec", "output": "vec: learn about budget backpacking europe\nvec: how to budget backpacking europe"}
+{"input": "visa requirements usa /only:lex", "output": "lex: visa requirements usa best practices\nlex: visa requirements usa tutorial\nlex: visa requirements usa examples"}
+{"input": "visa requirements usa /only:vec", "output": "vec: guide for visa requirements usa\nvec: learn about visa requirements usa"}
+{"input": "jet lag remedies /only:lex", "output": "lex: jet lag remedies guide\nlex: jet lag remedies examples\nlex: jet lag remedies best practices"}
+{"input": "jet lag remedies /only:vec", "output": "vec: understanding jet lag remedies\nvec: guide for jet lag remedies"}
+{"input": "road trip planning tips /only:lex", "output": "lex: road trip planning tips tutorial\nlex: road trip planning tips examples\nlex: road trip planning tips guide"}
+{"input": "road trip planning tips /only:vec", "output": "vec: learn about road trip planning tips\nvec: complete road trip planning tips reference"}
+{"input": "solo travel safety /only:lex", "output": "lex: solo travel safety tutorial\nlex: solo travel safety best practices\nlex: solo travel safety documentation"}
+{"input": "solo travel safety /only:vec", "output": "vec: guide for solo travel safety\nvec: learn about solo travel safety"}
+{"input": "airport security rules /only:lex", "output": "lex: airport security rules examples\nlex: airport security rules guide\nlex: airport security rules tutorial"}
+{"input": "airport security rules /only:vec", "output": "vec: understanding airport security rules\nvec: learn about airport security rules"}
+{"input": "travel insurance coverage /only:lex", "output": "lex: travel insurance coverage guide\nlex: travel insurance coverage examples\nlex: travel insurance coverage tutorial"}
+{"input": "travel insurance coverage /only:vec", "output": "vec: understanding travel insurance coverage\nvec: how to travel insurance coverage"}
+{"input": "language apps learning /only:lex", "output": "lex: language apps learning tutorial\nlex: language apps learning examples\nlex: language apps learning guide"}
+{"input": "language apps learning /only:vec", "output": "vec: guide for language apps learning\nvec: understanding language apps learning"}
+{"input": "hostel vs hotel comparison /only:lex", "output": "lex: hostel vs hotel comparison examples\nlex: hostel vs hotel comparison documentation\nlex: hostel vs hotel comparison best practices"}
+{"input": "hostel vs hotel comparison /only:vec", "output": "vec: understanding hostel vs hotel comparison\nvec: learn about hostel vs hotel comparison"}
+{"input": "travel photography tips /only:lex", "output": "lex: travel photography tips examples\nlex: travel photography tips tutorial\nlex: travel photography tips documentation"}
+{"input": "travel photography tips /only:vec", "output": "vec: how to travel photography tips\nvec: complete travel photography tips reference"}
+{"input": "bread baking techniques /only:lex", "output": "lex: bread baking techniques best practices\nlex: bread baking techniques guide\nlex: bread baking techniques tutorial"}
+{"input": "bread baking techniques /only:vec", "output": "vec: complete bread baking techniques reference\nvec: guide for bread baking techniques"}
+{"input": "knife skills basics /only:lex", "output": "lex: knife skills basics guide\nlex: knife skills basics examples\nlex: knife skills basics best practices"}
+{"input": "knife skills basics /only:vec", "output": "vec: how to knife skills basics\nvec: complete knife skills basics reference"}
+{"input": "fermentation at home /only:lex", "output": "lex: fermentation at home tutorial\nlex: fermentation at home documentation\nlex: fermentation at home examples"}
+{"input": "fermentation at home /only:vec", "output": "vec: complete fermentation at home reference\nvec: guide for fermentation at home"}
+{"input": "meal prep weekly /only:lex", "output": "lex: meal prep weekly guide\nlex: meal prep weekly tutorial\nlex: meal prep weekly documentation"}
+{"input": "meal prep weekly /only:vec", "output": "vec: guide for meal prep weekly\nvec: understanding meal prep weekly"}
+{"input": "spice combinations guide /only:lex", "output": "lex: spice combinations guide documentation\nlex: spice combinations guide tutorial\nlex: spice combinations guide examples"}
+{"input": "spice combinations guide /only:vec", "output": "vec: guide for spice combinations guide\nvec: complete spice combinations guide reference"}
+{"input": "pasta making fresh /only:lex", "output": "lex: pasta making fresh best practices\nlex: pasta making fresh tutorial\nlex: pasta making fresh guide"}
+{"input": "pasta making fresh /only:vec", "output": "vec: guide for pasta making fresh\nvec: complete pasta making fresh reference"}
+{"input": "coffee brewing methods /only:lex", "output": "lex: coffee brewing methods examples\nlex: coffee brewing methods guide\nlex: coffee brewing methods documentation"}
+{"input": "coffee brewing methods /only:vec", "output": "vec: complete coffee brewing methods reference\nvec: learn about coffee brewing methods"}
+{"input": "wine pairing basics /only:lex", "output": "lex: wine pairing basics tutorial\nlex: wine pairing basics examples\nlex: wine pairing basics best practices"}
+{"input": "wine pairing basics /only:vec", "output": "vec: guide for wine pairing basics\nvec: learn about wine pairing basics"}
+{"input": "vegetarian protein sources /only:lex", "output": "lex: vegetarian protein sources guide\nlex: vegetarian protein sources tutorial\nlex: vegetarian protein sources examples"}
+{"input": "vegetarian protein sources /only:vec", "output": "vec: how to vegetarian protein sources\nvec: complete vegetarian protein sources reference"}
+{"input": "food storage guidelines /only:lex", "output": "lex: food storage guidelines documentation\nlex: food storage guidelines best practices\nlex: food storage guidelines examples"}
+{"input": "food storage guidelines /only:vec", "output": "vec: guide for food storage guidelines\nvec: how to food storage guidelines"}
+{"input": "sourdough starter maintenance /only:lex", "output": "lex: sourdough starter maintenance examples\nlex: sourdough starter maintenance tutorial\nlex: sourdough starter maintenance guide"}
+{"input": "sourdough starter maintenance /only:vec", "output": "vec: how to sourdough starter maintenance\nvec: learn about sourdough starter maintenance"}
+{"input": "grilling temperature chart /only:lex", "output": "lex: grilling temperature chart guide\nlex: grilling temperature chart documentation\nlex: grilling temperature chart examples"}
+{"input": "grilling temperature chart /only:vec", "output": "vec: guide for grilling temperature chart\nvec: understanding grilling temperature chart"}
+{"input": "cognitive biases list /only:lex", "output": "lex: cognitive biases list guide\nlex: cognitive biases list tutorial\nlex: cognitive biases list examples"}
+{"input": "cognitive biases list /only:vec", "output": "vec: complete cognitive biases list reference\nvec: how to cognitive biases list"}
+{"input": "attachment theory styles /only:lex", "output": "lex: attachment theory styles best practices\nlex: attachment theory styles examples\nlex: attachment theory styles documentation"}
+{"input": "attachment theory styles /only:vec", "output": "vec: learn about attachment theory styles\nvec: understanding attachment theory styles"}
+{"input": "maslow hierarchy needs /only:lex", "output": "lex: maslow hierarchy needs best practices\nlex: maslow hierarchy needs tutorial\nlex: maslow hierarchy needs examples"}
+{"input": "maslow hierarchy needs /only:vec", "output": "vec: understanding maslow hierarchy needs\nvec: learn about maslow hierarchy needs"}
+{"input": "growth mindset vs fixed /only:lex", "output": "lex: growth mindset vs fixed tutorial\nlex: growth mindset vs fixed guide\nlex: growth mindset vs fixed documentation"}
+{"input": "growth mindset vs fixed /only:vec", "output": "vec: complete growth mindset vs fixed reference\nvec: learn about growth mindset vs fixed"}
+{"input": "emotional intelligence components /only:lex", "output": "lex: emotional intelligence components guide\nlex: emotional intelligence components best practices\nlex: emotional intelligence components examples"}
+{"input": "emotional intelligence components /only:vec", "output": "vec: how to emotional intelligence components\nvec: complete emotional intelligence components reference"}
+{"input": "memory techniques mnemonics /only:lex", "output": "lex: memory techniques mnemonics guide\nlex: memory techniques mnemonics documentation\nlex: memory techniques mnemonics best practices"}
+{"input": "memory techniques mnemonics /only:vec", "output": "vec: how to memory techniques mnemonics\nvec: learn about memory techniques mnemonics"}
+{"input": "habit formation science /only:lex", "output": "lex: habit formation science examples\nlex: habit formation science tutorial\nlex: habit formation science documentation"}
+{"input": "habit formation science /only:vec", "output": "vec: learn about habit formation science\nvec: guide for habit formation science"}
+{"input": "stress response fight flight /only:lex", "output": "lex: stress response fight flight guide\nlex: stress response fight flight examples\nlex: stress response fight flight documentation"}
+{"input": "stress response fight flight /only:vec", "output": "vec: how to stress response fight flight\nvec: understanding stress response fight flight"}
+{"input": "personality types myers briggs /only:lex", "output": "lex: personality types myers briggs documentation\nlex: personality types myers briggs examples\nlex: personality types myers briggs tutorial"}
+{"input": "personality types myers briggs /only:vec", "output": "vec: understanding personality types myers briggs\nvec: how to personality types myers briggs"}
+{"input": "motivation intrinsic extrinsic /only:lex", "output": "lex: motivation intrinsic extrinsic guide\nlex: motivation intrinsic extrinsic examples\nlex: motivation intrinsic extrinsic tutorial"}
+{"input": "motivation intrinsic extrinsic /only:vec", "output": "vec: how to motivation intrinsic extrinsic\nvec: guide for motivation intrinsic extrinsic"}
+{"input": "decision making psychology /only:lex", "output": "lex: decision making psychology tutorial\nlex: decision making psychology best practices\nlex: decision making psychology examples"}
+{"input": "decision making psychology /only:vec", "output": "vec: learn about decision making psychology\nvec: how to decision making psychology"}
+{"input": "procrastination causes solutions /only:lex", "output": "lex: procrastination causes solutions guide\nlex: procrastination causes solutions documentation\nlex: procrastination causes solutions examples"}
+{"input": "procrastination causes solutions /only:vec", "output": "vec: complete procrastination causes solutions reference\nvec: how to procrastination causes solutions"}
+{"input": "renewable energy types /only:lex", "output": "lex: renewable energy types documentation\nlex: renewable energy types tutorial\nlex: renewable energy types best practices"}
+{"input": "renewable energy types /only:vec", "output": "vec: complete renewable energy types reference\nvec: learn about renewable energy types"}
+{"input": "carbon footprint reduction /only:lex", "output": "lex: carbon footprint reduction documentation\nlex: carbon footprint reduction best practices\nlex: carbon footprint reduction tutorial"}
+{"input": "carbon footprint reduction /only:vec", "output": "vec: guide for carbon footprint reduction\nvec: learn about carbon footprint reduction"}
+{"input": "composting basics home /only:lex", "output": "lex: composting basics home examples\nlex: composting basics home guide\nlex: composting basics home tutorial"}
+{"input": "composting basics home /only:vec", "output": "vec: how to composting basics home\nvec: complete composting basics home reference"}
+{"input": "endangered species list /only:lex", "output": "lex: endangered species list best practices\nlex: endangered species list examples\nlex: endangered species list guide"}
+{"input": "endangered species list /only:vec", "output": "vec: learn about endangered species list\nvec: guide for endangered species list"}
+{"input": "recycling symbols meaning /only:lex", "output": "lex: recycling symbols meaning documentation\nlex: recycling symbols meaning examples\nlex: recycling symbols meaning best practices"}
+{"input": "recycling symbols meaning /only:vec", "output": "vec: complete recycling symbols meaning reference\nvec: how to recycling symbols meaning"}
+{"input": "ocean plastic pollution /only:lex", "output": "lex: ocean plastic pollution examples\nlex: ocean plastic pollution guide\nlex: ocean plastic pollution documentation"}
+{"input": "ocean plastic pollution /only:vec", "output": "vec: learn about ocean plastic pollution\nvec: guide for ocean plastic pollution"}
+{"input": "deforestation effects /only:lex", "output": "lex: deforestation effects best practices\nlex: deforestation effects tutorial\nlex: deforestation effects guide"}
+{"input": "deforestation effects /only:vec", "output": "vec: understanding deforestation effects\nvec: guide for deforestation effects"}
+{"input": "sustainable living tips /only:lex", "output": "lex: sustainable living tips best practices\nlex: sustainable living tips documentation\nlex: sustainable living tips guide"}
+{"input": "sustainable living tips /only:vec", "output": "vec: learn about sustainable living tips\nvec: complete sustainable living tips reference"}
+{"input": "wildlife conservation efforts /only:lex", "output": "lex: wildlife conservation efforts guide\nlex: wildlife conservation efforts examples\nlex: wildlife conservation efforts documentation"}
+{"input": "wildlife conservation efforts /only:vec", "output": "vec: how to wildlife conservation efforts\nvec: complete wildlife conservation efforts reference"}
+{"input": "solar panel installation /only:lex", "output": "lex: solar panel installation examples\nlex: solar panel installation guide\nlex: solar panel installation documentation"}
+{"input": "solar panel installation /only:vec", "output": "vec: complete solar panel installation reference\nvec: how to solar panel installation"}
+{"input": "water conservation methods /only:lex", "output": "lex: water conservation methods examples\nlex: water conservation methods guide\nlex: water conservation methods documentation"}
+{"input": "water conservation methods /only:vec", "output": "vec: guide for water conservation methods\nvec: learn about water conservation methods"}
+{"input": "biodiversity importance /only:lex", "output": "lex: biodiversity importance best practices\nlex: biodiversity importance documentation\nlex: biodiversity importance examples"}
+{"input": "biodiversity importance /only:vec", "output": "vec: complete biodiversity importance reference\nvec: understanding biodiversity importance"}
+{"input": "calculus derivatives explained /only:lex", "output": "lex: calculus derivatives explained best practices\nlex: calculus derivatives explained examples\nlex: calculus derivatives explained documentation"}
+{"input": "calculus derivatives explained /only:vec", "output": "vec: learn about calculus derivatives explained\nvec: how to calculus derivatives explained"}
+{"input": "probability basics statistics /only:lex", "output": "lex: probability basics statistics tutorial\nlex: probability basics statistics documentation\nlex: probability basics statistics best practices"}
+{"input": "probability basics statistics /only:vec", "output": "vec: guide for probability basics statistics\nvec: how to probability basics statistics"}
+{"input": "linear algebra matrices /only:lex", "output": "lex: linear algebra matrices guide\nlex: linear algebra matrices documentation\nlex: linear algebra matrices tutorial"}
+{"input": "linear algebra matrices /only:vec", "output": "vec: how to linear algebra matrices\nvec: complete linear algebra matrices reference"}
+{"input": "geometry proofs theorems /only:lex", "output": "lex: geometry proofs theorems documentation\nlex: geometry proofs theorems best practices\nlex: geometry proofs theorems examples"}
+{"input": "geometry proofs theorems /only:vec", "output": "vec: how to geometry proofs theorems\nvec: complete geometry proofs theorems reference"}
+{"input": "logarithms rules properties /only:lex", "output": "lex: logarithms rules properties examples\nlex: logarithms rules properties best practices\nlex: logarithms rules properties documentation"}
+{"input": "logarithms rules properties /only:vec", "output": "vec: how to logarithms rules properties\nvec: understanding logarithms rules properties"}
+{"input": "trigonometry identities /only:lex", "output": "lex: trigonometry identities guide\nlex: trigonometry identities documentation\nlex: trigonometry identities best practices"}
+{"input": "trigonometry identities /only:vec", "output": "vec: learn about trigonometry identities\nvec: how to trigonometry identities"}
+{"input": "set theory basics /only:lex", "output": "lex: set theory basics documentation\nlex: set theory basics guide\nlex: set theory basics tutorial"}
+{"input": "set theory basics /only:vec", "output": "vec: understanding set theory basics\nvec: complete set theory basics reference"}
+{"input": "prime numbers properties /only:lex", "output": "lex: prime numbers properties best practices\nlex: prime numbers properties guide\nlex: prime numbers properties documentation"}
+{"input": "prime numbers properties /only:vec", "output": "vec: complete prime numbers properties reference\nvec: guide for prime numbers properties"}
+{"input": "fractions decimals conversion /only:lex", "output": "lex: fractions decimals conversion guide\nlex: fractions decimals conversion tutorial\nlex: fractions decimals conversion best practices"}
+{"input": "fractions decimals conversion /only:vec", "output": "vec: guide for fractions decimals conversion\nvec: complete fractions decimals conversion reference"}
+{"input": "algebra equations solving /only:lex", "output": "lex: algebra equations solving tutorial\nlex: algebra equations solving guide\nlex: algebra equations solving best practices"}
+{"input": "algebra equations solving /only:vec", "output": "vec: understanding algebra equations solving\nvec: learn about algebra equations solving"}
+{"input": "graph theory fundamentals /only:lex", "output": "lex: graph theory fundamentals tutorial\nlex: graph theory fundamentals documentation\nlex: graph theory fundamentals examples"}
+{"input": "graph theory fundamentals /only:vec", "output": "vec: complete graph theory fundamentals reference\nvec: understanding graph theory fundamentals"}
+{"input": "combinatorics permutations /only:lex", "output": "lex: combinatorics permutations best practices\nlex: combinatorics permutations tutorial\nlex: combinatorics permutations documentation"}
+{"input": "combinatorics permutations /only:vec", "output": "vec: understanding combinatorics permutations\nvec: how to combinatorics permutations"}
+{"input": "spanish verb conjugation /only:lex", "output": "lex: spanish verb conjugation documentation\nlex: spanish verb conjugation guide\nlex: spanish verb conjugation examples"}
+{"input": "spanish verb conjugation /only:vec", "output": "vec: how to spanish verb conjugation\nvec: learn about spanish verb conjugation"}
+{"input": "japanese hiragana katakana /only:lex", "output": "lex: japanese hiragana katakana best practices\nlex: japanese hiragana katakana guide\nlex: japanese hiragana katakana documentation"}
+{"input": "japanese hiragana katakana /only:vec", "output": "vec: complete japanese hiragana katakana reference\nvec: guide for japanese hiragana katakana"}
+{"input": "french pronunciation rules /only:lex", "output": "lex: french pronunciation rules guide\nlex: french pronunciation rules documentation\nlex: french pronunciation rules examples"}
+{"input": "french pronunciation rules /only:vec", "output": "vec: learn about french pronunciation rules\nvec: how to french pronunciation rules"}
+{"input": "german cases grammar /only:lex", "output": "lex: german cases grammar examples\nlex: german cases grammar guide\nlex: german cases grammar tutorial"}
+{"input": "german cases grammar /only:vec", "output": "vec: understanding german cases grammar\nvec: how to german cases grammar"}
+{"input": "mandarin tones guide /only:lex", "output": "lex: mandarin tones guide guide\nlex: mandarin tones guide best practices\nlex: mandarin tones guide examples"}
+{"input": "mandarin tones guide /only:vec", "output": "vec: guide for mandarin tones guide\nvec: understanding mandarin tones guide"}
+{"input": "latin phrases common /only:lex", "output": "lex: latin phrases common documentation\nlex: latin phrases common tutorial\nlex: latin phrases common examples"}
+{"input": "latin phrases common /only:vec", "output": "vec: learn about latin phrases common\nvec: guide for latin phrases common"}
+{"input": "arabic alphabet basics /only:lex", "output": "lex: arabic alphabet basics guide\nlex: arabic alphabet basics examples\nlex: arabic alphabet basics best practices"}
+{"input": "arabic alphabet basics /only:vec", "output": "vec: complete arabic alphabet basics reference\nvec: understanding arabic alphabet basics"}
+{"input": "english idioms meanings /only:lex", "output": "lex: english idioms meanings guide\nlex: english idioms meanings examples\nlex: english idioms meanings documentation"}
+{"input": "english idioms meanings /only:vec", "output": "vec: how to english idioms meanings\nvec: understanding english idioms meanings"}
+{"input": "sign language basics /only:lex", "output": "lex: sign language basics documentation\nlex: sign language basics best practices\nlex: sign language basics examples"}
+{"input": "sign language basics /only:vec", "output": "vec: guide for sign language basics\nvec: understanding sign language basics"}
+{"input": "etymology word origins /only:lex", "output": "lex: etymology word origins tutorial\nlex: etymology word origins examples\nlex: etymology word origins documentation"}
+{"input": "etymology word origins /only:vec", "output": "vec: how to etymology word origins\nvec: guide for etymology word origins"}
+{"input": "grammar punctuation rules /only:lex", "output": "lex: grammar punctuation rules best practices\nlex: grammar punctuation rules documentation\nlex: grammar punctuation rules tutorial"}
+{"input": "grammar punctuation rules /only:vec", "output": "vec: guide for grammar punctuation rules\nvec: understanding grammar punctuation rules"}
+{"input": "writing style guides /only:lex", "output": "lex: writing style guides guide\nlex: writing style guides examples\nlex: writing style guides tutorial"}
+{"input": "writing style guides /only:vec", "output": "vec: complete writing style guides reference\nvec: learn about writing style guides"}
+{"input": "woodworking joints types /only:lex", "output": "lex: woodworking joints types documentation\nlex: woodworking joints types guide\nlex: woodworking joints types tutorial"}
+{"input": "woodworking joints types /only:vec", "output": "vec: how to woodworking joints types\nvec: learn about woodworking joints types"}
+{"input": "knitting patterns beginners /only:lex", "output": "lex: knitting patterns beginners documentation\nlex: knitting patterns beginners examples\nlex: knitting patterns beginners tutorial"}
+{"input": "knitting patterns beginners /only:vec", "output": "vec: guide for knitting patterns beginners\nvec: learn about knitting patterns beginners"}
+{"input": "home repair basics /only:lex", "output": "lex: home repair basics guide\nlex: home repair basics tutorial\nlex: home repair basics documentation"}
+{"input": "home repair basics /only:vec", "output": "vec: how to home repair basics\nvec: complete home repair basics reference"}
+{"input": "sewing machine threading /only:lex", "output": "lex: sewing machine threading tutorial\nlex: sewing machine threading examples\nlex: sewing machine threading documentation"}
+{"input": "sewing machine threading /only:vec", "output": "vec: complete sewing machine threading reference\nvec: learn about sewing machine threading"}
+{"input": "painting techniques acrylic /only:lex", "output": "lex: painting techniques acrylic guide\nlex: painting techniques acrylic examples\nlex: painting techniques acrylic best practices"}
+{"input": "painting techniques acrylic /only:vec", "output": "vec: learn about painting techniques acrylic\nvec: how to painting techniques acrylic"}
+{"input": "pottery wheel basics /only:lex", "output": "lex: pottery wheel basics guide\nlex: pottery wheel basics tutorial\nlex: pottery wheel basics examples"}
+{"input": "pottery wheel basics /only:vec", "output": "vec: learn about pottery wheel basics\nvec: complete pottery wheel basics reference"}
+{"input": "electronics soldering guide /only:lex", "output": "lex: electronics soldering guide guide\nlex: electronics soldering guide examples\nlex: electronics soldering guide documentation"}
+{"input": "electronics soldering guide /only:vec", "output": "vec: learn about electronics soldering guide\nvec: guide for electronics soldering guide"}
+{"input": "gardening soil preparation /only:lex", "output": "lex: gardening soil preparation best practices\nlex: gardening soil preparation guide\nlex: gardening soil preparation documentation"}
+{"input": "gardening soil preparation /only:vec", "output": "vec: learn about gardening soil preparation\nvec: complete gardening soil preparation reference"}
+{"input": "candle making supplies /only:lex", "output": "lex: candle making supplies best practices\nlex: candle making supplies documentation\nlex: candle making supplies examples"}
+{"input": "candle making supplies /only:vec", "output": "vec: understanding candle making supplies\nvec: guide for candle making supplies"}
+{"input": "leather crafting tools /only:lex", "output": "lex: leather crafting tools tutorial\nlex: leather crafting tools guide\nlex: leather crafting tools documentation"}
+{"input": "leather crafting tools /only:vec", "output": "vec: guide for leather crafting tools\nvec: complete leather crafting tools reference"}
+{"input": "origami folding instructions /only:lex", "output": "lex: origami folding instructions tutorial\nlex: origami folding instructions best practices\nlex: origami folding instructions documentation"}
+{"input": "origami folding instructions /only:vec", "output": "vec: complete origami folding instructions reference\nvec: understanding origami folding instructions"}
+{"input": "furniture restoration tips /only:lex", "output": "lex: furniture restoration tips guide\nlex: furniture restoration tips tutorial\nlex: furniture restoration tips examples"}
+{"input": "furniture restoration tips /only:vec", "output": "vec: understanding furniture restoration tips\nvec: learn about furniture restoration tips"}
+{"input": "recent GitHub changes 2026 /only:lex", "output": "lex: recent GitHub changes 2026 tutorial\nlex: recent GitHub changes 2026 examples\nlex: recent GitHub changes 2026 guide"}
+{"input": "recent GitHub changes 2026 /only:vec", "output": "vec: complete recent GitHub changes 2026 reference\nvec: understanding recent GitHub changes 2026"}
+{"input": "recent Kubernetes changes 2025 /only:lex", "output": "lex: recent Kubernetes changes 2025 guide\nlex: recent Kubernetes changes 2025 tutorial\nlex: recent Kubernetes changes 2025 documentation"}
+{"input": "recent Kubernetes changes 2025 /only:vec", "output": "vec: learn about recent Kubernetes changes 2025\nvec: understanding recent Kubernetes changes 2025"}
+{"input": "climate tech recent news November /only:lex", "output": "lex: climate tech recent news November tutorial\nlex: climate tech recent news November documentation\nlex: climate tech recent news November guide"}
+{"input": "climate tech recent news November /only:vec", "output": "vec: complete climate tech recent news November reference\nvec: learn about climate tech recent news November"}
+{"input": "React latest version release /only:lex", "output": "lex: React latest version release tutorial\nlex: React latest version release examples\nlex: React latest version release best practices"}
+{"input": "React latest version release /only:vec", "output": "vec: how to React latest version release\nvec: complete React latest version release reference"}
+{"input": "AI recent news October /only:lex", "output": "lex: AI recent news October documentation\nlex: AI recent news October tutorial\nlex: AI recent news October examples"}
+{"input": "AI recent news October /only:vec", "output": "vec: how to AI recent news October\nvec: complete AI recent news October reference"}
+{"input": "recent Kubernetes changes 2026 /only:lex", "output": "lex: recent Kubernetes changes 2026 examples\nlex: recent Kubernetes changes 2026 guide\nlex: recent Kubernetes changes 2026 documentation"}
+{"input": "recent Kubernetes changes 2026 /only:vec", "output": "vec: complete recent Kubernetes changes 2026 reference\nvec: guide for recent Kubernetes changes 2026"}
+{"input": "GitHub latest version release /only:lex", "output": "lex: GitHub latest version release best practices\nlex: GitHub latest version release tutorial\nlex: GitHub latest version release guide"}
+{"input": "GitHub latest version release /only:vec", "output": "vec: guide for GitHub latest version release\nvec: complete GitHub latest version release reference"}
+{"input": "latest Python updates /only:lex", "output": "lex: latest Python updates guide\nlex: latest Python updates documentation\nlex: latest Python updates best practices"}
+{"input": "latest Python updates /only:vec", "output": "vec: how to latest Python updates\nvec: complete latest Python updates reference"}
+{"input": "Shopify recent news December /only:lex", "output": "lex: Shopify recent news December guide\nlex: Shopify recent news December tutorial\nlex: Shopify recent news December examples"}
+{"input": "Shopify recent news December /only:vec", "output": "vec: guide for Shopify recent news December\nvec: complete Shopify recent news December reference"}
+{"input": "Vue recent news November /only:lex", "output": "lex: Vue recent news November examples\nlex: Vue recent news November best practices\nlex: Vue recent news November documentation"}
+{"input": "Vue recent news November /only:vec", "output": "vec: how to Vue recent news November\nvec: learn about Vue recent news November"}
+{"input": "Next.js changelog 2025 /only:lex", "output": "lex: Next.js changelog 2025 guide\nlex: Next.js changelog 2025 examples\nlex: Next.js changelog 2025 documentation"}
+{"input": "Next.js changelog 2025 /only:vec", "output": "vec: learn about Next.js changelog 2025\nvec: understanding Next.js changelog 2025"}
+{"input": "Docker latest version release /only:lex", "output": "lex: Docker latest version release best practices\nlex: Docker latest version release tutorial\nlex: Docker latest version release documentation"}
+{"input": "Docker latest version release /only:vec", "output": "vec: how to Docker latest version release\nvec: understanding Docker latest version release"}
+{"input": "Kubernetes changelog 2025 /only:lex", "output": "lex: Kubernetes changelog 2025 best practices\nlex: Kubernetes changelog 2025 documentation\nlex: Kubernetes changelog 2025 examples"}
+{"input": "Kubernetes changelog 2025 /only:vec", "output": "vec: how to Kubernetes changelog 2025\nvec: learn about Kubernetes changelog 2025"}
+{"input": "Docker new features 2025 /only:lex", "output": "lex: Docker new features 2025 guide\nlex: Docker new features 2025 best practices\nlex: Docker new features 2025 tutorial"}
+{"input": "Docker new features 2025 /only:vec", "output": "vec: understanding Docker new features 2025\nvec: learn about Docker new features 2025"}
+{"input": "what changed in Vue 2025 /only:lex", "output": "lex: what changed in Vue 2025 best practices\nlex: what changed in Vue 2025 guide\nlex: what changed in Vue 2025 documentation"}
+{"input": "what changed in Vue 2025 /only:vec", "output": "vec: how to what changed in Vue 2025\nvec: learn about what changed in Vue 2025"}
+{"input": "AI new features 2025 /only:lex", "output": "lex: AI new features 2025 documentation\nlex: AI new features 2025 best practices\nlex: AI new features 2025 tutorial"}
+{"input": "AI new features 2025 /only:vec", "output": "vec: how to AI new features 2025\nvec: learn about AI new features 2025"}
+{"input": "what changed in Vue 2026 /only:lex", "output": "lex: what changed in Vue 2026 tutorial\nlex: what changed in Vue 2026 examples\nlex: what changed in Vue 2026 guide"}
+{"input": "what changed in Vue 2026 /only:vec", "output": "vec: learn about what changed in Vue 2026\nvec: understanding what changed in Vue 2026"}
+{"input": "recent AI changes 2025 /only:lex", "output": "lex: recent AI changes 2025 tutorial\nlex: recent AI changes 2025 guide\nlex: recent AI changes 2025 best practices"}
+{"input": "recent AI changes 2025 /only:vec", "output": "vec: understanding recent AI changes 2025\nvec: complete recent AI changes 2025 reference"}
+{"input": "Vue recent news October /only:lex", "output": "lex: Vue recent news October documentation\nlex: Vue recent news October guide\nlex: Vue recent news October tutorial"}
+{"input": "Vue recent news October /only:vec", "output": "vec: guide for Vue recent news October\nvec: learn about Vue recent news October"}
+{"input": "what changed in Next.js 2026 /only:lex", "output": "lex: what changed in Next.js 2026 examples\nlex: what changed in Next.js 2026 documentation\nlex: what changed in Next.js 2026 best practices"}
+{"input": "what changed in Next.js 2026 /only:vec", "output": "vec: complete what changed in Next.js 2026 reference\nvec: how to what changed in Next.js 2026"}
+{"input": "Docker changelog 2026 /only:lex", "output": "lex: Docker changelog 2026 best practices\nlex: Docker changelog 2026 documentation\nlex: Docker changelog 2026 examples"}
+{"input": "Docker changelog 2026 /only:vec", "output": "vec: understanding Docker changelog 2026\nvec: complete Docker changelog 2026 reference"}
+{"input": "Python recent news November /only:lex", "output": "lex: Python recent news November documentation\nlex: Python recent news November tutorial\nlex: Python recent news November best practices"}
+{"input": "Python recent news November /only:vec", "output": "vec: understanding Python recent news November\nvec: how to Python recent news November"}
+{"input": "recent Python changes 2026 /only:lex", "output": "lex: recent Python changes 2026 best practices\nlex: recent Python changes 2026 documentation\nlex: recent Python changes 2026 guide"}
+{"input": "recent Python changes 2026 /only:vec", "output": "vec: complete recent Python changes 2026 reference\nvec: guide for recent Python changes 2026"}
+{"input": "climate tech changelog 2026 /only:lex", "output": "lex: climate tech changelog 2026 documentation\nlex: climate tech changelog 2026 examples\nlex: climate tech changelog 2026 best practices"}
+{"input": "climate tech changelog 2026 /only:vec", "output": "vec: guide for climate tech changelog 2026\nvec: learn about climate tech changelog 2026"}
+{"input": "GitHub changelog 2026 /only:lex", "output": "lex: GitHub changelog 2026 documentation\nlex: GitHub changelog 2026 examples\nlex: GitHub changelog 2026 guide"}
+{"input": "GitHub changelog 2026 /only:vec", "output": "vec: guide for GitHub changelog 2026\nvec: complete GitHub changelog 2026 reference"}
+{"input": "Shopify latest version release /only:lex", "output": "lex: Shopify latest version release guide\nlex: Shopify latest version release examples\nlex: Shopify latest version release tutorial"}
+{"input": "Shopify latest version release /only:vec", "output": "vec: how to Shopify latest version release\nvec: guide for Shopify latest version release"}
+{"input": "recent Python changes 2025 /only:lex", "output": "lex: recent Python changes 2025 best practices\nlex: recent Python changes 2025 examples\nlex: recent Python changes 2025 tutorial"}
+{"input": "recent Python changes 2025 /only:vec", "output": "vec: understanding recent Python changes 2025\nvec: guide for recent Python changes 2025"}
+{"input": "recent AWS changes 2025 /only:lex", "output": "lex: recent AWS changes 2025 guide\nlex: recent AWS changes 2025 best practices\nlex: recent AWS changes 2025 examples"}
+{"input": "recent AWS changes 2025 /only:vec", "output": "vec: complete recent AWS changes 2025 reference\nvec: guide for recent AWS changes 2025"}
+{"input": "climate tech recent news October /only:lex", "output": "lex: climate tech recent news October documentation\nlex: climate tech recent news October best practices\nlex: climate tech recent news October guide"}
+{"input": "climate tech recent news October /only:vec", "output": "vec: guide for climate tech recent news October\nvec: understanding climate tech recent news October"}
+{"input": "Python changelog 2025 /only:lex", "output": "lex: Python changelog 2025 tutorial\nlex: Python changelog 2025 examples\nlex: Python changelog 2025 best practices"}
+{"input": "Python changelog 2025 /only:vec", "output": "vec: how to Python changelog 2025\nvec: complete Python changelog 2025 reference"}
+{"input": "latest AI updates /only:lex", "output": "lex: latest AI updates best practices\nlex: latest AI updates guide\nlex: latest AI updates tutorial"}
+{"input": "latest AI updates /only:vec", "output": "vec: understanding latest AI updates\nvec: learn about latest AI updates"}
+{"input": "Vue recent news December /only:lex", "output": "lex: Vue recent news December examples\nlex: Vue recent news December tutorial\nlex: Vue recent news December best practices"}
+{"input": "Vue recent news December /only:vec", "output": "vec: understanding Vue recent news December\nvec: learn about Vue recent news December"}
+{"input": "React recent news October /only:lex", "output": "lex: React recent news October documentation\nlex: React recent news October best practices\nlex: React recent news October examples"}
+{"input": "React recent news October /only:vec", "output": "vec: how to React recent news October\nvec: guide for React recent news October"}
+{"input": "recent space exploration changes 2025 /only:lex", "output": "lex: recent space exploration changes 2025 guide\nlex: recent space exploration changes 2025 best practices\nlex: recent space exploration changes 2025 examples"}
+{"input": "recent space exploration changes 2025 /only:vec", "output": "vec: guide for recent space exploration changes 2025\nvec: understanding recent space exploration changes 2025"}
+{"input": "space exploration latest version release /only:lex", "output": "lex: space exploration latest version release tutorial\nlex: space exploration latest version release guide\nlex: space exploration latest version release documentation"}
+{"input": "space exploration latest version release /only:vec", "output": "vec: understanding space exploration latest version release\nvec: complete space exploration latest version release reference"}
+{"input": "recent machine learning changes 2026 /only:lex", "output": "lex: recent machine learning changes 2026 examples\nlex: recent machine learning changes 2026 guide\nlex: recent machine learning changes 2026 best practices"}
+{"input": "recent machine learning changes 2026 /only:vec", "output": "vec: understanding recent machine learning changes 2026\nvec: how to recent machine learning changes 2026"}
+{"input": "machine learning recent news December /only:lex", "output": "lex: machine learning recent news December documentation\nlex: machine learning recent news December guide\nlex: machine learning recent news December best practices"}
+{"input": "machine learning recent news December /only:vec", "output": "vec: understanding machine learning recent news December\nvec: learn about machine learning recent news December"}
+{"input": "latest GitHub updates /only:lex", "output": "lex: latest GitHub updates guide\nlex: latest GitHub updates documentation\nlex: latest GitHub updates best practices"}
+{"input": "latest GitHub updates /only:vec", "output": "vec: understanding latest GitHub updates\nvec: how to latest GitHub updates"}
+{"input": "Vue changelog 2026 /only:lex", "output": "lex: Vue changelog 2026 examples\nlex: Vue changelog 2026 documentation\nlex: Vue changelog 2026 best practices"}
+{"input": "Vue changelog 2026 /only:vec", "output": "vec: learn about Vue changelog 2026\nvec: how to Vue changelog 2026"}
+{"input": "recent Docker changes 2025 /only:lex", "output": "lex: recent Docker changes 2025 documentation\nlex: recent Docker changes 2025 best practices\nlex: recent Docker changes 2025 guide"}
+{"input": "recent Docker changes 2025 /only:vec", "output": "vec: complete recent Docker changes 2025 reference\nvec: how to recent Docker changes 2025"}
+{"input": "what changed in GitHub 2026 /only:lex", "output": "lex: what changed in GitHub 2026 tutorial\nlex: what changed in GitHub 2026 guide\nlex: what changed in GitHub 2026 documentation"}
+{"input": "what changed in GitHub 2026 /only:vec", "output": "vec: understanding what changed in GitHub 2026\nvec: guide for what changed in GitHub 2026"}
+{"input": "Shopify recent news October /only:lex", "output": "lex: Shopify recent news October guide\nlex: Shopify recent news October documentation\nlex: Shopify recent news October tutorial"}
+{"input": "Shopify recent news October /only:vec", "output": "vec: learn about Shopify recent news October\nvec: complete Shopify recent news October reference"}
+{"input": "recent GitHub changes 2025 /only:lex", "output": "lex: recent GitHub changes 2025 guide\nlex: recent GitHub changes 2025 best practices\nlex: recent GitHub changes 2025 tutorial"}
+{"input": "recent GitHub changes 2025 /only:vec", "output": "vec: guide for recent GitHub changes 2025\nvec: learn about recent GitHub changes 2025"}
+{"input": "Next.js changelog 2026 /only:lex", "output": "lex: Next.js changelog 2026 tutorial\nlex: Next.js changelog 2026 documentation\nlex: Next.js changelog 2026 best practices"}
+{"input": "Next.js changelog 2026 /only:vec", "output": "vec: guide for Next.js changelog 2026\nvec: complete Next.js changelog 2026 reference"}
+{"input": "what changed in TypeScript 2026 /only:lex", "output": "lex: what changed in TypeScript 2026 examples\nlex: what changed in TypeScript 2026 best practices\nlex: what changed in TypeScript 2026 documentation"}
+{"input": "what changed in TypeScript 2026 /only:vec", "output": "vec: complete what changed in TypeScript 2026 reference\nvec: guide for what changed in TypeScript 2026"}
+{"input": "Python new features 2026 /only:lex", "output": "lex: Python new features 2026 best practices\nlex: Python new features 2026 examples\nlex: Python new features 2026 guide"}
+{"input": "Python new features 2026 /only:vec", "output": "vec: guide for Python new features 2026\nvec: complete Python new features 2026 reference"}
+{"input": "climate tech changelog 2025 /only:lex", "output": "lex: climate tech changelog 2025 tutorial\nlex: climate tech changelog 2025 documentation\nlex: climate tech changelog 2025 examples"}
+{"input": "climate tech changelog 2025 /only:vec", "output": "vec: guide for climate tech changelog 2025\nvec: how to climate tech changelog 2025"}
+{"input": "GitHub recent news December /only:lex", "output": "lex: GitHub recent news December best practices\nlex: GitHub recent news December guide\nlex: GitHub recent news December examples"}
+{"input": "GitHub recent news December /only:vec", "output": "vec: learn about GitHub recent news December\nvec: how to GitHub recent news December"}
+{"input": "Kubernetes new features 2026 /only:lex", "output": "lex: Kubernetes new features 2026 documentation\nlex: Kubernetes new features 2026 tutorial\nlex: Kubernetes new features 2026 guide"}
+{"input": "Kubernetes new features 2026 /only:vec", "output": "vec: understanding Kubernetes new features 2026\nvec: guide for Kubernetes new features 2026"}
+{"input": "Kubernetes recent news October /only:lex", "output": "lex: Kubernetes recent news October best practices\nlex: Kubernetes recent news October guide\nlex: Kubernetes recent news October documentation"}
+{"input": "Kubernetes recent news October /only:vec", "output": "vec: how to Kubernetes recent news October\nvec: complete Kubernetes recent news October reference"}
+{"input": "TypeScript recent news October /only:lex", "output": "lex: TypeScript recent news October best practices\nlex: TypeScript recent news October guide\nlex: TypeScript recent news October documentation"}
+{"input": "TypeScript recent news October /only:vec", "output": "vec: understanding TypeScript recent news October\nvec: complete TypeScript recent news October reference"}
+{"input": "Docker recent news October /only:lex", "output": "lex: Docker recent news October documentation\nlex: Docker recent news October examples\nlex: Docker recent news October tutorial"}
+{"input": "Docker recent news October /only:vec", "output": "vec: complete Docker recent news October reference\nvec: learn about Docker recent news October"}
+{"input": "space exploration changelog 2025 /only:lex", "output": "lex: space exploration changelog 2025 guide\nlex: space exploration changelog 2025 tutorial\nlex: space exploration changelog 2025 documentation"}
+{"input": "space exploration changelog 2025 /only:vec", "output": "vec: complete space exploration changelog 2025 reference\nvec: understanding space exploration changelog 2025"}
+{"input": "Vue latest version release /only:lex", "output": "lex: Vue latest version release documentation\nlex: Vue latest version release best practices\nlex: Vue latest version release examples"}
+{"input": "Vue latest version release /only:vec", "output": "vec: complete Vue latest version release reference\nvec: learn about Vue latest version release"}
+{"input": "Next.js new features 2025 /only:lex", "output": "lex: Next.js new features 2025 best practices\nlex: Next.js new features 2025 guide\nlex: Next.js new features 2025 tutorial"}
+{"input": "Next.js new features 2025 /only:vec", "output": "vec: learn about Next.js new features 2025\nvec: complete Next.js new features 2025 reference"}
+{"input": "climate tech new features 2025 /only:lex", "output": "lex: climate tech new features 2025 guide\nlex: climate tech new features 2025 tutorial\nlex: climate tech new features 2025 examples"}
+{"input": "climate tech new features 2025 /only:vec", "output": "vec: learn about climate tech new features 2025\nvec: understanding climate tech new features 2025"}
+{"input": "what changed in climate tech 2026 /only:lex", "output": "lex: what changed in climate tech 2026 examples\nlex: what changed in climate tech 2026 documentation\nlex: what changed in climate tech 2026 tutorial"}
+{"input": "what changed in climate tech 2026 /only:vec", "output": "vec: how to what changed in climate tech 2026\nvec: complete what changed in climate tech 2026 reference"}
+{"input": "what changed in space exploration 2026 /only:lex", "output": "lex: what changed in space exploration 2026 best practices\nlex: what changed in space exploration 2026 tutorial\nlex: what changed in space exploration 2026 examples"}
+{"input": "what changed in space exploration 2026 /only:vec", "output": "vec: how to what changed in space exploration 2026\nvec: understanding what changed in space exploration 2026"}
+{"input": "Shopify new features 2025 /only:lex", "output": "lex: Shopify new features 2025 guide\nlex: Shopify new features 2025 documentation\nlex: Shopify new features 2025 best practices"}
+{"input": "Shopify new features 2025 /only:vec", "output": "vec: understanding Shopify new features 2025\nvec: complete Shopify new features 2025 reference"}
+{"input": "climate tech new features 2026 /only:lex", "output": "lex: climate tech new features 2026 guide\nlex: climate tech new features 2026 best practices\nlex: climate tech new features 2026 tutorial"}
+{"input": "climate tech new features 2026 /only:vec", "output": "vec: understanding climate tech new features 2026\nvec: how to climate tech new features 2026"}
+{"input": "machine learning recent news October /only:lex", "output": "lex: machine learning recent news October guide\nlex: machine learning recent news October best practices\nlex: machine learning recent news October tutorial"}
+{"input": "machine learning recent news October /only:vec", "output": "vec: complete machine learning recent news October reference\nvec: learn about machine learning recent news October"}
+{"input": "latest React updates /only:lex", "output": "lex: latest React updates documentation\nlex: latest React updates examples\nlex: latest React updates best practices"}
+{"input": "latest React updates /only:vec", "output": "vec: learn about latest React updates\nvec: understanding latest React updates"}
+{"input": "TypeScript latest version release /only:lex", "output": "lex: TypeScript latest version release best practices\nlex: TypeScript latest version release examples\nlex: TypeScript latest version release tutorial"}
+{"input": "TypeScript latest version release /only:vec", "output": "vec: guide for TypeScript latest version release\nvec: complete TypeScript latest version release reference"}
+{"input": "Next.js latest version release /only:lex", "output": "lex: Next.js latest version release best practices\nlex: Next.js latest version release guide\nlex: Next.js latest version release examples"}
+{"input": "Next.js latest version release /only:vec", "output": "vec: how to Next.js latest version release\nvec: guide for Next.js latest version release"}
+{"input": "what changed in Kubernetes 2026 /only:lex", "output": "lex: what changed in Kubernetes 2026 tutorial\nlex: what changed in Kubernetes 2026 best practices\nlex: what changed in Kubernetes 2026 guide"}
+{"input": "what changed in Kubernetes 2026 /only:vec", "output": "vec: understanding what changed in Kubernetes 2026\nvec: complete what changed in Kubernetes 2026 reference"}
+{"input": "recent React changes 2026 /only:lex", "output": "lex: recent React changes 2026 documentation\nlex: recent React changes 2026 best practices\nlex: recent React changes 2026 examples"}
+{"input": "recent React changes 2026 /only:vec", "output": "vec: understanding recent React changes 2026\nvec: learn about recent React changes 2026"}
+{"input": "recent climate tech changes 2025 /only:lex", "output": "lex: recent climate tech changes 2025 best practices\nlex: recent climate tech changes 2025 guide\nlex: recent climate tech changes 2025 tutorial"}
+{"input": "recent climate tech changes 2025 /only:vec", "output": "vec: complete recent climate tech changes 2025 reference\nvec: guide for recent climate tech changes 2025"}
+{"input": "what changed in Shopify 2026 /only:lex", "output": "lex: what changed in Shopify 2026 best practices\nlex: what changed in Shopify 2026 documentation\nlex: what changed in Shopify 2026 guide"}
+{"input": "what changed in Shopify 2026 /only:vec", "output": "vec: complete what changed in Shopify 2026 reference\nvec: learn about what changed in Shopify 2026"}
+{"input": "Kubernetes changelog 2026 /only:lex", "output": "lex: Kubernetes changelog 2026 documentation\nlex: Kubernetes changelog 2026 examples\nlex: Kubernetes changelog 2026 tutorial"}
+{"input": "Kubernetes changelog 2026 /only:vec", "output": "vec: guide for Kubernetes changelog 2026\nvec: understanding Kubernetes changelog 2026"}
+{"input": "Shopify recent news November /only:lex", "output": "lex: Shopify recent news November tutorial\nlex: Shopify recent news November examples\nlex: Shopify recent news November best practices"}
+{"input": "Shopify recent news November /only:vec", "output": "vec: learn about Shopify recent news November\nvec: guide for Shopify recent news November"}
+{"input": "GitHub recent news October /only:lex", "output": "lex: GitHub recent news October tutorial\nlex: GitHub recent news October best practices\nlex: GitHub recent news October guide"}
+{"input": "GitHub recent news October /only:vec", "output": "vec: guide for GitHub recent news October\nvec: learn about GitHub recent news October"}
+{"input": "Kubernetes recent news December /only:lex", "output": "lex: Kubernetes recent news December examples\nlex: Kubernetes recent news December guide\nlex: Kubernetes recent news December documentation"}
+{"input": "Kubernetes recent news December /only:vec", "output": "vec: how to Kubernetes recent news December\nvec: complete Kubernetes recent news December reference"}
+{"input": "what changed in Docker 2025 /only:lex", "output": "lex: what changed in Docker 2025 best practices\nlex: what changed in Docker 2025 guide\nlex: what changed in Docker 2025 examples"}
+{"input": "what changed in Docker 2025 /only:vec", "output": "vec: understanding what changed in Docker 2025\nvec: learn about what changed in Docker 2025"}
+{"input": "recent React changes 2025 /only:lex", "output": "lex: recent React changes 2025 guide\nlex: recent React changes 2025 best practices\nlex: recent React changes 2025 examples"}
+{"input": "recent React changes 2025 /only:vec", "output": "vec: how to recent React changes 2025\nvec: complete recent React changes 2025 reference"}
+{"input": "what changed in Kubernetes 2025 /only:lex", "output": "lex: what changed in Kubernetes 2025 best practices\nlex: what changed in Kubernetes 2025 guide\nlex: what changed in Kubernetes 2025 tutorial"}
+{"input": "what changed in Kubernetes 2025 /only:vec", "output": "vec: guide for what changed in Kubernetes 2025\nvec: understanding what changed in Kubernetes 2025"}
+{"input": "recent TypeScript changes 2026 /only:lex", "output": "lex: recent TypeScript changes 2026 guide\nlex: recent TypeScript changes 2026 documentation\nlex: recent TypeScript changes 2026 best practices"}
+{"input": "recent TypeScript changes 2026 /only:vec", "output": "vec: learn about recent TypeScript changes 2026\nvec: understanding recent TypeScript changes 2026"}
+{"input": "Shopify changelog 2025 /only:lex", "output": "lex: Shopify changelog 2025 examples\nlex: Shopify changelog 2025 guide\nlex: Shopify changelog 2025 best practices"}
+{"input": "Shopify changelog 2025 /only:vec", "output": "vec: learn about Shopify changelog 2025\nvec: understanding Shopify changelog 2025"}
+{"input": "latest Docker updates /only:lex", "output": "lex: latest Docker updates guide\nlex: latest Docker updates examples\nlex: latest Docker updates tutorial"}
+{"input": "latest Docker updates /only:vec", "output": "vec: understanding latest Docker updates\nvec: learn about latest Docker updates"}
+{"input": "recent machine learning changes 2025 /only:lex", "output": "lex: recent machine learning changes 2025 documentation\nlex: recent machine learning changes 2025 tutorial\nlex: recent machine learning changes 2025 examples"}
+{"input": "recent machine learning changes 2025 /only:vec", "output": "vec: complete recent machine learning changes 2025 reference\nvec: understanding recent machine learning changes 2025"}
+{"input": "recent AI changes 2026 /only:lex", "output": "lex: recent AI changes 2026 examples\nlex: recent AI changes 2026 guide\nlex: recent AI changes 2026 best practices"}
+{"input": "recent AI changes 2026 /only:vec", "output": "vec: how to recent AI changes 2026\nvec: guide for recent AI changes 2026"}
+{"input": "recent Docker changes 2026 /only:lex", "output": "lex: recent Docker changes 2026 guide\nlex: recent Docker changes 2026 examples\nlex: recent Docker changes 2026 documentation"}
+{"input": "recent Docker changes 2026 /only:vec", "output": "vec: guide for recent Docker changes 2026\nvec: learn about recent Docker changes 2026"}
+{"input": "what changed in AWS 2026 /only:lex", "output": "lex: what changed in AWS 2026 guide\nlex: what changed in AWS 2026 documentation\nlex: what changed in AWS 2026 tutorial"}
+{"input": "what changed in AWS 2026 /only:vec", "output": "vec: how to what changed in AWS 2026\nvec: understanding what changed in AWS 2026"}
+{"input": "what changed in Shopify 2025 /only:lex", "output": "lex: what changed in Shopify 2025 guide\nlex: what changed in Shopify 2025 documentation\nlex: what changed in Shopify 2025 examples"}
+{"input": "what changed in Shopify 2025 /only:vec", "output": "vec: understanding what changed in Shopify 2025\nvec: how to what changed in Shopify 2025"}
+{"input": "AI changelog 2026 /only:lex", "output": "lex: AI changelog 2026 documentation\nlex: AI changelog 2026 examples\nlex: AI changelog 2026 best practices"}
+{"input": "AI changelog 2026 /only:vec", "output": "vec: learn about AI changelog 2026\nvec: understanding AI changelog 2026"}
+{"input": "latest Kubernetes updates /only:lex", "output": "lex: latest Kubernetes updates best practices\nlex: latest Kubernetes updates documentation\nlex: latest Kubernetes updates guide"}
+{"input": "latest Kubernetes updates /only:vec", "output": "vec: guide for latest Kubernetes updates\nvec: learn about latest Kubernetes updates"}
+{"input": "what changed in climate tech 2025 /only:lex", "output": "lex: what changed in climate tech 2025 guide\nlex: what changed in climate tech 2025 best practices\nlex: what changed in climate tech 2025 examples"}
+{"input": "what changed in climate tech 2025 /only:vec", "output": "vec: learn about what changed in climate tech 2025\nvec: understanding what changed in climate tech 2025"}
+{"input": "latest machine learning updates /only:lex", "output": "lex: latest machine learning updates documentation\nlex: latest machine learning updates best practices\nlex: latest machine learning updates examples"}
+{"input": "latest machine learning updates /only:vec", "output": "vec: learn about latest machine learning updates\nvec: understanding latest machine learning updates"}
+{"input": "what changed in Next.js 2025 /only:lex", "output": "lex: what changed in Next.js 2025 best practices\nlex: what changed in Next.js 2025 documentation\nlex: what changed in Next.js 2025 guide"}
+{"input": "what changed in Next.js 2025 /only:vec", "output": "vec: understanding what changed in Next.js 2025\nvec: learn about what changed in Next.js 2025"}
+{"input": "TypeScript changelog 2025 /only:lex", "output": "lex: TypeScript changelog 2025 documentation\nlex: TypeScript changelog 2025 examples\nlex: TypeScript changelog 2025 guide"}
+{"input": "TypeScript changelog 2025 /only:vec", "output": "vec: understanding TypeScript changelog 2025\nvec: guide for TypeScript changelog 2025"}
+{"input": "recent AWS changes 2026 /only:lex", "output": "lex: recent AWS changes 2026 guide\nlex: recent AWS changes 2026 tutorial\nlex: recent AWS changes 2026 examples"}
+{"input": "recent AWS changes 2026 /only:vec", "output": "vec: how to recent AWS changes 2026\nvec: understanding recent AWS changes 2026"}
+{"input": "Vue changelog 2025 /only:lex", "output": "lex: Vue changelog 2025 best practices\nlex: Vue changelog 2025 documentation\nlex: Vue changelog 2025 examples"}
+{"input": "Vue changelog 2025 /only:vec", "output": "vec: guide for Vue changelog 2025\nvec: understanding Vue changelog 2025"}
+{"input": "TypeScript new features 2025 /only:lex", "output": "lex: TypeScript new features 2025 best practices\nlex: TypeScript new features 2025 guide\nlex: TypeScript new features 2025 tutorial"}
+{"input": "TypeScript new features 2025 /only:vec", "output": "vec: complete TypeScript new features 2025 reference\nvec: how to TypeScript new features 2025"}
+{"input": "React recent news December /only:lex", "output": "lex: React recent news December best practices\nlex: React recent news December tutorial\nlex: React recent news December examples"}
+{"input": "React recent news December /only:vec", "output": "vec: complete React recent news December reference\nvec: guide for React recent news December"}
+{"input": "AWS changelog 2026 /only:lex", "output": "lex: AWS changelog 2026 best practices\nlex: AWS changelog 2026 documentation\nlex: AWS changelog 2026 guide"}
+{"input": "AWS changelog 2026 /only:vec", "output": "vec: guide for AWS changelog 2026\nvec: learn about AWS changelog 2026"}
+{"input": "AI recent news December /only:lex", "output": "lex: AI recent news December documentation\nlex: AI recent news December guide\nlex: AI recent news December best practices"}
+{"input": "AI recent news December /only:vec", "output": "vec: complete AI recent news December reference\nvec: how to AI recent news December"}
+{"input": "TypeScript recent news December /only:lex", "output": "lex: TypeScript recent news December documentation\nlex: TypeScript recent news December best practices\nlex: TypeScript recent news December examples"}
+{"input": "TypeScript recent news December /only:vec", "output": "vec: understanding TypeScript recent news December\nvec: how to TypeScript recent news December"}
+{"input": "climate tech recent news December /only:lex", "output": "lex: climate tech recent news December best practices\nlex: climate tech recent news December guide\nlex: climate tech recent news December documentation"}
+{"input": "climate tech recent news December /only:vec", "output": "vec: how to climate tech recent news December\nvec: guide for climate tech recent news December"}
+{"input": "Next.js recent news October /only:lex", "output": "lex: Next.js recent news October guide\nlex: Next.js recent news October documentation\nlex: Next.js recent news October best practices"}
+{"input": "Next.js recent news October /only:vec", "output": "vec: complete Next.js recent news October reference\nvec: guide for Next.js recent news October"}
+{"input": "AI latest version release /only:lex", "output": "lex: AI latest version release guide\nlex: AI latest version release examples\nlex: AI latest version release documentation"}
+{"input": "AI latest version release /only:vec", "output": "vec: understanding AI latest version release\nvec: how to AI latest version release"}
+{"input": "latest Next.js updates /only:lex", "output": "lex: latest Next.js updates documentation\nlex: latest Next.js updates tutorial\nlex: latest Next.js updates guide"}
+{"input": "latest Next.js updates /only:vec", "output": "vec: understanding latest Next.js updates\nvec: learn about latest Next.js updates"}
+{"input": "Vue new features 2026 /only:lex", "output": "lex: Vue new features 2026 examples\nlex: Vue new features 2026 guide\nlex: Vue new features 2026 documentation"}
+{"input": "Vue new features 2026 /only:vec", "output": "vec: guide for Vue new features 2026\nvec: understanding Vue new features 2026"}
+{"input": "space exploration new features 2026 /only:lex", "output": "lex: space exploration new features 2026 tutorial\nlex: space exploration new features 2026 best practices\nlex: space exploration new features 2026 guide"}
+{"input": "space exploration new features 2026 /only:vec", "output": "vec: understanding space exploration new features 2026\nvec: learn about space exploration new features 2026"}
+{"input": "recent Shopify changes 2026 /only:lex", "output": "lex: recent Shopify changes 2026 examples\nlex: recent Shopify changes 2026 best practices\nlex: recent Shopify changes 2026 tutorial"}
+{"input": "recent Shopify changes 2026 /only:vec", "output": "vec: how to recent Shopify changes 2026\nvec: understanding recent Shopify changes 2026"}
+{"input": "machine learning latest version release /only:lex", "output": "lex: machine learning latest version release documentation\nlex: machine learning latest version release tutorial\nlex: machine learning latest version release examples"}
+{"input": "machine learning latest version release /only:vec", "output": "vec: complete machine learning latest version release reference\nvec: understanding machine learning latest version release"}
+{"input": "Docker new features 2026 /only:lex", "output": "lex: Docker new features 2026 tutorial\nlex: Docker new features 2026 guide\nlex: Docker new features 2026 best practices"}
+{"input": "Docker new features 2026 /only:vec", "output": "vec: how to Docker new features 2026\nvec: complete Docker new features 2026 reference"}
+{"input": "Python recent news December /only:lex", "output": "lex: Python recent news December guide\nlex: Python recent news December best practices\nlex: Python recent news December tutorial"}
+{"input": "Python recent news December /only:vec", "output": "vec: complete Python recent news December reference\nvec: understanding Python recent news December"}
+{"input": "what changed in React 2026 /only:lex", "output": "lex: what changed in React 2026 documentation\nlex: what changed in React 2026 examples\nlex: what changed in React 2026 guide"}
+{"input": "what changed in React 2026 /only:vec", "output": "vec: learn about what changed in React 2026\nvec: understanding what changed in React 2026"}
+{"input": "Docker changelog 2025 /only:lex", "output": "lex: Docker changelog 2025 examples\nlex: Docker changelog 2025 best practices\nlex: Docker changelog 2025 tutorial"}
+{"input": "Docker changelog 2025 /only:vec", "output": "vec: understanding Docker changelog 2025\nvec: complete Docker changelog 2025 reference"}
+{"input": "what changed in Docker 2026 /only:lex", "output": "lex: what changed in Docker 2026 best practices\nlex: what changed in Docker 2026 documentation\nlex: what changed in Docker 2026 examples"}
+{"input": "what changed in Docker 2026 /only:vec", "output": "vec: complete what changed in Docker 2026 reference\nvec: understanding what changed in Docker 2026"}
+{"input": "recent Next.js changes 2026 /only:lex", "output": "lex: recent Next.js changes 2026 best practices\nlex: recent Next.js changes 2026 guide\nlex: recent Next.js changes 2026 documentation"}
+{"input": "recent Next.js changes 2026 /only:vec", "output": "vec: understanding recent Next.js changes 2026\nvec: learn about recent Next.js changes 2026"}
+{"input": "latest climate tech updates /only:lex", "output": "lex: latest climate tech updates examples\nlex: latest climate tech updates tutorial\nlex: latest climate tech updates best practices"}
+{"input": "latest climate tech updates /only:vec", "output": "vec: understanding latest climate tech updates\nvec: complete latest climate tech updates reference"}
+{"input": "machine learning changelog 2026 /only:lex", "output": "lex: machine learning changelog 2026 documentation\nlex: machine learning changelog 2026 guide\nlex: machine learning changelog 2026 examples"}
+{"input": "machine learning changelog 2026 /only:vec", "output": "vec: guide for machine learning changelog 2026\nvec: learn about machine learning changelog 2026"}
+{"input": "what changed in AWS 2025 /only:lex", "output": "lex: what changed in AWS 2025 examples\nlex: what changed in AWS 2025 guide\nlex: what changed in AWS 2025 best practices"}
+{"input": "what changed in AWS 2025 /only:vec", "output": "vec: complete what changed in AWS 2025 reference\nvec: learn about what changed in AWS 2025"}
+{"input": "Kubernetes recent news November /only:lex", "output": "lex: Kubernetes recent news November guide\nlex: Kubernetes recent news November tutorial\nlex: Kubernetes recent news November best practices"}
+{"input": "Kubernetes recent news November /only:vec", "output": "vec: how to Kubernetes recent news November\nvec: guide for Kubernetes recent news November"}
+{"input": "AI changelog 2025 /only:lex", "output": "lex: AI changelog 2025 examples\nlex: AI changelog 2025 best practices\nlex: AI changelog 2025 tutorial"}
+{"input": "AI changelog 2025 /only:vec", "output": "vec: guide for AI changelog 2025\nvec: learn about AI changelog 2025"}
+{"input": "recent Next.js changes 2025 /only:lex", "output": "lex: recent Next.js changes 2025 documentation\nlex: recent Next.js changes 2025 examples\nlex: recent Next.js changes 2025 best practices"}
+{"input": "recent Next.js changes 2025 /only:vec", "output": "vec: how to recent Next.js changes 2025\nvec: complete recent Next.js changes 2025 reference"}
+{"input": "Python recent news October /only:lex", "output": "lex: Python recent news October examples\nlex: Python recent news October documentation\nlex: Python recent news October best practices"}
+{"input": "Python recent news October /only:vec", "output": "vec: complete Python recent news October reference\nvec: guide for Python recent news October"}
+{"input": "recent Vue changes 2025 /only:lex", "output": "lex: recent Vue changes 2025 tutorial\nlex: recent Vue changes 2025 best practices\nlex: recent Vue changes 2025 guide"}
+{"input": "recent Vue changes 2025 /only:vec", "output": "vec: guide for recent Vue changes 2025\nvec: complete recent Vue changes 2025 reference"}
+{"input": "AI new features 2026 /only:lex", "output": "lex: AI new features 2026 documentation\nlex: AI new features 2026 guide\nlex: AI new features 2026 tutorial"}
+{"input": "AI new features 2026 /only:vec", "output": "vec: how to AI new features 2026\nvec: complete AI new features 2026 reference"}
+{"input": "React new features 2026 /only:lex", "output": "lex: React new features 2026 documentation\nlex: React new features 2026 tutorial\nlex: React new features 2026 examples"}
+{"input": "React new features 2026 /only:vec", "output": "vec: learn about React new features 2026\nvec: complete React new features 2026 reference"}
+{"input": "Vue new features 2025 /only:lex", "output": "lex: Vue new features 2025 documentation\nlex: Vue new features 2025 best practices\nlex: Vue new features 2025 guide"}
+{"input": "Vue new features 2025 /only:vec", "output": "vec: guide for Vue new features 2025\nvec: understanding Vue new features 2025"}
+{"input": "climate tech latest version release /only:lex", "output": "lex: climate tech latest version release examples\nlex: climate tech latest version release tutorial\nlex: climate tech latest version release best practices"}
+{"input": "climate tech latest version release /only:vec", "output": "vec: complete climate tech latest version release reference\nvec: guide for climate tech latest version release"}
+{"input": "Python latest version release /only:lex", "output": "lex: Python latest version release tutorial\nlex: Python latest version release guide\nlex: Python latest version release best practices"}
+{"input": "Python latest version release /only:vec", "output": "vec: understanding Python latest version release\nvec: learn about Python latest version release"}
+{"input": "AWS recent news December /only:lex", "output": "lex: AWS recent news December guide\nlex: AWS recent news December examples\nlex: AWS recent news December tutorial"}
+{"input": "AWS recent news December /only:vec", "output": "vec: complete AWS recent news December reference\nvec: how to AWS recent news December"}
+{"input": "GitHub changelog 2025 /only:lex", "output": "lex: GitHub changelog 2025 tutorial\nlex: GitHub changelog 2025 guide\nlex: GitHub changelog 2025 documentation"}
+{"input": "GitHub changelog 2025 /only:vec", "output": "vec: understanding GitHub changelog 2025\nvec: complete GitHub changelog 2025 reference"}
+{"input": "what changed in machine learning 2026 /only:lex", "output": "lex: what changed in machine learning 2026 tutorial\nlex: what changed in machine learning 2026 examples\nlex: what changed in machine learning 2026 guide"}
+{"input": "what changed in machine learning 2026 /only:vec", "output": "vec: learn about what changed in machine learning 2026\nvec: how to what changed in machine learning 2026"}
+{"input": "space exploration recent news October /only:lex", "output": "lex: space exploration recent news October documentation\nlex: space exploration recent news October guide\nlex: space exploration recent news October examples"}
+{"input": "space exploration recent news October /only:vec", "output": "vec: learn about space exploration recent news October\nvec: understanding space exploration recent news October"}
+{"input": "React changelog 2026 /only:lex", "output": "lex: React changelog 2026 tutorial\nlex: React changelog 2026 examples\nlex: React changelog 2026 documentation"}
+{"input": "React changelog 2026 /only:vec", "output": "vec: how to React changelog 2026\nvec: understanding React changelog 2026"}
+{"input": "React changelog 2025 /only:lex", "output": "lex: React changelog 2025 tutorial\nlex: React changelog 2025 guide\nlex: React changelog 2025 best practices"}
+{"input": "React changelog 2025 /only:vec", "output": "vec: complete React changelog 2025 reference\nvec: how to React changelog 2025"}
+{"input": "machine learning recent news November /only:lex", "output": "lex: machine learning recent news November tutorial\nlex: machine learning recent news November guide\nlex: machine learning recent news November examples"}
+{"input": "machine learning recent news November /only:vec", "output": "vec: how to machine learning recent news November\nvec: understanding machine learning recent news November"}
+{"input": "GitHub new features 2025 /only:lex", "output": "lex: GitHub new features 2025 guide\nlex: GitHub new features 2025 tutorial\nlex: GitHub new features 2025 examples"}
+{"input": "GitHub new features 2025 /only:vec", "output": "vec: learn about GitHub new features 2025\nvec: how to GitHub new features 2025"}
+{"input": "machine learning new features 2025 /only:lex", "output": "lex: machine learning new features 2025 tutorial\nlex: machine learning new features 2025 documentation\nlex: machine learning new features 2025 best practices"}
+{"input": "machine learning new features 2025 /only:vec", "output": "vec: how to machine learning new features 2025\nvec: learn about machine learning new features 2025"}
+{"input": "AI recent news November /only:lex", "output": "lex: AI recent news November documentation\nlex: AI recent news November guide\nlex: AI recent news November examples"}
+{"input": "AI recent news November /only:vec", "output": "vec: learn about AI recent news November\nvec: understanding AI recent news November"}
+{"input": "Python new features 2025 /only:lex", "output": "lex: Python new features 2025 tutorial\nlex: Python new features 2025 documentation\nlex: Python new features 2025 examples"}
+{"input": "Python new features 2025 /only:vec", "output": "vec: understanding Python new features 2025\nvec: complete Python new features 2025 reference"}
+{"input": "latest Shopify updates /only:lex", "output": "lex: latest Shopify updates best practices\nlex: latest Shopify updates documentation\nlex: latest Shopify updates guide"}
+{"input": "latest Shopify updates /only:vec", "output": "vec: complete latest Shopify updates reference\nvec: guide for latest Shopify updates"}
+{"input": "Kubernetes new features 2025 /only:lex", "output": "lex: Kubernetes new features 2025 examples\nlex: Kubernetes new features 2025 documentation\nlex: Kubernetes new features 2025 best practices"}
+{"input": "Kubernetes new features 2025 /only:vec", "output": "vec: guide for Kubernetes new features 2025\nvec: complete Kubernetes new features 2025 reference"}
+{"input": "what changed in AI 2026 /only:lex", "output": "lex: what changed in AI 2026 guide\nlex: what changed in AI 2026 documentation\nlex: what changed in AI 2026 tutorial"}
+{"input": "what changed in AI 2026 /only:vec", "output": "vec: guide for what changed in AI 2026\nvec: understanding what changed in AI 2026"}
+{"input": "machine learning new features 2026 /only:lex", "output": "lex: machine learning new features 2026 best practices\nlex: machine learning new features 2026 guide\nlex: machine learning new features 2026 examples"}
+{"input": "machine learning new features 2026 /only:vec", "output": "vec: understanding machine learning new features 2026\nvec: how to machine learning new features 2026"}
+{"input": "recent Shopify changes 2025 /only:lex", "output": "lex: recent Shopify changes 2025 examples\nlex: recent Shopify changes 2025 tutorial\nlex: recent Shopify changes 2025 best practices"}
+{"input": "recent Shopify changes 2025 /only:vec", "output": "vec: complete recent Shopify changes 2025 reference\nvec: how to recent Shopify changes 2025"}
+{"input": "what changed in machine learning 2025 /only:lex", "output": "lex: what changed in machine learning 2025 guide\nlex: what changed in machine learning 2025 best practices\nlex: what changed in machine learning 2025 documentation"}
+{"input": "what changed in machine learning 2025 /only:vec", "output": "vec: learn about what changed in machine learning 2025\nvec: complete what changed in machine learning 2025 reference"}
+{"input": "Shopify new features 2026 /only:lex", "output": "lex: Shopify new features 2026 best practices\nlex: Shopify new features 2026 examples\nlex: Shopify new features 2026 guide"}
+{"input": "Shopify new features 2026 /only:vec", "output": "vec: understanding Shopify new features 2026\nvec: complete Shopify new features 2026 reference"}
+{"input": "Docker recent news November /only:lex", "output": "lex: Docker recent news November examples\nlex: Docker recent news November best practices\nlex: Docker recent news November tutorial"}
+{"input": "Docker recent news November /only:vec", "output": "vec: understanding Docker recent news November\nvec: guide for Docker recent news November"}
+{"input": "latest Vue updates /only:lex", "output": "lex: latest Vue updates documentation\nlex: latest Vue updates tutorial\nlex: latest Vue updates best practices"}
+{"input": "latest Vue updates /only:vec", "output": "vec: understanding latest Vue updates\nvec: learn about latest Vue updates"}
+{"input": "Next.js new features 2026 /only:lex", "output": "lex: Next.js new features 2026 examples\nlex: Next.js new features 2026 guide\nlex: Next.js new features 2026 best practices"}
+{"input": "Next.js new features 2026 /only:vec", "output": "vec: learn about Next.js new features 2026\nvec: how to Next.js new features 2026"}
+{"input": "GitHub new features 2026 /only:lex", "output": "lex: GitHub new features 2026 examples\nlex: GitHub new features 2026 tutorial\nlex: GitHub new features 2026 documentation"}
+{"input": "GitHub new features 2026 /only:vec", "output": "vec: how to GitHub new features 2026\nvec: understanding GitHub new features 2026"}
+{"input": "AWS new features 2025 /only:lex", "output": "lex: AWS new features 2025 best practices\nlex: AWS new features 2025 guide\nlex: AWS new features 2025 tutorial"}
+{"input": "AWS new features 2025 /only:vec", "output": "vec: how to AWS new features 2025\nvec: understanding AWS new features 2025"}
+{"input": "what changed in Python 2026 /only:lex", "output": "lex: what changed in Python 2026 tutorial\nlex: what changed in Python 2026 best practices\nlex: what changed in Python 2026 guide"}
+{"input": "what changed in Python 2026 /only:vec", "output": "vec: guide for what changed in Python 2026\nvec: learn about what changed in Python 2026"}
+{"input": "what changed in TypeScript 2025 /only:lex", "output": "lex: what changed in TypeScript 2025 best practices\nlex: what changed in TypeScript 2025 tutorial\nlex: what changed in TypeScript 2025 documentation"}
+{"input": "what changed in TypeScript 2025 /only:vec", "output": "vec: complete what changed in TypeScript 2025 reference\nvec: understanding what changed in TypeScript 2025"}
+{"input": "recent space exploration changes 2026 /only:lex", "output": "lex: recent space exploration changes 2026 best practices\nlex: recent space exploration changes 2026 documentation\nlex: recent space exploration changes 2026 tutorial"}
+{"input": "recent space exploration changes 2026 /only:vec", "output": "vec: understanding recent space exploration changes 2026\nvec: learn about recent space exploration changes 2026"}
+{"input": "AWS new features 2026 /only:lex", "output": "lex: AWS new features 2026 documentation\nlex: AWS new features 2026 tutorial\nlex: AWS new features 2026 examples"}
+{"input": "AWS new features 2026 /only:vec", "output": "vec: complete AWS new features 2026 reference\nvec: understanding AWS new features 2026"}
+{"input": "recent TypeScript changes 2025 /only:lex", "output": "lex: recent TypeScript changes 2025 examples\nlex: recent TypeScript changes 2025 documentation\nlex: recent TypeScript changes 2025 guide"}
+{"input": "recent TypeScript changes 2025 /only:vec", "output": "vec: learn about recent TypeScript changes 2025\nvec: guide for recent TypeScript changes 2025"}
+{"input": "latest TypeScript updates /only:lex", "output": "lex: latest TypeScript updates examples\nlex: latest TypeScript updates guide\nlex: latest TypeScript updates best practices"}
+{"input": "latest TypeScript updates /only:vec", "output": "vec: complete latest TypeScript updates reference\nvec: learn about latest TypeScript updates"}
+{"input": "what changed in React 2025 /only:lex", "output": "lex: what changed in React 2025 documentation\nlex: what changed in React 2025 tutorial\nlex: what changed in React 2025 best practices"}
+{"input": "what changed in React 2025 /only:vec", "output": "vec: learn about what changed in React 2025\nvec: understanding what changed in React 2025"}
+{"input": "AWS changelog 2025 /only:lex", "output": "lex: AWS changelog 2025 examples\nlex: AWS changelog 2025 tutorial\nlex: AWS changelog 2025 documentation"}
+{"input": "AWS changelog 2025 /only:vec", "output": "vec: how to AWS changelog 2025\nvec: complete AWS changelog 2025 reference"}
+{"input": "space exploration changelog 2026 /only:lex", "output": "lex: space exploration changelog 2026 documentation\nlex: space exploration changelog 2026 best practices\nlex: space exploration changelog 2026 guide"}
+{"input": "space exploration changelog 2026 /only:vec", "output": "vec: learn about space exploration changelog 2026\nvec: how to space exploration changelog 2026"}
+{"input": "React new features 2025 /only:lex", "output": "lex: React new features 2025 best practices\nlex: React new features 2025 guide\nlex: React new features 2025 tutorial"}
+{"input": "React new features 2025 /only:vec", "output": "vec: complete React new features 2025 reference\nvec: how to React new features 2025"}
+{"input": "AWS latest version release /only:lex", "output": "lex: AWS latest version release guide\nlex: AWS latest version release documentation\nlex: AWS latest version release best practices"}
+{"input": "AWS latest version release /only:vec", "output": "vec: complete AWS latest version release reference\nvec: understanding AWS latest version release"}
+{"input": "latest space exploration updates /only:lex", "output": "lex: latest space exploration updates documentation\nlex: latest space exploration updates guide\nlex: latest space exploration updates examples"}
+{"input": "latest space exploration updates /only:vec", "output": "vec: understanding latest space exploration updates\nvec: complete latest space exploration updates reference"}
+{"input": "Kubernetes latest version release /only:lex", "output": "lex: Kubernetes latest version release best practices\nlex: Kubernetes latest version release documentation\nlex: Kubernetes latest version release guide"}
+{"input": "Kubernetes latest version release /only:vec", "output": "vec: understanding Kubernetes latest version release\nvec: how to Kubernetes latest version release"}
+{"input": "React recent news November /only:lex", "output": "lex: React recent news November best practices\nlex: React recent news November examples\nlex: React recent news November guide"}
+{"input": "React recent news November /only:vec", "output": "vec: guide for React recent news November\nvec: how to React recent news November"}
+{"input": "TypeScript recent news November /only:lex", "output": "lex: TypeScript recent news November documentation\nlex: TypeScript recent news November examples\nlex: TypeScript recent news November guide"}
+{"input": "TypeScript recent news November /only:vec", "output": "vec: guide for TypeScript recent news November\nvec: understanding TypeScript recent news November"}
+{"input": "what changed in AI 2025 /only:lex", "output": "lex: what changed in AI 2025 guide\nlex: what changed in AI 2025 examples\nlex: what changed in AI 2025 tutorial"}
+{"input": "what changed in AI 2025 /only:vec", "output": "vec: how to what changed in AI 2025\nvec: understanding what changed in AI 2025"}
+{"input": "Docker recent news December /only:lex", "output": "lex: Docker recent news December guide\nlex: Docker recent news December documentation\nlex: Docker recent news December tutorial"}
+{"input": "Docker recent news December /only:vec", "output": "vec: guide for Docker recent news December\nvec: understanding Docker recent news December"}
+{"input": "TypeScript changelog 2026 /only:lex", "output": "lex: TypeScript changelog 2026 guide\nlex: TypeScript changelog 2026 tutorial\nlex: TypeScript changelog 2026 examples"}
+{"input": "TypeScript changelog 2026 /only:vec", "output": "vec: understanding TypeScript changelog 2026\nvec: how to TypeScript changelog 2026"}
+{"input": "space exploration new features 2025 /only:lex", "output": "lex: space exploration new features 2025 examples\nlex: space exploration new features 2025 documentation\nlex: space exploration new features 2025 tutorial"}
+{"input": "space exploration new features 2025 /only:vec", "output": "vec: how to space exploration new features 2025\nvec: understanding space exploration new features 2025"}
+{"input": "space exploration recent news December /only:lex", "output": "lex: space exploration recent news December examples\nlex: space exploration recent news December guide\nlex: space exploration recent news December tutorial"}
+{"input": "space exploration recent news December /only:vec", "output": "vec: guide for space exploration recent news December\nvec: learn about space exploration recent news December"}
+{"input": "Shopify changelog 2026 /only:lex", "output": "lex: Shopify changelog 2026 tutorial\nlex: Shopify changelog 2026 examples\nlex: Shopify changelog 2026 documentation"}
+{"input": "Shopify changelog 2026 /only:vec", "output": "vec: understanding Shopify changelog 2026\nvec: complete Shopify changelog 2026 reference"}
+{"input": "AWS recent news November /only:lex", "output": "lex: AWS recent news November documentation\nlex: AWS recent news November guide\nlex: AWS recent news November examples"}
+{"input": "AWS recent news November /only:vec", "output": "vec: understanding AWS recent news November\nvec: complete AWS recent news November reference"}
+{"input": "AWS recent news October /only:lex", "output": "lex: AWS recent news October tutorial\nlex: AWS recent news October examples\nlex: AWS recent news October documentation"}
+{"input": "AWS recent news October /only:vec", "output": "vec: learn about AWS recent news October\nvec: guide for AWS recent news October"}
+{"input": "Next.js recent news December /only:lex", "output": "lex: Next.js recent news December guide\nlex: Next.js recent news December documentation\nlex: Next.js recent news December best practices"}
+{"input": "Next.js recent news December /only:vec", "output": "vec: guide for Next.js recent news December\nvec: how to Next.js recent news December"}
+{"input": "space exploration recent news November /only:lex", "output": "lex: space exploration recent news November guide\nlex: space exploration recent news November examples\nlex: space exploration recent news November tutorial"}
+{"input": "space exploration recent news November /only:vec", "output": "vec: guide for space exploration recent news November\nvec: learn about space exploration recent news November"}
+{"input": "what changed in Python 2025 /only:lex", "output": "lex: what changed in Python 2025 guide\nlex: what changed in Python 2025 tutorial\nlex: what changed in Python 2025 documentation"}
+{"input": "what changed in Python 2025 /only:vec", "output": "vec: learn about what changed in Python 2025\nvec: guide for what changed in Python 2025"}
+{"input": "GitHub recent news November /only:lex", "output": "lex: GitHub recent news November documentation\nlex: GitHub recent news November tutorial\nlex: GitHub recent news November examples"}
+{"input": "GitHub recent news November /only:vec", "output": "vec: complete GitHub recent news November reference\nvec: learn about GitHub recent news November"}
+{"input": "machine learning changelog 2025 /only:lex", "output": "lex: machine learning changelog 2025 examples\nlex: machine learning changelog 2025 guide\nlex: machine learning changelog 2025 best practices"}
+{"input": "machine learning changelog 2025 /only:vec", "output": "vec: how to machine learning changelog 2025\nvec: learn about machine learning changelog 2025"}
+{"input": "Next.js recent news November /only:lex", "output": "lex: Next.js recent news November guide\nlex: Next.js recent news November tutorial\nlex: Next.js recent news November examples"}
+{"input": "Next.js recent news November /only:vec", "output": "vec: complete Next.js recent news November reference\nvec: learn about Next.js recent news November"}
+{"input": "latest AWS updates /only:lex", "output": "lex: latest AWS updates best practices\nlex: latest AWS updates documentation\nlex: latest AWS updates examples"}
+{"input": "latest AWS updates /only:vec", "output": "vec: guide for latest AWS updates\nvec: complete latest AWS updates reference"}
+{"input": "recent Vue changes 2026 /only:lex", "output": "lex: recent Vue changes 2026 examples\nlex: recent Vue changes 2026 guide\nlex: recent Vue changes 2026 best practices"}
+{"input": "recent Vue changes 2026 /only:vec", "output": "vec: how to recent Vue changes 2026\nvec: complete recent Vue changes 2026 reference"}
+{"input": "what changed in space exploration 2025 /only:lex", "output": "lex: what changed in space exploration 2025 documentation\nlex: what changed in space exploration 2025 examples\nlex: what changed in space exploration 2025 best practices"}
+{"input": "what changed in space exploration 2025 /only:vec", "output": "vec: understanding what changed in space exploration 2025\nvec: learn about what changed in space exploration 2025"}
+{"input": "TypeScript new features 2026 /only:lex", "output": "lex: TypeScript new features 2026 best practices\nlex: TypeScript new features 2026 tutorial\nlex: TypeScript new features 2026 guide"}
+{"input": "TypeScript new features 2026 /only:vec", "output": "vec: learn about TypeScript new features 2026\nvec: complete TypeScript new features 2026 reference"}
+{"input": "what changed in GitHub 2025 /only:lex", "output": "lex: what changed in GitHub 2025 guide\nlex: what changed in GitHub 2025 documentation\nlex: what changed in GitHub 2025 best practices"}
+{"input": "what changed in GitHub 2025 /only:vec", "output": "vec: learn about what changed in GitHub 2025\nvec: complete what changed in GitHub 2025 reference"}
+{"input": "recent climate tech changes 2026 /only:lex", "output": "lex: recent climate tech changes 2026 best practices\nlex: recent climate tech changes 2026 guide\nlex: recent climate tech changes 2026 tutorial"}
+{"input": "recent climate tech changes 2026 /only:vec", "output": "vec: how to recent climate tech changes 2026\nvec: learn about recent climate tech changes 2026"}
+{"input": "Python changelog 2026 /only:lex", "output": "lex: Python changelog 2026 documentation\nlex: Python changelog 2026 guide\nlex: Python changelog 2026 best practices"}
+{"input": "Python changelog 2026 /only:vec", "output": "vec: how to Python changelog 2026\nvec: understanding Python changelog 2026"}
+{"input": "who is TDS motorsports /only:lex", "output": "lex: who is TDS motorsports tutorial\nlex: who is TDS motorsports guide\nlex: who is TDS motorsports documentation"}
+{"input": "who is TDS motorsports /only:vec", "output": "vec: learn about who is TDS motorsports\nvec: guide for who is TDS motorsports"}
+{"input": "React hooks tutorial /only:lex", "output": "lex: React hooks tutorial examples\nlex: React hooks tutorial documentation\nlex: React hooks tutorial tutorial"}
+{"input": "React hooks tutorial /only:vec", "output": "vec: understanding React hooks tutorial\nvec: how to React hooks tutorial"}
+{"input": "Docker container networking /only:lex", "output": "lex: Docker container networking tutorial\nlex: Docker container networking examples\nlex: Docker container networking best practices"}
+{"input": "Docker container networking /only:vec", "output": "vec: complete Docker container networking reference\nvec: understanding Docker container networking"}
+{"input": "Kubernetes pod deployment /only:lex", "output": "lex: Kubernetes pod deployment best practices\nlex: Kubernetes pod deployment documentation\nlex: Kubernetes pod deployment examples"}
+{"input": "Kubernetes pod deployment /only:vec", "output": "vec: how to Kubernetes pod deployment\nvec: complete Kubernetes pod deployment reference"}
+{"input": "AWS Lambda functions setup /only:lex", "output": "lex: AWS Lambda functions setup documentation\nlex: AWS Lambda functions setup examples\nlex: AWS Lambda functions setup tutorial"}
+{"input": "AWS Lambda functions setup /only:vec", "output": "vec: learn about AWS Lambda functions setup\nvec: how to AWS Lambda functions setup"}
+{"input": "Stripe payment integration /only:lex", "output": "lex: Stripe payment integration examples\nlex: Stripe payment integration tutorial\nlex: Stripe payment integration documentation"}
+{"input": "Stripe payment integration /only:vec", "output": "vec: learn about Stripe payment integration\nvec: understanding Stripe payment integration"}
+{"input": "GitHub Actions workflow /only:lex", "output": "lex: GitHub Actions workflow guide\nlex: GitHub Actions workflow examples\nlex: GitHub Actions workflow documentation"}
+{"input": "GitHub Actions workflow /only:vec", "output": "vec: understanding GitHub Actions workflow\nvec: guide for GitHub Actions workflow"}
+{"input": "Vercel deployment guide /only:lex", "output": "lex: Vercel deployment guide examples\nlex: Vercel deployment guide documentation\nlex: Vercel deployment guide tutorial"}
+{"input": "Vercel deployment guide /only:vec", "output": "vec: learn about Vercel deployment guide\nvec: understanding Vercel deployment guide"}
+{"input": "Supabase auth configuration /only:lex", "output": "lex: Supabase auth configuration documentation\nlex: Supabase auth configuration tutorial\nlex: Supabase auth configuration best practices"}
+{"input": "Supabase auth configuration /only:vec", "output": "vec: understanding Supabase auth configuration\nvec: learn about Supabase auth configuration"}
+{"input": "Twilio SMS API /only:lex", "output": "lex: Twilio SMS API guide\nlex: Twilio SMS API examples\nlex: Twilio SMS API documentation"}
+{"input": "Twilio SMS API /only:vec", "output": "vec: how to Twilio SMS API\nvec: complete Twilio SMS API reference"}
+{"input": "Datadog monitoring setup /only:lex", "output": "lex: Datadog monitoring setup guide\nlex: Datadog monitoring setup best practices\nlex: Datadog monitoring setup examples"}
+{"input": "Datadog monitoring setup /only:vec", "output": "vec: complete Datadog monitoring setup reference\nvec: understanding Datadog monitoring setup"}
+{"input": "Sentry error tracking /only:lex", "output": "lex: Sentry error tracking best practices\nlex: Sentry error tracking guide\nlex: Sentry error tracking documentation"}
+{"input": "Sentry error tracking /only:vec", "output": "vec: understanding Sentry error tracking\nvec: learn about Sentry error tracking"}
+{"input": "Terraform AWS provider /only:lex", "output": "lex: Terraform AWS provider tutorial\nlex: Terraform AWS provider guide\nlex: Terraform AWS provider best practices"}
+{"input": "Terraform AWS provider /only:vec", "output": "vec: how to Terraform AWS provider\nvec: understanding Terraform AWS provider"}
+{"input": "Ansible playbook examples /only:lex", "output": "lex: Ansible playbook examples best practices\nlex: Ansible playbook examples examples\nlex: Ansible playbook examples tutorial"}
+{"input": "Ansible playbook examples /only:vec", "output": "vec: understanding Ansible playbook examples\nvec: how to Ansible playbook examples"}
+{"input": "ssh key authentication /only:lex", "output": "lex: ssh key auth setup\nlex: ssh public private key pair\nlex: passwordless ssh login"}
+{"input": "ssh key authentication /only:vec", "output": "vec: how to set up ssh key-based authentication instead of passwords\nvec: step-by-step guide to generating and configuring ssh keys for secure server access"}
+{"input": "ssh key authentication /only:hyde", "output": "hyde: Generate an SSH key pair with ssh-keygen -t ed25519. Copy the public key to ~/.ssh/authorized_keys on the remote server using ssh-copy-id. Ensure permissions are 700 for .ssh and 600 for authorized_keys."}
+{"input": "Python virtual environments /only:lex", "output": "lex: python venv virtualenv\nlex: pip virtual environment setup\nlex: python isolated dependencies"}
+{"input": "Python virtual environments /only:vec", "output": "vec: how to create and activate a python virtual environment for project isolation\nvec: what is the difference between venv, virtualenv, and conda for managing python dependencies"}
+{"input": "Python virtual environments /only:hyde", "output": "hyde: Create a virtual environment with python -m venv myenv, then activate it with source myenv/bin/activate on Unix or myenv\\Scripts\\activate on Windows. Install packages with pip and they stay isolated from your system Python."}
+{"input": "git merge conflicts /only:lex", "output": "lex: git merge conflict resolve\nlex: git conflict markers HEAD\nlex: resolving merge conflicts"}
+{"input": "git merge conflicts /only:vec", "output": "vec: how to resolve merge conflicts in git when two branches modify the same lines\nvec: what do the conflict markers mean and how do you manually edit conflicted files"}
+{"input": "git merge conflicts /only:hyde", "output": "hyde: Git marks conflicts with <<<<<<< HEAD, =======, and >>>>>>> branch-name. Edit the file to keep the code you want, remove the markers, then git add the file and commit. Use git mergetool for a visual diff interface."}
+{"input": "TCP vs UDP /only:lex", "output": "lex: tcp udp protocol difference\nlex: tcp reliable udp fast\nlex: connection-oriented vs connectionless"}
+{"input": "TCP vs UDP /only:vec", "output": "vec: what are the key differences between TCP and UDP network protocols\nvec: when should you use TCP versus UDP for application networking"}
+{"input": "TCP vs UDP /only:hyde", "output": "hyde: TCP provides reliable, ordered delivery with acknowledgments and retransmission. UDP is faster but unreliable\u2014packets may arrive out of order or not at all. Use TCP for web, email, file transfer. Use UDP for video streaming, gaming, DNS where speed matters more than reliability."}
+{"input": "Docker compose volumes /only:lex", "output": "lex: docker compose volume mount\nlex: docker persistent storage volumes\nlex: compose yaml volumes section"}
+{"input": "Docker compose volumes /only:vec", "output": "vec: how to configure persistent volumes in docker compose for data that survives container restarts\nvec: what is the difference between bind mounts and named volumes in docker compose"}
+{"input": "Docker compose volumes /only:hyde", "output": "hyde: In docker-compose.yml, define volumes under the top-level volumes key and reference them in services. Named volumes persist data in Docker's storage. Bind mounts map host directories directly: volumes: - ./data:/app/data for development, - myvolume:/app/data for production."}
+{"input": "regex lookahead lookbehind /only:lex", "output": "lex: regex lookahead assertion\nlex: regex lookbehind positive negative\nlex: zero-width assertions regex"}
+{"input": "regex lookahead lookbehind /only:vec", "output": "vec: how do lookahead and lookbehind assertions work in regular expressions\nvec: what is the syntax for positive and negative lookahead and lookbehind in regex"}
+{"input": "regex lookahead lookbehind /only:hyde", "output": "hyde: Lookahead (?=pattern) matches a position followed by pattern without consuming it. Negative lookahead (?!pattern) matches where pattern doesn't follow. Lookbehind (?<=pattern) matches a position preceded by pattern. Example: \\d+(?= dollars) matches numbers followed by 'dollars'."}
+{"input": "Kubernetes secrets management /only:lex", "output": "lex: kubernetes secrets k8s\nlex: k8s secret yaml base64\nlex: kubectl create secret"}
+{"input": "Kubernetes secrets management /only:vec", "output": "vec: how to create and use secrets in kubernetes for sensitive configuration data\nvec: what are best practices for managing secrets in kubernetes clusters"}
+{"input": "Kubernetes secrets management /only:hyde", "output": "hyde: Create secrets with kubectl create secret generic mysecret --from-literal=password=abc123. Reference in pods via env valueFrom secretKeyRef or volume mounts. Secrets are base64 encoded, not encrypted\u2014use sealed-secrets or external secret managers like Vault for production."}
+{"input": "CORS errors fix /only:lex", "output": "lex: cors error fix browser\nlex: access-control-allow-origin header\nlex: cors preflight request"}
+{"input": "CORS errors fix /only:vec", "output": "vec: how to fix CORS errors when making API requests from a web browser\nvec: what causes cross-origin resource sharing errors and how do you configure the server to allow them"}
+{"input": "CORS errors fix /only:hyde", "output": "hyde: CORS errors occur when a browser blocks requests to a different origin. Fix by adding Access-Control-Allow-Origin headers on the server. For Express: app.use(cors()). For preflight requests, handle OPTIONS and return Access-Control-Allow-Methods and Access-Control-Allow-Headers."}
+{"input": "PostgreSQL indexes explain /only:lex", "output": "lex: postgresql index explain analyze\nlex: postgres btree index performance\nlex: create index postgresql"}
+{"input": "PostgreSQL indexes explain /only:vec", "output": "vec: how to use EXPLAIN ANALYZE to understand query performance and index usage in postgresql\nvec: what types of indexes does postgresql support and when should you use each"}
+{"input": "PostgreSQL indexes explain /only:hyde", "output": "hyde: Run EXPLAIN ANALYZE SELECT... to see the query plan and actual execution time. Look for Seq Scan on large tables\u2014add an index with CREATE INDEX idx_name ON table(column). B-tree indexes work for equality and range queries, GIN for full-text search and arrays, GiST for geometric data."}
+{"input": "JWT token refresh /only:lex", "output": "lex: jwt refresh token flow\nlex: access token refresh token\nlex: jwt token expiration renewal"}
+{"input": "JWT token refresh /only:vec", "output": "vec: how does the jwt refresh token flow work for maintaining user sessions\nvec: what is the difference between access tokens and refresh tokens in jwt authentication"}
+{"input": "JWT token refresh /only:hyde", "output": "hyde: Access tokens are short-lived (15 min) and sent with each request. Refresh tokens are long-lived (days/weeks) and stored securely. When the access token expires, send the refresh token to /auth/refresh to get a new access token without re-authenticating."}
+{"input": "React useEffect cleanup /only:lex", "output": "lex: react useeffect cleanup function\nlex: useeffect return cleanup\nlex: react unmount cleanup"}
+{"input": "React useEffect cleanup /only:vec", "output": "vec: how to properly clean up side effects in react useeffect to prevent memory leaks\nvec: when does the useeffect cleanup function run and what should you clean up"}
+{"input": "React useEffect cleanup /only:hyde", "output": "hyde: Return a cleanup function from useEffect to run before the component unmounts or before the effect re-runs. Use it to cancel subscriptions, clear timers, and abort fetch requests. Example: useEffect(() => { const id = setInterval(fn, 1000); return () => clearInterval(id); }, []);"}
+{"input": "nginx reverse proxy /only:lex", "output": "lex: nginx reverse proxy config\nlex: nginx proxy_pass upstream\nlex: nginx load balancer setup"}
+{"input": "nginx reverse proxy /only:vec", "output": "vec: how to configure nginx as a reverse proxy to forward requests to backend servers\nvec: what nginx directives do you need for a basic reverse proxy configuration"}
+{"input": "nginx reverse proxy /only:hyde", "output": "hyde: In nginx.conf, use proxy_pass inside a location block: location /api { proxy_pass http://localhost:3000; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; }. Add upstream blocks for load balancing across multiple backend servers."}
+{"input": "systemd service file /only:lex", "output": "lex: systemd service unit file\nlex: systemctl enable start service\nlex: systemd service configuration"}
+{"input": "systemd service file /only:vec", "output": "vec: how to create a systemd service file to run an application as a linux daemon\nvec: what are the essential sections and directives in a systemd unit file"}
+{"input": "systemd service file /only:hyde", "output": "hyde: Create /etc/systemd/system/myapp.service with [Unit] Description, [Service] ExecStart=/path/to/app, Restart=always, User=appuser, and [Install] WantedBy=multi-user.target. Run systemctl daemon-reload, then systemctl enable --now myapp."}
+{"input": "websocket vs http /only:lex", "output": "lex: websocket http difference\nlex: websocket persistent connection\nlex: http polling vs websocket"}
+{"input": "websocket vs http /only:vec", "output": "vec: what are the differences between websockets and http for real-time communication\nvec: when should you use websockets instead of http long polling or server-sent events"}
+{"input": "websocket vs http /only:hyde", "output": "hyde: HTTP is request-response: client asks, server answers, connection closes. WebSocket upgrades HTTP to a persistent bidirectional connection. Use WebSocket for chat, live updates, gaming. Use SSE for server-to-client only streaming. HTTP polling wastes bandwidth with repeated requests."}
+{"input": "SQL injection prevention /only:lex", "output": "lex: sql injection prevent parameterized\nlex: prepared statements sql injection\nlex: sql injection sanitize input"}
+{"input": "SQL injection prevention /only:vec", "output": "vec: how to prevent sql injection attacks in web applications\nvec: why are parameterized queries and prepared statements important for database security"}
+{"input": "SQL injection prevention /only:hyde", "output": "hyde: Never concatenate user input into SQL strings. Use parameterized queries: cursor.execute('SELECT * FROM users WHERE id = ?', (user_id,)). ORMs like SQLAlchemy handle this automatically. Validate and sanitize input, but parameterization is the primary defense."}
+{"input": "TypeScript generics /only:lex", "output": "lex: typescript generics type parameter\nlex: typescript generic function interface\nlex: ts generics constraints extends"}
+{"input": "TypeScript generics /only:vec", "output": "vec: how to use generics in typescript to write reusable type-safe functions and classes\nvec: what is the syntax for generic type parameters and constraints in typescript"}
+{"input": "TypeScript generics /only:hyde", "output": "hyde: Generics let you write flexible, reusable code while maintaining type safety. Declare with angle brackets: function identity<T>(arg: T): T { return arg; }. Add constraints with extends: function getLength<T extends { length: number }>(item: T): number { return item.length; }."}
+{"input": "OAuth 2.0 authorization code flow /only:lex", "output": "lex: oauth2 authorization code flow\nlex: oauth authorization code grant\nlex: oauth2 pkce code verifier"}
+{"input": "OAuth 2.0 authorization code flow /only:vec", "output": "vec: how does the oauth 2.0 authorization code flow work for secure third-party authentication\nvec: what are the steps in the oauth authorization code grant and why is pkce recommended"}
+{"input": "OAuth 2.0 authorization code flow /only:hyde", "output": "hyde: User clicks login, redirected to auth server with client_id and redirect_uri. User authenticates, gets authorization code. App exchanges code for tokens at token endpoint. PKCE adds code_verifier/code_challenge to prevent interception attacks\u2014required for public clients."}
+{"input": "Redis caching strategies /only:lex", "output": "lex: redis cache strategy pattern\nlex: redis cache aside through\nlex: redis ttl expiration caching"}
+{"input": "Redis caching strategies /only:vec", "output": "vec: what are the common caching strategies when using redis for application performance\nvec: how do you implement cache-aside, write-through, and write-behind patterns with redis"}
+{"input": "Redis caching strategies /only:hyde", "output": "hyde: Cache-aside: app checks Redis first, fetches from DB on miss, writes to cache. Write-through: writes go to cache and DB together. Write-behind: writes to cache, async sync to DB. Set TTL with EXPIRE to prevent stale data. Use SETEX for atomic set-with-expiry."}
+{"input": "GraphQL vs REST /only:lex", "output": "lex: graphql rest api comparison\nlex: graphql query flexibility\nlex: rest vs graphql tradeoffs"}
+{"input": "GraphQL vs REST /only:vec", "output": "vec: what are the main differences between graphql and rest api design approaches\nvec: when should you choose graphql over rest for your api architecture"}
+{"input": "GraphQL vs REST /only:hyde", "output": "hyde: REST uses fixed endpoints returning predefined data shapes. GraphQL uses one endpoint where clients specify exactly what fields they need, reducing over-fetching. REST is simpler, better cached. GraphQL excels for mobile apps, complex data requirements, and avoiding multiple round trips."}
+{"input": "linux file permissions chmod /only:lex", "output": "lex: linux chmod file permissions\nlex: unix rwx permission bits\nlex: chmod 755 644 meaning"}
+{"input": "linux file permissions chmod /only:vec", "output": "vec: how do linux file permissions work and how do you change them with chmod\nvec: what do the rwx permission bits mean for owner, group, and others"}
+{"input": "linux file permissions chmod /only:hyde", "output": "hyde: Permissions are rwx for read, write, execute. Three groups: owner, group, others. chmod 755 means rwxr-xr-x (owner full, others read+execute). chmod 644 means rw-r--r-- (owner read+write, others read only). Use chmod +x to add execute permission."}
+{"input": "async await error handling /only:lex", "output": "lex: async await try catch\nlex: javascript promise error handling\nlex: async function exception handling"}
+{"input": "async await error handling /only:vec", "output": "vec: how to properly handle errors in javascript async await functions\nvec: what happens when an async function throws and how do you catch those errors"}
+{"input": "async await error handling /only:hyde", "output": "hyde: Wrap await calls in try-catch blocks: try { const data = await fetchData(); } catch (err) { console.error(err); }. Unhandled rejections in async functions become unhandled promise rejections. For multiple awaits, catch individually or use Promise.allSettled to handle partial failures."}
+{"input": "Elasticsearch query DSL /only:lex", "output": "lex: elasticsearch query dsl\nlex: elasticsearch bool must should\nlex: es full text search query"}
+{"input": "Elasticsearch query DSL /only:vec", "output": "vec: how to write search queries using elasticsearch query dsl syntax\nvec: what are the common query types in elasticsearch like match, term, and bool queries"}
+{"input": "Elasticsearch query DSL /only:hyde", "output": "hyde: Elasticsearch Query DSL uses JSON. Match query for full-text: {match: {title: 'search'}}. Term for exact: {term: {status: 'published'}}. Bool combines queries: {bool: {must: [...], should: [...], filter: [...], must_not: [...]}}. Filter context skips scoring for faster filtering."}
+{"input": "terraform state management /only:lex", "output": "lex: terraform state file backend\nlex: terraform remote state s3\nlex: tfstate locking management"}
+{"input": "terraform state management /only:vec", "output": "vec: how to manage terraform state files and what are the best practices for team collaboration\nvec: why should you use remote state backends in terraform and how do you configure them"}
+{"input": "terraform state management /only:hyde", "output": "hyde: Store state remotely in S3, GCS, or Terraform Cloud\u2014never commit tfstate to git. Configure backend in terraform { backend \"s3\" { bucket = \"my-state\", key = \"prod.tfstate\", region = \"us-east-1\", dynamodb_table = \"tf-locks\" } }. DynamoDB provides state locking to prevent concurrent modifications."}
+{"input": "monorepo vs polyrepo /only:lex", "output": "lex: monorepo polyrepo comparison\nlex: monorepo benefits drawbacks\nlex: single repo multiple repos"}
+{"input": "monorepo vs polyrepo /only:vec", "output": "vec: what are the tradeoffs between using a monorepo versus multiple repositories\nvec: when does a monorepo make sense and what tools help manage large monorepos"}
+{"input": "monorepo vs polyrepo /only:hyde", "output": "hyde: Monorepos keep all code in one repository\u2014easier atomic changes across packages, shared tooling, consistent versioning. Polyrepos give teams autonomy, simpler CI, clearer ownership. Use monorepos for tightly coupled code. Tools: Nx, Turborepo, Lerna, Bazel for build orchestration."}
+{"input": "prometheus alerting rules /only:lex", "output": "lex: prometheus alerting rules config\nlex: prometheus alertmanager rules\nlex: promql alert expressions"}
+{"input": "prometheus alerting rules /only:vec", "output": "vec: how to write prometheus alerting rules to notify on metric thresholds\nvec: what is the syntax for prometheus alert rules and how do they integrate with alertmanager"}
+{"input": "prometheus alerting rules /only:hyde", "output": "hyde: Define rules in YAML: groups: - name: example rules: - alert: HighErrorRate expr: rate(http_errors_total[5m]) > 0.1 for: 5m labels: severity: critical annotations: summary: High error rate. Prometheus evaluates rules periodically and sends firing alerts to Alertmanager for routing and deduplication."}
+{"input": "CSS flexbox centering /only:lex", "output": "lex: css flexbox center align\nlex: flexbox justify-content align-items\nlex: css center div flexbox"}
+{"input": "CSS flexbox centering /only:vec", "output": "vec: how to center elements horizontally and vertically using css flexbox\nvec: what flexbox properties do you use to center content in a container"}
+{"input": "CSS flexbox centering /only:hyde", "output": "hyde: On the container, set display: flex; justify-content: center; align-items: center;. justify-content handles the main axis (horizontal by default), align-items handles the cross axis. Add height: 100vh to center within the viewport. For a single item, margin: auto also works inside flex containers."}
+{"input": "database connection pooling /only:lex", "output": "lex: database connection pool\nlex: connection pooling performance\nlex: db pool size configuration"}
+{"input": "database connection pooling /only:vec", "output": "vec: what is database connection pooling and why does it improve application performance\nvec: how do you configure connection pool size for optimal database throughput"}
+{"input": "database connection pooling /only:hyde", "output": "hyde: Opening database connections is expensive. Connection pools maintain reusable connections. Set pool size based on: pool_size = (core_count * 2) + effective_spindle_count. Too small starves the app, too large overwhelms the database. Popular libraries: HikariCP for Java, pgbouncer for PostgreSQL."}
+{"input": "kafka consumer groups /only:lex", "output": "lex: kafka consumer group offset\nlex: kafka partition consumer rebalance\nlex: kafka consumer group id"}
+{"input": "kafka consumer groups /only:vec", "output": "vec: how do kafka consumer groups work for parallel message processing\nvec: what happens during consumer group rebalancing and how are partitions assigned"}
+{"input": "kafka consumer groups /only:hyde", "output": "hyde: Consumers with the same group.id share partitions\u2014each partition is consumed by only one consumer in the group. Adding consumers triggers rebalancing. If consumers > partitions, some idle. Offsets track progress per partition. Use enable.auto.commit=false for exactly-once semantics with manual commits."}
+{"input": "vim search replace /only:lex", "output": "lex: vim search replace substitute\nlex: vim sed command :%s\nlex: vim find replace regex"}
+{"input": "vim search replace /only:vec", "output": "vec: how to search and replace text in vim using the substitute command\nvec: what is the syntax for vim search and replace with regular expressions and flags"}
+{"input": "vim search replace /only:hyde", "output": "hyde: Use :%s/old/new/g to replace all occurrences in the file. % means all lines, g means global (all matches per line). Add c for confirmation: :%s/old/new/gc. Use \\< and \\> for word boundaries. & in replacement refers to the matched text. Use :s for current line only."}
+{"input": "http status codes meaning /only:lex", "output": "lex: http status codes list\nlex: http 200 400 500 codes\nlex: rest api status codes"}
+{"input": "http status codes meaning /only:vec", "output": "vec: what do the common http status codes mean and when should you use each\nvec: how do you choose the right http status code for api responses"}
+{"input": "http status codes meaning /only:hyde", "output": "hyde: 200 OK success, 201 Created for POST, 204 No Content for DELETE. 400 Bad Request for invalid input, 401 Unauthorized for auth required, 403 Forbidden for insufficient permissions, 404 Not Found. 500 Internal Server Error for unexpected failures, 503 Service Unavailable for temporary issues."}
+{"input": "binary search algorithm /only:lex", "output": "lex: binary search algorithm\nlex: binary search sorted array\nlex: binary search time complexity"}
+{"input": "binary search algorithm /only:vec", "output": "vec: how does the binary search algorithm work and what is its time complexity\nvec: how do you implement binary search to find an element in a sorted array"}
+{"input": "binary search algorithm /only:hyde", "output": "hyde: Binary search halves the search space each iteration. Compare target with middle element: if smaller, search left half; if larger, search right. O(log n) time complexity. Requires sorted input. Watch for integer overflow in mid calculation: use low + (high - low) / 2 instead of (low + high) / 2."}
+{"input": "git rebase interactive /only:lex", "output": "lex: git rebase interactive squash\nlex: git rebase -i edit commits\nlex: git squash commits rebase"}
+{"input": "git rebase interactive /only:vec", "output": "vec: how to use git interactive rebase to edit, squash, and reorder commits\nvec: what are the commands available in git rebase interactive mode"}
+{"input": "git rebase interactive /only:hyde", "output": "hyde: Run git rebase -i HEAD~5 to edit the last 5 commits. In the editor, change 'pick' to: squash (s) to combine with previous, reword (r) to edit message, edit (e) to amend, drop (d) to remove. Save and follow prompts. Never rebase commits already pushed to shared branches."}
+{"input": "environment variables docker /only:lex", "output": "lex: docker environment variables\nlex: docker env file compose\nlex: docker run -e env vars"}
+{"input": "environment variables docker /only:vec", "output": "vec: how to pass environment variables to docker containers\nvec: what are the different ways to set environment variables in docker and docker compose"}
+{"input": "environment variables docker /only:hyde", "output": "hyde: Use -e flag: docker run -e DB_HOST=localhost myapp. In docker-compose.yml: environment: - DB_HOST=localhost or env_file: - .env. For secrets, prefer docker secrets or mount files. Variables in Dockerfile with ENV persist in the image; runtime -e overrides them."}
+{"input": "rate limiting algorithms /only:lex", "output": "lex: rate limiting algorithm api\nlex: token bucket leaky bucket\nlex: rate limit sliding window"}
+{"input": "rate limiting algorithms /only:vec", "output": "vec: what algorithms are used for api rate limiting and how do they differ\nvec: how do token bucket and sliding window rate limiting algorithms work"}
+{"input": "rate limiting algorithms /only:hyde", "output": "hyde: Token bucket: bucket fills at fixed rate, requests consume tokens, rejected when empty\u2014allows bursts. Leaky bucket: requests queue, processed at fixed rate\u2014smooths traffic. Sliding window: count requests in rolling time window. Fixed window has boundary issues; sliding window log is precise but memory-heavy."}
+{"input": "blue green deployment /only:lex", "output": "lex: blue green deployment strategy\nlex: zero downtime deployment\nlex: blue green kubernetes rollout"}
+{"input": "blue green deployment /only:vec", "output": "vec: what is blue green deployment and how does it enable zero downtime releases\nvec: how do you implement blue green deployments in kubernetes or cloud environments"}
+{"input": "blue green deployment /only:hyde", "output": "hyde: Blue-green runs two identical environments. Blue is live, green has the new version. Test green thoroughly, then switch the load balancer. Instant rollback by switching back to blue. In Kubernetes, use two deployments with a service selector update, or Argo Rollouts for automated blue-green."}
+{"input": "memory leak debugging /only:lex", "output": "lex: memory leak debug profiler\nlex: memory leak detection tools\nlex: heap dump memory analysis"}
+{"input": "memory leak debugging /only:vec", "output": "vec: how to find and fix memory leaks in applications\nvec: what tools and techniques help identify memory leaks in different programming languages"}
+{"input": "memory leak debugging /only:hyde", "output": "hyde: Use heap profilers: Chrome DevTools for JavaScript, VisualVM or MAT for Java, Valgrind for C/C++, tracemalloc for Python. Take heap snapshots before and after operations, compare retained objects. Common causes: forgotten event listeners, closures holding references, unbounded caches, circular references."}
+{"input": "Stripe webhook verification /only:lex", "output": "lex: stripe webhook signature verify\nlex: stripe webhook endpoint secret\nlex: stripe event verification"}
+{"input": "Stripe webhook verification /only:vec", "output": "vec: how to verify stripe webhook signatures to ensure events are authentic\nvec: what is the correct way to handle and validate incoming stripe webhook events"}
+{"input": "Stripe webhook verification /only:hyde", "output": "hyde: Stripe signs webhooks with your endpoint secret. Verify using stripe.webhooks.constructEvent(body, sig, endpointSecret). Use the raw request body, not parsed JSON. Return 200 quickly, process async. Handle event types like checkout.session.completed. Store endpoint secret securely, rotate if compromised."}
+{"input": "React context vs Redux /only:lex", "output": "lex: react context redux comparison\nlex: useContext vs redux state\nlex: react state management choice"}
+{"input": "React context vs Redux /only:vec", "output": "vec: when should you use react context versus redux for state management\nvec: what are the tradeoffs between react context api and redux for global state"}
+{"input": "React context vs Redux /only:hyde", "output": "hyde: Context is built-in, simple for low-frequency updates like themes and auth. Redux adds boilerplate but provides devtools, middleware, time-travel debugging, predictable updates. Context re-renders all consumers on any change; Redux allows granular subscriptions. Use Context for simple cases, Redux for complex state logic."}
+{"input": "DNS records explained /only:lex", "output": "lex: dns records types a cname mx\nlex: dns configuration records\nlex: domain name system records"}
+{"input": "DNS records explained /only:vec", "output": "vec: what are the different types of dns records and what does each one do\nvec: how do you configure dns records for a domain including a, cname, mx, and txt records"}
+{"input": "DNS records explained /only:hyde", "output": "hyde: A record maps domain to IPv4 address. AAAA for IPv6. CNAME aliases one domain to another (can't be on root domain). MX for mail servers with priority. TXT for verification and SPF/DKIM. NS delegates to nameservers. TTL controls caching duration. Changes propagate based on previous TTL."}
+{"input": "tmux session management /only:lex", "output": "lex: tmux session window pane\nlex: tmux attach detach session\nlex: tmux commands shortcuts"}
+{"input": "tmux session management /only:vec", "output": "vec: how to create and manage tmux sessions for persistent terminal workflows\nvec: what are the essential tmux commands for session, window, and pane management"}
+{"input": "tmux session management /only:hyde", "output": "hyde: Start session: tmux new -s name. Detach: Ctrl-b d. Reattach: tmux attach -t name. New window: Ctrl-b c. Split pane: Ctrl-b % (vertical), Ctrl-b \" (horizontal). Navigate panes: Ctrl-b arrow. List sessions: tmux ls. Kill session: tmux kill-session -t name. Sessions persist after disconnect."}
+{"input": "utf-8 encoding explained /only:lex", "output": "lex: utf-8 unicode encoding\nlex: utf8 character encoding bytes\nlex: unicode utf-8 ascii difference"}
+{"input": "utf-8 encoding explained /only:vec", "output": "vec: how does utf-8 encoding work and why is it the standard for text\nvec: what is the relationship between unicode and utf-8 and how are characters encoded as bytes"}
+{"input": "utf-8 encoding explained /only:hyde", "output": "hyde: UTF-8 encodes Unicode code points as 1-4 bytes. ASCII characters (0-127) use 1 byte, compatible with ASCII. Higher code points use more bytes with leading bits indicating length. UTF-8 is self-synchronizing and space-efficient for Latin text. Always specify encoding explicitly when reading/writing files."}
+{"input": "microservices communication patterns /only:lex", "output": "lex: microservices communication patterns\nlex: sync async microservice calls\nlex: event driven microservices"}
+{"input": "microservices communication patterns /only:vec", "output": "vec: what are the common communication patterns between microservices\nvec: when should microservices use synchronous rest calls versus asynchronous messaging"}
+{"input": "microservices communication patterns /only:hyde", "output": "hyde: Sync (REST/gRPC): simple, immediate response, but creates coupling and cascade failures. Async (message queues, events): decoupled, resilient, eventual consistency. Use sync for queries needing immediate response. Use async for commands, notifications, cross-service workflows. Event sourcing and CQRS for complex domains."}
+{"input": "shell script best practices /only:lex", "output": "lex: bash script best practices\nlex: shell script error handling\nlex: bash scripting guidelines"}
+{"input": "shell script best practices /only:vec", "output": "vec: what are the best practices for writing reliable and maintainable shell scripts\nvec: how do you handle errors and edge cases properly in bash scripts"}
+{"input": "shell script best practices /only:hyde", "output": "hyde: Start with #!/usr/bin/env bash and set -euo pipefail. Use shellcheck for linting. Quote variables: \"$var\". Use [[ ]] for tests. Handle errors with trap. Use functions for reusability. Avoid parsing ls output\u2014use globs. Prefer printf over echo. Use local variables in functions. Add -- before filenames from user input."}
+{"input": "load balancer health checks /only:lex", "output": "lex: load balancer health check\nlex: health check endpoint liveness\nlex: lb health probe configuration"}
+{"input": "load balancer health checks /only:vec", "output": "vec: how do load balancer health checks work and why are they important\nvec: what should a health check endpoint return and how do you configure health check intervals"}
+{"input": "load balancer health checks /only:hyde", "output": "hyde: Load balancers probe backend instances to route traffic only to healthy ones. Health endpoint should check critical dependencies (database, cache) and return 200 if healthy, 503 if not. Configure interval (10-30s), timeout (5s), and threshold (2-3 failures). Include /health and /ready endpoints for Kubernetes liveness and readiness."}
+{"input": "certificate ssl tls renewal /only:lex", "output": "lex: ssl tls certificate renewal\nlex: lets encrypt certbot renew\nlex: https certificate expiration"}
+{"input": "certificate ssl tls renewal /only:vec", "output": "vec: how to renew ssl tls certificates before they expire\nvec: what is the process for automated certificate renewal with lets encrypt and certbot"}
+{"input": "certificate ssl tls renewal /only:hyde", "output": "hyde: Let's Encrypt certificates expire in 90 days. Certbot auto-renews via cron or systemd timer: certbot renew runs twice daily, renews within 30 days of expiry. Test with --dry-run. For other CAs, set calendar reminders. Check expiration: openssl s_client -connect domain:443 | openssl x509 -noout -dates."}
+{"input": "python decorators explained /only:lex", "output": "lex: python decorator function\nlex: python @ decorator syntax\nlex: python wrapper decorator"}
+{"input": "python decorators explained /only:vec", "output": "vec: how do python decorators work and what is the syntax for creating them\nvec: what are common use cases for decorators in python like logging, caching, and authentication"}
+{"input": "python decorators explained /only:hyde", "output": "hyde: Decorators wrap functions to extend behavior. @decorator before def is syntactic sugar for func = decorator(func). A decorator is a function taking a function and returning a new function. Use functools.wraps to preserve metadata. Common uses: @lru_cache for memoization, @login_required for auth, timing/logging wrappers."}
+{"input": "cap theorem database /only:lex", "output": "lex: cap theorem distributed database\nlex: consistency availability partition tolerance\nlex: cap theorem tradeoffs"}
+{"input": "cap theorem database /only:vec", "output": "vec: what is the cap theorem and how does it apply to distributed database design\nvec: how do different databases choose between consistency and availability during network partitions"}
+{"input": "cap theorem database /only:hyde", "output": "hyde: CAP theorem: distributed systems can guarantee only 2 of 3\u2014Consistency (all nodes see same data), Availability (requests get responses), Partition tolerance (survives network splits). During partitions, choose CP (reject requests for consistency, like MongoDB) or AP (serve potentially stale data, like Cassandra). PACELC extends CAP for normal operation tradeoffs."}
+{"input": "garbage collection tuning /only:lex", "output": "lex: garbage collection gc tuning\nlex: jvm gc heap memory\nlex: gc pause time optimization"}
+{"input": "garbage collection tuning /only:vec", "output": "vec: how to tune garbage collection for better application performance\nvec: what gc algorithms are available and how do you choose gc settings for low latency"}
+{"input": "garbage collection tuning /only:hyde", "output": "hyde: For JVM, G1GC is default, good balance of throughput and pause times. ZGC and Shenandoah offer sub-millisecond pauses for low-latency needs. Tune heap size: -Xms and -Xmx same to avoid resizing. Monitor with gc logs: -Xlog:gc*. Reduce allocation rate by reusing objects and avoiding unnecessary autoboxing."}
+{"input": "feature flags implementation /only:lex", "output": "lex: feature flags toggles\nlex: feature flag implementation\nlex: gradual rollout feature flags"}
+{"input": "feature flags implementation /only:vec", "output": "vec: how to implement feature flags for gradual rollouts and a/b testing\nvec: what are the best practices for managing feature flags in production"}
+{"input": "feature flags implementation /only:hyde", "output": "hyde: Feature flags decouple deployment from release. Simple: if (featureEnabled('new-checkout')) { ... }. Store flags in config, database, or services like LaunchDarkly. Use for gradual rollout (1% -> 10% -> 100%), A/B tests, kill switches. Clean up old flags to prevent technical debt. Log flag evaluations for debugging."}
+{"input": "apache kafka partitions /only:lex", "output": "lex: kafka partitions topics\nlex: kafka partition key ordering\nlex: kafka partition count scaling"}
+{"input": "apache kafka partitions /only:vec", "output": "vec: how do kafka partitions work and how do they affect scalability and message ordering\nvec: how do you choose the right number of partitions for a kafka topic"}
+{"input": "apache kafka partitions /only:hyde", "output": "hyde: Partitions enable parallelism\u2014each partition is consumed by one consumer in a group. Messages with same key go to same partition, preserving order per key. More partitions = more throughput but more overhead. Start with partitions = max(expected throughput / partition throughput, consumer count). Can't reduce partitions, only increase."}
+{"input": "cron job syntax /only:lex", "output": "lex: cron job syntax schedule\nlex: crontab expression format\nlex: cron schedule examples"}
+{"input": "cron job syntax /only:vec", "output": "vec: how to write cron expressions to schedule jobs at specific times\nvec: what does each field in a crontab entry mean and what are common scheduling patterns"}
+{"input": "cron job syntax /only:hyde", "output": "hyde: Cron format: minute hour day-of-month month day-of-week command. */5 * * * * runs every 5 minutes. 0 2 * * * runs daily at 2 AM. 0 0 * * 0 runs weekly on Sunday. Use crontab -e to edit. Tools like crontab.guru help build expressions. Consider timezone\u2014cron uses system time."}
+{"input": "GPG key signing /only:lex", "output": "lex: gpg key sign verify\nlex: gpg signature git commits\nlex: pgp key signing encryption"}
+{"input": "GPG key signing /only:vec", "output": "vec: how to use gpg keys for signing and verifying files and git commits\nvec: what is the process for creating gpg keys and configuring git to sign commits"}
+{"input": "GPG key signing /only:hyde", "output": "hyde: Generate key: gpg --full-generate-key. List keys: gpg --list-keys. Sign file: gpg --sign file.txt. Verify: gpg --verify file.txt.gpg. For git: git config --global user.signingkey KEYID, git config --global commit.gpgsign true. Export public key for GitHub: gpg --armor --export KEYID."}
+{"input": "api versioning strategies /only:lex", "output": "lex: api versioning strategy\nlex: rest api version url header\nlex: api backward compatibility"}
+{"input": "api versioning strategies /only:vec", "output": "vec: what are the different strategies for versioning rest apis\nvec: how do you maintain backward compatibility when evolving an api"}
+{"input": "api versioning strategies /only:hyde", "output": "hyde: URL versioning (/v1/users) is explicit, easy to route. Header versioning (Accept: application/vnd.api+json;version=1) keeps URLs clean. Query param (?version=1) is simple but pollutes URLs. Prefer additive changes\u2014new fields don't break clients. Deprecate gracefully with sunset headers and migration guides."}
+{"input": "mutex vs semaphore /only:lex", "output": "lex: mutex semaphore difference\nlex: mutex lock synchronization\nlex: semaphore counting binary"}
+{"input": "mutex vs semaphore /only:vec", "output": "vec: what is the difference between a mutex and a semaphore in concurrent programming\nvec: when should you use a mutex versus a semaphore for thread synchronization"}
+{"input": "mutex vs semaphore /only:hyde", "output": "hyde: Mutex is a binary lock owned by one thread\u2014used for mutual exclusion protecting shared resources. Semaphore is a counter allowing N concurrent accesses\u2014used for limiting concurrency (connection pools, rate limiting). Mutex has ownership (same thread must unlock), semaphore doesn't. Use mutex for critical sections, semaphore for resource counting."}
+{"input": "json schema validation /only:lex", "output": "lex: json schema validation\nlex: jsonschema validator python\nlex: json schema types required"}
+{"input": "json schema validation /only:vec", "output": "vec: how to use json schema to validate the structure of json data\nvec: what are the common json schema keywords for defining types, required fields, and constraints"}
+{"input": "json schema validation /only:hyde", "output": "hyde: JSON Schema defines expected structure. Key properties: type (string, number, object, array), properties for object fields, required array for mandatory fields, items for array elements. Validators: ajv (JS), jsonschema (Python). Use for API request validation, config file validation, documentation generation."}
+{"input": "CI CD pipeline stages /only:lex", "output": "lex: ci cd pipeline stages\nlex: continuous integration deployment\nlex: build test deploy pipeline"}
+{"input": "CI CD pipeline stages /only:vec", "output": "vec: what are the typical stages in a ci cd pipeline\nvec: how do you design a continuous integration and deployment pipeline for reliable releases"}
+{"input": "CI CD pipeline stages /only:hyde", "output": "hyde: Typical stages: 1) Source\u2014trigger on commit, 2) Build\u2014compile, bundle, create artifacts, 3) Test\u2014unit, integration, e2e tests, 4) Security scan\u2014SAST, dependency audit, 5) Deploy to staging, 6) Acceptance tests, 7) Deploy to production. Use parallelization for speed. Gate deployments on test pass. Implement rollback mechanisms."}
+{"input": "event sourcing pattern /only:lex", "output": "lex: event sourcing pattern\nlex: event store append only log\nlex: cqrs event sourcing"}
+{"input": "event sourcing pattern /only:vec", "output": "vec: what is event sourcing and how does it differ from traditional crud data storage\nvec: how do you implement event sourcing and what are its benefits and challenges"}
+{"input": "event sourcing pattern /only:hyde", "output": "hyde: Event sourcing stores state changes as immutable events rather than current state. Account balance is sum of all Deposit and Withdrawal events. Benefits: full audit trail, time travel, replay for debugging. Challenges: eventual consistency, event schema evolution, increased complexity. Often paired with CQRS\u2014separate read models built from event stream."}
+{"input": "IPv4 vs IPv6 /only:lex", "output": "lex: ipv4 ipv6 difference\nlex: ipv6 address format\nlex: ipv4 exhaustion ipv6 transition"}
+{"input": "IPv4 vs IPv6 /only:vec", "output": "vec: what are the key differences between ipv4 and ipv6 addressing\nvec: why is ipv6 necessary and how does the transition from ipv4 work"}
+{"input": "IPv4 vs IPv6 /only:hyde", "output": "hyde: IPv4 uses 32-bit addresses (4 billion), exhausted in 2011. IPv6 uses 128-bit addresses (340 undecillion), formatted as eight hex groups: 2001:0db8::1. IPv6 eliminates NAT need, has built-in IPsec. Transition via dual-stack (both protocols) or tunneling. Check IPv6 support: curl -6 ipv6.google.com."}
+{"input": "dependency injection benefits /only:lex", "output": "lex: dependency injection di pattern\nlex: di inversion of control ioc\nlex: dependency injection testing"}
+{"input": "dependency injection benefits /only:vec", "output": "vec: what is dependency injection and why does it improve code maintainability\nvec: how does dependency injection make unit testing easier"}
+{"input": "dependency injection benefits /only:hyde", "output": "hyde: Dependency injection provides dependencies from outside rather than creating them internally. Class receives DatabaseService via constructor instead of instantiating it. Benefits: loose coupling, easy testing with mocks, flexible configuration. Instead of new EmailService(), inject interface IEmailService\u2014swap implementations without changing consumer code."}
+{"input": "S3 bucket policy /only:lex", "output": "lex: s3 bucket policy permissions\nlex: aws s3 iam policy json\nlex: s3 bucket access control"}
+{"input": "S3 bucket policy /only:vec", "output": "vec: how to write an s3 bucket policy to control access permissions\nvec: what is the difference between s3 bucket policies and iam policies for access control"}
+{"input": "S3 bucket policy /only:hyde", "output": "hyde: S3 bucket policies are resource-based JSON policies attached to buckets. Grant public read: {\"Statement\":[{\"Effect\":\"Allow\",\"Principal\":\"*\",\"Action\":\"s3:GetObject\",\"Resource\":\"arn:aws:s3:::bucket/*\"}]}. IAM policies attach to users/roles. Use bucket policies for cross-account access, IAM for user-specific permissions. Block public access settings override policies."}
+{"input": "idempotency api design /only:lex", "output": "lex: idempotency api design\nlex: idempotent request key\nlex: api retry safety idempotency"}
+{"input": "idempotency api design /only:vec", "output": "vec: what is idempotency in api design and why is it important for reliability\nvec: how do you implement idempotent endpoints to handle duplicate requests safely"}
+{"input": "idempotency api design /only:hyde", "output": "hyde: Idempotent operations produce the same result regardless of how many times called. GET, PUT, DELETE are naturally idempotent. POST needs idempotency keys: client sends unique key, server stores result, returns cached result on retry. Store keys with TTL (24h). Critical for payment APIs\u2014prevents double charges on network retry."}
+{"input": "awk command examples /only:lex", "output": "lex: awk command examples\nlex: awk print column field\nlex: awk text processing"}
+{"input": "awk command examples /only:vec", "output": "vec: how to use awk for text processing and extracting columns from files\nvec: what are common awk patterns and commands for parsing structured text"}
+{"input": "awk command examples /only:hyde", "output": "hyde: awk processes text line by line, splitting into fields. Print second column: awk '{print $2}' file. Custom delimiter: awk -F',' '{print $1}'. Pattern match: awk '/error/ {print}'. Sum column: awk '{sum+=$3} END {print sum}'. Variables: awk -v threshold=100 '$3 > threshold'. Built-in vars: NF (fields), NR (line number)."}
+{"input": "database sharding strategies /only:lex", "output": "lex: database sharding horizontal\nlex: shard key partition strategy\nlex: database horizontal scaling"}
+{"input": "database sharding strategies /only:vec", "output": "vec: what is database sharding and what strategies exist for partitioning data\nvec: how do you choose a shard key and what are the tradeoffs of different sharding approaches"}
+{"input": "database sharding strategies /only:hyde", "output": "hyde: Sharding distributes data across multiple databases. Strategies: range-based (user IDs 1-1M on shard 1), hash-based (consistent hashing), directory-based (lookup table). Choose shard key with high cardinality, even distribution, query locality. Avoid hot spots\u2014don't shard by timestamp. Cross-shard queries are expensive. Consider sharding only after vertical scaling exhausted."}
+{"input": "jq json parsing /only:lex", "output": "lex: jq json parsing command\nlex: jq filter select query\nlex: jq command line json"}
+{"input": "jq json parsing /only:vec", "output": "vec: how to use jq to parse and transform json data from the command line\nvec: what are the common jq filters for extracting and manipulating json fields"}
+{"input": "jq json parsing /only:hyde", "output": "hyde: jq is a command-line JSON processor. Extract field: jq '.name' file.json. Array element: jq '.[0]'. Nested: jq '.users[].email'. Filter: jq '.items[] | select(.price > 100)'. Transform: jq '{name: .title, count: .items | length}'. Raw output: jq -r. Pipe curl output: curl api | jq '.data'."}
+{"input": "compile time vs runtime errors /only:lex", "output": "lex: compile time runtime error difference\nlex: static dynamic type checking\nlex: compilation errors vs exceptions"}
+{"input": "compile time vs runtime errors /only:vec", "output": "vec: what is the difference between compile time and runtime errors in programming\nvec: why are compile time errors generally preferable to runtime errors for code reliability"}
+{"input": "compile time vs runtime errors /only:hyde", "output": "hyde: Compile time errors occur during compilation before code runs\u2014syntax errors, type mismatches in statically typed languages. Runtime errors occur during execution\u2014null pointer, division by zero, file not found. Compile time errors are caught early, cheaper to fix. Static typing and linters catch more at compile time. TypeScript catches errors that JavaScript defers to runtime."}
+{"input": "content delivery network cdn /only:lex", "output": "lex: cdn content delivery network\nlex: cdn caching edge servers\nlex: cloudflare cdn setup"}
+{"input": "content delivery network cdn /only:vec", "output": "vec: how does a content delivery network cdn improve website performance\nvec: what content should you serve through a cdn and how do you configure cache headers"}
+{"input": "content delivery network cdn /only:hyde", "output": "hyde: CDN caches content at edge servers geographically close to users, reducing latency. Serve static assets (images, CSS, JS) through CDN. Set Cache-Control headers: max-age=31536000 for versioned assets, shorter for dynamic content. Configure origin pulls, purge cache on deploys. Popular CDNs: Cloudflare, CloudFront, Fastly, Akamai."}
+{"input": "circuit breaker pattern /only:lex", "output": "lex: circuit breaker pattern\nlex: circuit breaker resilience\nlex: hystrix resilience4j circuit"}
+{"input": "circuit breaker pattern /only:vec", "output": "vec: what is the circuit breaker pattern and how does it improve system resilience\nvec: how do you implement circuit breakers to prevent cascade failures in distributed systems"}
+{"input": "circuit breaker pattern /only:hyde", "output": "hyde: Circuit breaker prevents repeated calls to failing services. States: Closed (normal), Open (failing, reject calls immediately), Half-Open (test recovery). After N failures, opens circuit. After timeout, allows test request. If succeeds, closes. Prevents cascade failures, provides fallbacks. Libraries: resilience4j (Java), polly (.NET), opossum (Node.js)."}
+{"input": "mac address vs ip address /only:lex", "output": "lex: mac address ip address difference\nlex: mac address layer 2 hardware\nlex: ip vs mac network address"}
+{"input": "mac address vs ip address /only:vec", "output": "vec: what is the difference between a mac address and an ip address in networking\nvec: how do mac addresses and ip addresses work together for network communication"}
+{"input": "mac address vs ip address /only:hyde", "output": "hyde: MAC address is hardware identifier burned into NIC, 48 bits (AA:BB:CC:DD:EE:FF), used in Layer 2 (local network). IP address is logical, assigned by network, used in Layer 3 (routing). ARP maps IP to MAC on local network. IP gets packets between networks, MAC delivers within a network segment. MAC is permanent, IP changes with network."}
+{"input": "unit test vs integration test /only:lex", "output": "lex: unit test integration test difference\nlex: testing pyramid unit integration e2e\nlex: unit test isolation mocking"}
+{"input": "unit test vs integration test /only:vec", "output": "vec: what is the difference between unit tests and integration tests\nvec: how should you balance unit tests and integration tests in the testing pyramid"}
+{"input": "unit test vs integration test /only:hyde", "output": "hyde: Unit tests verify single functions or classes in isolation using mocks for dependencies. Fast, many of them. Integration tests verify components working together with real dependencies. Slower, fewer of them. Testing pyramid: many unit tests at base, fewer integration tests in middle, few e2e tests at top. Unit tests catch logic bugs, integration tests catch interface mismatches."}
+{"input": "base64 encoding decoding /only:lex", "output": "lex: base64 encoding decoding\nlex: base64 encode decode string\nlex: base64 binary to text"}
+{"input": "base64 encoding decoding /only:vec", "output": "vec: what is base64 encoding and when should you use it\nvec: how do you encode and decode base64 strings in different programming languages"}
+{"input": "base64 encoding decoding /only:hyde", "output": "hyde: Base64 encodes binary data as ASCII text using 64 characters (A-Z, a-z, 0-9, +, /). Increases size by ~33%. Use for embedding binary in JSON/XML, data URLs, email attachments. Not encryption\u2014easily decoded. In shell: echo -n 'text' | base64. Decode: echo 'dGV4dA==' | base64 -d. In JS: btoa('text'), atob('dGV4dA==')."}
+{"input": "tail recursion optimization /only:lex", "output": "lex: tail recursion optimization\nlex: tail call optimization tco\nlex: recursive function stack overflow"}
+{"input": "tail recursion optimization /only:vec", "output": "vec: what is tail recursion and how does tail call optimization prevent stack overflow\nvec: how do you convert a recursive function to tail recursive form"}
+{"input": "tail recursion optimization /only:hyde", "output": "hyde: Tail recursion: recursive call is the last operation, no work after it returns. TCO reuses stack frame instead of adding new one\u2014prevents stack overflow. Convert by passing accumulated result as parameter: factorial(n, acc=1) { return n <= 1 ? acc : factorial(n-1, n*acc); }. Not all languages implement TCO\u2014JavaScript in strict mode, Scheme yes, Python no."}
+{"input": "nginx location block /only:lex", "output": "lex: nginx location block config\nlex: nginx location regex prefix\nlex: nginx location matching order"}
+{"input": "nginx location block /only:vec", "output": "vec: how do nginx location blocks work and in what order are they matched\nvec: what is the syntax for nginx location directives including prefix and regex matching"}
+{"input": "nginx location block /only:hyde", "output": "hyde: Location matching order: 1) Exact match (= /path), 2) Preferential prefix (^~ /path), 3) Regex in config order (~* case-insensitive, ~ case-sensitive), 4) Longest prefix match. Example: location /api { proxy_pass http://backend; }. Regex: location ~ \\.php$ { fastcgi_pass; }. Use = for exact matches to skip regex evaluation."}
+{"input": "oop encapsulation abstraction /only:lex", "output": "lex: oop encapsulation abstraction\nlex: object oriented principles\nlex: encapsulation data hiding"}
+{"input": "oop encapsulation abstraction /only:vec", "output": "vec: what are encapsulation and abstraction in object oriented programming\nvec: how do encapsulation and abstraction differ and why are they important for software design"}
+{"input": "oop encapsulation abstraction /only:hyde", "output": "hyde: Encapsulation bundles data and methods, restricting direct access via private fields and public getters/setters. Protects internal state, enables validation. Abstraction hides implementation complexity, exposing only essential interface. Car has accelerate() method\u2014you don't need to know engine internals. Encapsulation is how you hide, abstraction is what you hide."}
+{"input": "webhook vs api polling /only:lex", "output": "lex: webhook vs polling api\nlex: push vs pull api pattern\nlex: webhook callback http"}
+{"input": "webhook vs api polling /only:vec", "output": "vec: what are the differences between webhooks and api polling for receiving updates\nvec: when should you use webhooks instead of polling an api for changes"}
+{"input": "webhook vs api polling /only:hyde", "output": "hyde: Polling: client repeatedly asks server for updates. Simple but wastes bandwidth if nothing changed, may miss events between polls. Webhooks: server pushes updates to client endpoint when events occur. Real-time, efficient, but requires public endpoint and handling failures. Use webhooks when available (Stripe, GitHub), fall back to polling for systems without webhook support."}
+{"input": "database transaction isolation levels /only:lex", "output": "lex: database transaction isolation levels\nlex: read committed serializable\nlex: sql isolation dirty read phantom"}
+{"input": "database transaction isolation levels /only:vec", "output": "vec: what are the different database transaction isolation levels and their tradeoffs\nvec: how do isolation levels prevent anomalies like dirty reads and phantom reads"}
+{"input": "database transaction isolation levels /only:hyde", "output": "hyde: Isolation levels from weakest to strongest: Read Uncommitted (dirty reads possible), Read Committed (sees only committed data, default in PostgreSQL), Repeatable Read (no non-repeatable reads), Serializable (no phantom reads, full isolation). Higher isolation = more locking = lower concurrency. Choose based on consistency needs vs performance."}
+{"input": "hash table collision resolution /only:lex", "output": "lex: hash table collision resolution\nlex: hash map chaining open addressing\nlex: hash collision handling"}
+{"input": "hash table collision resolution /only:vec", "output": "vec: how do hash tables handle collisions when multiple keys hash to the same bucket\nvec: what are the differences between chaining and open addressing for collision resolution"}
+{"input": "hash table collision resolution /only:hyde", "output": "hyde: Chaining: each bucket holds a linked list of entries with same hash. Simple, handles high load well. Open addressing: on collision, probe for next empty slot. Linear probing (check next slot), quadratic probing, double hashing. Better cache locality but degrades at high load factors. Most implementations use chaining (Java HashMap) or open addressing with good probing (Python dict)."}
+{"input": "yaml vs json config /only:lex", "output": "lex: yaml json config comparison\nlex: yaml vs json syntax\nlex: configuration file format"}
+{"input": "yaml vs json config /only:vec", "output": "vec: what are the differences between yaml and json for configuration files\nvec: when should you choose yaml over json for application configuration"}
+{"input": "yaml vs json config /only:hyde", "output": "hyde: JSON: strict syntax, no comments, explicit quotes, universal parsing. YAML: superset of JSON, allows comments, cleaner for humans, indentation-based. Use JSON for data interchange, APIs, when strict parsing needed. Use YAML for configs (Docker Compose, Kubernetes, CI/CD) where human editing is common. YAML gotchas: Norway problem (NO parsed as false), inconsistent indentation."}
+{"input": "Kubernetes ingress controller /only:lex", "output": "lex: kubernetes ingress controller\nlex: k8s ingress nginx traefik\nlex: ingress rules path host"}
+{"input": "Kubernetes ingress controller /only:vec", "output": "vec: what is a kubernetes ingress controller and how does it route external traffic to services\nvec: how do you configure ingress rules for path-based and host-based routing in kubernetes"}
+{"input": "Kubernetes ingress controller /only:hyde", "output": "hyde: Ingress controller implements Ingress resources, routing external HTTP/HTTPS to services. Popular controllers: nginx-ingress, Traefik, HAProxy. Ingress resource defines rules: host (foo.com), paths (/api -> api-service, / -> frontend). Annotations configure TLS, rate limiting, auth. Install controller first, then create Ingress resources."}
+{"input": "docker layer caching /only:lex", "output": "lex: docker layer caching build\nlex: dockerfile cache optimization\nlex: docker build cache layers"}
+{"input": "docker layer caching /only:vec", "output": "vec: how does docker layer caching work and how do you optimize dockerfiles for faster builds\nvec: what dockerfile practices maximize cache hits when building docker images"}
+{"input": "docker layer caching /only:hyde", "output": "hyde: Docker caches each instruction as a layer. Cache invalidates when instruction or context changes, invalidating all subsequent layers. Optimization: order from least to most frequently changing. Copy package.json and install deps before copying source code. Use .dockerignore. Multi-stage builds discard intermediate layers. COPY --from for selective extraction."}
+{"input": "ssh tunnel port forwarding /only:lex", "output": "lex: ssh tunnel port forwarding\nlex: ssh local remote forward\nlex: ssh -L -R tunnel"}
+{"input": "ssh tunnel port forwarding /only:vec", "output": "vec: how to set up ssh tunnels for local and remote port forwarding\nvec: what is the difference between ssh local port forwarding and remote port forwarding"}
+{"input": "ssh tunnel port forwarding /only:hyde", "output": "hyde: Local forwarding (-L): access remote service through local port. ssh -L 8080:localhost:3000 server\u2014localhost:8080 reaches server's port 3000. Remote forwarding (-R): expose local service through remote port. ssh -R 8080:localhost:3000 server\u2014server:8080 reaches your port 3000. Use for accessing databases behind firewalls, exposing dev servers temporarily."}
+{"input": "rest api pagination /only:lex", "output": "lex: rest api pagination\nlex: api pagination offset cursor\nlex: paginated response next page"}
+{"input": "rest api pagination /only:vec", "output": "vec: what are the different approaches to implementing pagination in rest apis\nvec: how do offset-based and cursor-based pagination compare for api design"}
+{"input": "rest api pagination /only:hyde", "output": "hyde: Offset pagination: ?page=2&limit=20 or ?offset=20&limit=20. Simple but slow for deep pages, inconsistent with real-time inserts. Cursor pagination: ?cursor=abc123&limit=20, cursor encodes position. Consistent, efficient, better for infinite scroll. Return next_cursor in response. Use Link headers or response body for pagination URLs."}
+{"input": "solid principles explained /only:lex", "output": "lex: solid principles oop\nlex: single responsibility open closed\nlex: solid design principles"}
+{"input": "solid principles explained /only:vec", "output": "vec: what are the solid principles in object oriented design\nvec: how do the solid principles improve code maintainability and flexibility"}
+{"input": "solid principles explained /only:hyde", "output": "hyde: SOLID: Single Responsibility (one reason to change), Open/Closed (open for extension, closed for modification), Liskov Substitution (subtypes substitutable for base types), Interface Segregation (many specific interfaces over one general), Dependency Inversion (depend on abstractions not concretions). Following SOLID produces loosely coupled, testable, maintainable code."}
+{"input": "protobuf vs json /only:lex", "output": "lex: protobuf json comparison\nlex: protocol buffers serialization\nlex: grpc protobuf format"}
+{"input": "protobuf vs json /only:vec", "output": "vec: what are the differences between protocol buffers and json for data serialization\nvec: when should you use protobuf instead of json for api communication"}
+{"input": "protobuf vs json /only:hyde", "output": "hyde: JSON: human-readable, self-describing, universal support, larger payload. Protobuf: binary format, 3-10x smaller, faster serialization, requires schema (.proto files), strong typing. Use JSON for public APIs, debugging, human interaction. Use Protobuf for internal microservices, high-throughput systems, gRPC. Schema evolution with field numbers enables backward compatibility."}
+{"input": "linux namespaces containers /only:lex", "output": "lex: linux namespaces containers\nlex: container isolation namespace cgroup\nlex: docker linux namespaces"}
+{"input": "linux namespaces containers /only:vec", "output": "vec: how do linux namespaces enable container isolation\nvec: what kernel features do docker and containers use for process isolation"}
+{"input": "linux namespaces containers /only:hyde", "output": "hyde: Containers use Linux namespaces for isolation: PID (process tree), NET (network stack), MNT (filesystem mounts), UTS (hostname), IPC (inter-process communication), USER (user IDs). Cgroups limit resource usage (CPU, memory). Together they isolate processes without full VM overhead. Containers share host kernel but see isolated views of system resources."}
+{"input": "GraphQL subscriptions websocket /only:lex", "output": "lex: graphql subscriptions websocket\nlex: graphql realtime subscriptions\nlex: graphql subscription server"}
+{"input": "GraphQL subscriptions websocket /only:vec", "output": "vec: how do graphql subscriptions work for real-time data updates\nvec: what is the underlying protocol for graphql subscriptions and how do you implement them"}
+{"input": "GraphQL subscriptions websocket /only:hyde", "output": "hyde: GraphQL subscriptions enable real-time updates via persistent connections. Client subscribes: subscription { messageAdded { text } }. Server pushes when events occur. Typically uses WebSocket with graphql-ws protocol. Server maintains subscription registry, publishes events through PubSub. Apollo Server and Relay support subscriptions natively."}
+{"input": "stateless vs stateful services /only:lex", "output": "lex: stateless stateful service\nlex: stateless api design\nlex: session state storage"}
+{"input": "stateless vs stateful services /only:vec", "output": "vec: what is the difference between stateless and stateful services in application architecture\nvec: why are stateless services easier to scale and how do you handle state when needed"}
+{"input": "stateless vs stateful services /only:hyde", "output": "hyde: Stateless services don't store client state between requests\u2014any instance can handle any request. Scale by adding instances, no session affinity needed. Stateful services maintain client state, requiring sticky sessions or shared storage. Make services stateless by storing session in JWT tokens, Redis, or databases. Stateless is preferred for horizontal scaling and resilience."}
+{"input": "git bisect debugging /only:lex", "output": "lex: git bisect bug finding\nlex: git bisect good bad\nlex: binary search git commit"}
+{"input": "git bisect debugging /only:vec", "output": "vec: how to use git bisect to find the commit that introduced a bug\nvec: what is the git bisect workflow for binary search debugging through commit history"}
+{"input": "git bisect debugging /only:hyde", "output": "hyde: git bisect does binary search through commits to find where bug was introduced. Start: git bisect start, git bisect bad (current has bug), git bisect good v1.0 (known good commit). Git checks out middle commit\u2014test and mark git bisect good or git bisect bad. Repeat until found. Automate with git bisect run ./test.sh. End with git bisect reset."}
+{"input": "dns propagation time /only:lex", "output": "lex: dns propagation time\nlex: dns ttl propagation delay\nlex: dns changes not working"}
+{"input": "dns propagation time /only:vec", "output": "vec: why do dns changes take time to propagate and how can you speed it up\nvec: what is dns propagation and how does ttl affect how quickly changes are visible"}
+{"input": "dns propagation time /only:hyde", "output": "hyde: DNS propagation is time for changes to spread through cached resolvers worldwide. TTL (Time To Live) controls cache duration. High TTL (86400s) means up to 24h wait. Before changes, lower TTL to 300s, wait for old TTL, make change, then restore TTL. Use dig @8.8.8.8 domain.com to check Google's view. Full propagation can take 24-48h for high-TTL records."}
+{"input": "fall of the Roman Empire /only:lex", "output": "lex: roman empire fall causes\nlex: decline of rome 476 AD\nlex: western roman empire collapse"}
+{"input": "fall of the Roman Empire /only:vec", "output": "vec: what were the main causes of the fall of the western roman empire\nvec: how did economic, military, and political factors contribute to rome's collapse"}
+{"input": "fall of the Roman Empire /only:hyde", "output": "hyde: The Western Roman Empire fell in 476 AD when Odoacer deposed Romulus Augustulus. Contributing factors included economic troubles, military overextension, political instability with rapid emperor turnover, pressure from Germanic tribes, and the division of the empire. The Eastern Roman Empire (Byzantine) survived until 1453."}
+{"input": "causes of World War I /only:lex", "output": "lex: world war 1 causes\nlex: ww1 assassination archduke franz ferdinand\nlex: causes great war 1914"}
+{"input": "causes of World War I /only:vec", "output": "vec: what were the main causes and triggers of world war one\nvec: how did the assassination of archduke franz ferdinand lead to a global war"}
+{"input": "causes of World War I /only:hyde", "output": "hyde: WWI was caused by MAIN: Militarism, Alliances, Imperialism, Nationalism. The assassination of Archduke Franz Ferdinand on June 28, 1914 in Sarajevo triggered a chain reaction through alliance systems. Austria-Hungary declared war on Serbia, pulling in Russia, Germany, France, and Britain within weeks."}
+{"input": "ancient Egypt pyramids construction /only:lex", "output": "lex: egyptian pyramids how built\nlex: pyramid construction ancient egypt\nlex: great pyramid giza building"}
+{"input": "ancient Egypt pyramids construction /only:vec", "output": "vec: how were the ancient egyptian pyramids constructed without modern technology\nvec: what techniques and labor did ancient egyptians use to build the pyramids at giza"}
+{"input": "ancient Egypt pyramids construction /only:hyde", "output": "hyde: The pyramids were built using ramps, levers, and organized labor forces of tens of thousands of workers. Limestone blocks weighing 2.5 tons average were quarried nearby and transported on sledges. Workers were not slaves but paid laborers housed in nearby villages. The Great Pyramid took approximately 20 years to complete around 2560 BC."}
+{"input": "French Revolution timeline /only:lex", "output": "lex: french revolution timeline events\nlex: french revolution 1789 bastille\nlex: reign of terror robespierre"}
+{"input": "French Revolution timeline /only:vec", "output": "vec: what were the major events of the french revolution in chronological order\nvec: how did the french revolution progress from the storming of the bastille to napoleon"}
+{"input": "French Revolution timeline /only:hyde", "output": "hyde: 1789: Estates-General convenes, Bastille stormed July 14. 1791: Constitutional monarchy established. 1792: Republic declared, king executed. 1793-94: Reign of Terror under Robespierre, 17,000 guillotined. 1794: Thermidorian Reaction ends Terror. 1799: Napoleon's coup establishes Consulate."}
+{"input": "Ottoman Empire history /only:lex", "output": "lex: ottoman empire history\nlex: ottoman sultanate 1299 1922\nlex: turkish ottoman empire rise fall"}
+{"input": "Ottoman Empire history /only:vec", "output": "vec: what was the history of the ottoman empire from its founding to its dissolution\nvec: how did the ottoman empire rise to become a major world power and eventually decline"}
+{"input": "Ottoman Empire history /only:hyde", "output": "hyde: Founded by Osman I around 1299, the Ottoman Empire conquered Constantinople in 1453, ending the Byzantine Empire. At its peak under Suleiman the Magnificent (1520-1566), it controlled Southeast Europe, Western Asia, and North Africa. Gradual decline through the 18th-19th centuries culminated in dissolution after WWI in 1922."}
+{"input": "American Civil War battles /only:lex", "output": "lex: american civil war battles\nlex: civil war gettysburg antietam\nlex: union confederate battles 1861"}
+{"input": "American Civil War battles /only:vec", "output": "vec: what were the major battles of the american civil war\nvec: which battles were turning points in the civil war between union and confederate forces"}
+{"input": "American Civil War battles /only:hyde", "output": "hyde: Major battles: Fort Sumter (1861, war begins), Bull Run (Confederate victory), Antietam (1862, bloodiest single day, led to Emancipation Proclamation), Gettysburg (1863, Union turning point), Vicksburg (Union controls Mississippi), Sherman's March (1864), Appomattox (1865, Lee surrenders). Total casualties exceeded 600,000."}
+{"input": "Ming Dynasty China /only:lex", "output": "lex: ming dynasty china history\nlex: ming dynasty 1368 1644\nlex: chinese ming emperors"}
+{"input": "Ming Dynasty China /only:vec", "output": "vec: what were the major achievements and characteristics of the ming dynasty in china\nvec: how did the ming dynasty rise to power and what led to its eventual fall"}
+{"input": "Ming Dynasty China /only:hyde", "output": "hyde: The Ming Dynasty (1368-1644) was founded by Zhu Yuanzhang after overthrowing Mongol Yuan rule. Notable achievements: construction of the Forbidden City, voyages of Zheng He, restoration of the Great Wall, and flourishing arts and porcelain. Fell to the Manchu Qing after peasant rebellions weakened central authority."}
+{"input": "Viking Age exploration /only:lex", "output": "lex: viking age exploration\nlex: vikings norse exploration america\nlex: viking raids settlements"}
+{"input": "Viking Age exploration /only:vec", "output": "vec: where did the vikings explore and settle during the viking age\nvec: what routes did norse explorers take and what lands did they discover"}
+{"input": "Viking Age exploration /only:hyde", "output": "hyde: The Viking Age (793-1066 AD) saw Norse expansion across Europe and beyond. Vikings raided British Isles and France, settled Iceland (874), Greenland (985), and reached North America (Vinland, c.1000) under Leif Erikson. They also traveled east through Russia to Constantinople and served as Varangian Guard."}
+{"input": "Industrial Revolution inventions /only:lex", "output": "lex: industrial revolution inventions\nlex: industrial revolution steam engine\nlex: 18th century industrial innovations"}
+{"input": "Industrial Revolution inventions /only:vec", "output": "vec: what were the key inventions that drove the industrial revolution\nvec: how did the steam engine and textile machinery transform manufacturing in the 18th century"}
+{"input": "Industrial Revolution inventions /only:hyde", "output": "hyde: Key inventions: Spinning Jenny (1764), Water Frame (1769), Steam Engine improved by James Watt (1769), Power Loom (1785), Cotton Gin (1793), Steam Locomotive (1804). These enabled factory production, mass manufacturing, and transformed society from agricultural to industrial. Britain led the revolution starting around 1760."}
+{"input": "Byzantine Empire Constantinople /only:lex", "output": "lex: byzantine empire constantinople\nlex: eastern roman empire byzantium\nlex: fall of constantinople 1453"}
+{"input": "Byzantine Empire Constantinople /only:vec", "output": "vec: what was the byzantine empire and how long did it last after rome fell\nvec: how did constantinople serve as the capital of the byzantine empire until 1453"}
+{"input": "Byzantine Empire Constantinople /only:hyde", "output": "hyde: The Byzantine Empire was the continuation of the Eastern Roman Empire, lasting from 330 AD (Constantinople founded) to 1453. At its peak under Justinian I, it reconquered much of the western Mediterranean. Constantinople was the largest and wealthiest European city for centuries until falling to Ottoman Turks under Mehmed II on May 29, 1453."}
+{"input": "Aztec Empire civilization /only:lex", "output": "lex: aztec empire civilization\nlex: aztec tenochtitlan mexico\nlex: aztec history mesoamerica"}
+{"input": "Aztec Empire civilization /only:vec", "output": "vec: what was the aztec empire and how did their civilization develop in mesoamerica\nvec: how did the aztecs build tenochtitlan and what led to the fall of their empire"}
+{"input": "Aztec Empire civilization /only:hyde", "output": "hyde: The Aztec Empire (1428-1521) dominated central Mexico from their capital Tenochtitlan, built on an island in Lake Texcoco (modern Mexico City). Population reached 200,000+. Known for pyramids, human sacrifice, chinampas (floating gardens), and tribute system. Conquered by Hern\u00e1n Cort\u00e9s in 1521 with help from rival indigenous groups and smallpox."}
+{"input": "Renaissance Italy Florence /only:lex", "output": "lex: renaissance italy florence\nlex: italian renaissance medici\nlex: florence renaissance art"}
+{"input": "Renaissance Italy Florence /only:vec", "output": "vec: why did the renaissance begin in italy particularly in florence\nvec: how did the medici family and florence become the center of the italian renaissance"}
+{"input": "Renaissance Italy Florence /only:hyde", "output": "hyde: The Renaissance began in Florence around 1400 due to wealth from banking and trade, political stability, and classical heritage. The Medici family, especially Lorenzo the Magnificent, patronized artists like Leonardo, Michelangelo, and Botticelli. Florence's guilds, humanism from rediscovered Greek texts, and competition among city-states drove cultural innovation."}
+{"input": "Cold War Berlin Wall /only:lex", "output": "lex: cold war berlin wall\nlex: berlin wall 1961 1989\nlex: east west germany division"}
+{"input": "Cold War Berlin Wall /only:vec", "output": "vec: what was the significance of the berlin wall during the cold war\nvec: why was the berlin wall built and what led to its fall in 1989"}
+{"input": "Cold War Berlin Wall /only:hyde", "output": "hyde: The Berlin Wall was built overnight on August 13, 1961 by East Germany to stop emigration to the West\u20143.5 million had fled since 1945. It divided Berlin for 28 years, symbolizing the Iron Curtain. Fell November 9, 1989 after Hungary opened its border and East German protests grew. Germany reunified October 3, 1990."}
+{"input": "Mongol Empire Genghis Khan /only:lex", "output": "lex: mongol empire genghis khan\nlex: mongol conquests 13th century\nlex: genghis khan mongol history"}
+{"input": "Mongol Empire Genghis Khan /only:vec", "output": "vec: how did genghis khan build the mongol empire into the largest contiguous land empire\nvec: what territories did the mongol empire conquer and how did they administer such vast lands"}
+{"input": "Mongol Empire Genghis Khan /only:hyde", "output": "hyde: Genghis Khan united Mongol tribes by 1206 and conquered from Korea to Poland by his death in 1227. The empire peaked under his grandsons, spanning 24 million km\u00b2\u2014largest contiguous empire ever. Success came from cavalry tactics, meritocracy, religious tolerance, and the Yam relay system. Divided into khanates after 1260."}
+{"input": "ancient Greece democracy Athens /only:lex", "output": "lex: ancient greece democracy athens\nlex: athenian democracy 5th century bc\nlex: greek democracy origins"}
+{"input": "ancient Greece democracy Athens /only:vec", "output": "vec: how did democracy develop in ancient athens and how did it function\nvec: what were the key institutions and practices of athenian democracy"}
+{"input": "ancient Greece democracy Athens /only:hyde", "output": "hyde: Athenian democracy emerged under Cleisthenes (508 BC) and peaked under Pericles (461-429 BC). Citizens (adult male non-slaves) voted directly in the Assembly (Ekklesia) on laws and policy. The Council of 500, chosen by lot, set the agenda. Jury courts had hundreds of jurors. About 30,000 of 300,000 residents were citizens."}
+{"input": "Protestant Reformation Martin Luther /only:lex", "output": "lex: protestant reformation luther\nlex: martin luther 95 theses\nlex: reformation 1517 catholic church"}
+{"input": "Protestant Reformation Martin Luther /only:vec", "output": "vec: what started the protestant reformation and what were its main ideas\nvec: how did martin luther's 95 theses challenge the catholic church and spread across europe"}
+{"input": "Protestant Reformation Martin Luther /only:hyde", "output": "hyde: Martin Luther posted his 95 Theses on October 31, 1517 in Wittenberg, criticizing indulgences and papal authority. Key ideas: salvation by faith alone, scripture as sole authority, priesthood of all believers. The printing press spread his ideas rapidly. Luther was excommunicated in 1521. The Reformation split Western Christianity and sparked religious wars across Europe."}
+{"input": "Silk Road trade routes /only:lex", "output": "lex: silk road trade route\nlex: silk road ancient trade china\nlex: silk road history commerce"}
+{"input": "Silk Road trade routes /only:vec", "output": "vec: what was the silk road and how did it connect east and west\nvec: what goods and ideas were exchanged along the ancient silk road trade routes"}
+{"input": "Silk Road trade routes /only:hyde", "output": "hyde: The Silk Road was a network of trade routes connecting China to the Mediterranean from around 130 BC to 1450s AD. Goods traded: silk, spices, porcelain from East; gold, glass, horses from West. Also spread Buddhism, Islam, technologies like paper and gunpowder, and unfortunately, the Black Death. Named by German geographer Ferdinand von Richthofen in 1877."}
+{"input": "Napoleonic Wars Europe /only:lex", "output": "lex: napoleonic wars europe\nlex: napoleon bonaparte campaigns\nlex: napoleonic era 1803 1815"}
+{"input": "Napoleonic Wars Europe /only:vec", "output": "vec: what were the major campaigns and outcomes of the napoleonic wars\nvec: how did napoleon's military conquests reshape europe and lead to his downfall"}
+{"input": "Napoleonic Wars Europe /only:hyde", "output": "hyde: The Napoleonic Wars (1803-1815) saw France under Napoleon dominate continental Europe through brilliant campaigns at Austerlitz, Jena, and Wagram. His empire stretched from Spain to Poland. The failed 1812 Russian invasion (600,000 troops, 100,000 returned) began his decline. Exiled to Elba 1814, returned for Hundred Days, finally defeated at Waterloo June 18, 1815."}
+{"input": "ancient Mesopotamia civilizations /only:lex", "output": "lex: ancient mesopotamia civilizations\nlex: mesopotamia sumer babylon\nlex: cradle of civilization tigris euphrates"}
+{"input": "ancient Mesopotamia civilizations /only:vec", "output": "vec: what civilizations arose in ancient mesopotamia and what were their achievements\nvec: why is mesopotamia called the cradle of civilization and what did sumerians invent"}
+{"input": "ancient Mesopotamia civilizations /only:hyde", "output": "hyde: Mesopotamia (modern Iraq) between Tigris and Euphrates rivers hosted the world's first civilizations. Sumerians (4500-1900 BC) invented writing (cuneiform), the wheel, sailboat, and plow. Akkadian Empire under Sargon was first empire. Babylon produced Hammurabi's Code. Assyrians and Persians followed. Agriculture surplus enabled cities, specialization, and complex society."}
+{"input": "Meiji Restoration Japan /only:lex", "output": "lex: meiji restoration japan\nlex: meiji era modernization 1868\nlex: japan meiji emperor reform"}
+{"input": "Meiji Restoration Japan /only:vec", "output": "vec: what was the meiji restoration and how did it transform japan\nvec: how did japan modernize so rapidly during the meiji period from 1868 to 1912"}
+{"input": "Meiji Restoration Japan /only:hyde", "output": "hyde: The Meiji Restoration (1868) ended 250 years of Tokugawa shogunate rule, restoring imperial power under Emperor Meiji. Japan rapidly industrialized and westernized: abolished feudalism, created national army, built railways, established constitution (1889). Slogan: 'Rich country, strong army.' Japan defeated China (1895) and Russia (1905), becoming a world power within 50 years."}
+{"input": "Black Death plague Europe /only:lex", "output": "lex: black death plague europe\nlex: bubonic plague 1347 medieval\nlex: black death medieval europe"}
+{"input": "Black Death plague Europe /only:vec", "output": "vec: what was the black death and how did it impact medieval europe\nvec: how did the bubonic plague spread across europe and what were its consequences"}
+{"input": "Black Death plague Europe /only:hyde", "output": "hyde: The Black Death (1347-1351) killed 75-200 million people, 30-60% of Europe's population. Caused by Yersinia pestis bacteria spread by fleas on rats, it arrived via Genoese ships from Crimea. Symptoms: buboes, fever, death within days. Consequences: labor shortages raised wages, weakened feudalism, sparked religious movements and persecution of Jews."}
+{"input": "Spanish Conquest Americas /only:lex", "output": "lex: spanish conquest americas\nlex: conquistadors cortez pizarro\nlex: spanish colonization new world"}
+{"input": "Spanish Conquest Americas /only:vec", "output": "vec: how did spanish conquistadors conquer the aztec and inca empires\nvec: what factors enabled spain to colonize the americas so rapidly in the 16th century"}
+{"input": "Spanish Conquest Americas /only:hyde", "output": "hyde: Hern\u00e1n Cort\u00e9s conquered the Aztec Empire (1519-1521) with 500 soldiers, allying with Tlaxcalans and exploiting Montezuma's hesitation. Francisco Pizarro conquered the Inca Empire (1532-1533) capturing Atahualpa during civil war. Spanish advantages: steel weapons, horses, gunpowder, and crucially, Old World diseases like smallpox that killed 90% of indigenous populations."}
+{"input": "World War II D-Day /only:lex", "output": "lex: world war 2 d-day normandy\nlex: d-day june 6 1944 invasion\nlex: operation overlord ww2"}
+{"input": "World War II D-Day /only:vec", "output": "vec: what happened on d-day and why was the normandy invasion a turning point in world war two\nvec: how was the d-day invasion of normandy planned and executed by allied forces"}
+{"input": "World War II D-Day /only:hyde", "output": "hyde: D-Day, June 6, 1944, was the largest amphibious invasion in history. Operation Overlord landed 156,000 Allied troops on five Normandy beaches (Utah, Omaha, Gold, Juno, Sword). Despite 10,000+ casualties, it established a Western Front, leading to Paris liberation (August 1944) and Germany's surrender (May 1945). Supreme Commander: Dwight D. Eisenhower."}
+{"input": "Han Dynasty China achievements /only:lex", "output": "lex: han dynasty china achievements\nlex: han dynasty 206 bc history\nlex: ancient china han empire"}
+{"input": "Han Dynasty China achievements /only:vec", "output": "vec: what were the major achievements and contributions of the han dynasty in china\nvec: why is the han dynasty considered a golden age in chinese history"}
+{"input": "Han Dynasty China achievements /only:hyde", "output": "hyde: The Han Dynasty (206 BC - 220 AD) is considered China's golden age. Achievements: Silk Road trade established, paper invented (105 AD), civil service exams introduced, Confucianism became state ideology. Population reached 60 million. So influential that ethnic Chinese still call themselves 'Han people.' Collapsed due to court intrigue, eunuch power, and Yellow Turban Rebellion."}
+{"input": "ssh key authentication /only:lex", "output": "lex: ssh key auth setup\nlex: ssh public private key pair\nlex: passwordless ssh login"}
+{"input": "ssh key authentication /only:vec", "output": "vec: how to set up ssh key-based authentication instead of passwords\nvec: step-by-step guide to generating and configuring ssh keys for secure server access"}
+{"input": "ssh key authentication /only:hyde", "output": "hyde: Generate an SSH key pair with ssh-keygen -t ed25519. Copy the public key to ~/.ssh/authorized_keys on the remote server using ssh-copy-id. Ensure permissions are 700 for .ssh and 600 for authorized_keys."}
+{"input": "Python virtual environments /only:lex", "output": "lex: python venv virtualenv\nlex: pip virtual environment setup\nlex: python isolated dependencies"}
+{"input": "Python virtual environments /only:vec", "output": "vec: how to create and activate a python virtual environment for project isolation\nvec: what is the difference between venv, virtualenv, and conda for managing python dependencies"}
+{"input": "Python virtual environments /only:hyde", "output": "hyde: Create a virtual environment with python -m venv myenv, then activate it with source myenv/bin/activate on Unix or myenv\\Scripts\\activate on Windows. Install packages with pip and they stay isolated from your system Python."}
+{"input": "git merge conflicts /only:lex", "output": "lex: git merge conflict resolve\nlex: git conflict markers HEAD\nlex: resolving merge conflicts"}
+{"input": "git merge conflicts /only:vec", "output": "vec: how to resolve merge conflicts in git when two branches modify the same lines\nvec: what do the conflict markers mean and how do you manually edit conflicted files"}
+{"input": "git merge conflicts /only:hyde", "output": "hyde: Git marks conflicts with <<<<<<< HEAD, =======, and >>>>>>> branch-name. Edit the file to keep the code you want, remove the markers, then git add the file and commit. Use git mergetool for a visual diff interface."}
+{"input": "TCP vs UDP /only:lex", "output": "lex: tcp udp protocol difference\nlex: tcp reliable udp fast\nlex: connection-oriented vs connectionless"}
+{"input": "TCP vs UDP /only:vec", "output": "vec: what are the key differences between TCP and UDP network protocols\nvec: when should you use TCP versus UDP for application networking"}
+{"input": "TCP vs UDP /only:hyde", "output": "hyde: TCP provides reliable, ordered delivery with acknowledgments and retransmission. UDP is faster but unreliable\u2014packets may arrive out of order or not at all. Use TCP for web, email, file transfer. Use UDP for video streaming, gaming, DNS where speed matters more than reliability."}
+{"input": "Docker compose volumes /only:lex", "output": "lex: docker compose volume mount\nlex: docker persistent storage volumes\nlex: compose yaml volumes section"}
+{"input": "Docker compose volumes /only:vec", "output": "vec: how to configure persistent volumes in docker compose for data that survives container restarts\nvec: what is the difference between bind mounts and named volumes in docker compose"}
+{"input": "Docker compose volumes /only:hyde", "output": "hyde: In docker-compose.yml, define volumes under the top-level volumes key and reference them in services. Named volumes persist data in Docker's storage. Bind mounts map host directories directly: volumes: - ./data:/app/data for development, - myvolume:/app/data for production."}
+{"input": "regex lookahead lookbehind /only:lex", "output": "lex: regex lookahead assertion\nlex: regex lookbehind positive negative\nlex: zero-width assertions regex"}
+{"input": "regex lookahead lookbehind /only:vec", "output": "vec: how do lookahead and lookbehind assertions work in regular expressions\nvec: what is the syntax for positive and negative lookahead and lookbehind in regex"}
+{"input": "regex lookahead lookbehind /only:hyde", "output": "hyde: Lookahead (?=pattern) matches a position followed by pattern without consuming it. Negative lookahead (?!pattern) matches where pattern doesn't follow. Lookbehind (?<=pattern) matches a position preceded by pattern. Example: \\d+(?= dollars) matches numbers followed by 'dollars'."}
+{"input": "Kubernetes secrets management /only:lex", "output": "lex: kubernetes secrets k8s\nlex: k8s secret yaml base64\nlex: kubectl create secret"}
+{"input": "Kubernetes secrets management /only:vec", "output": "vec: how to create and use secrets in kubernetes for sensitive configuration data\nvec: what are best practices for managing secrets in kubernetes clusters"}
+{"input": "Kubernetes secrets management /only:hyde", "output": "hyde: Create secrets with kubectl create secret generic mysecret --from-literal=password=abc123. Reference in pods via env valueFrom secretKeyRef or volume mounts. Secrets are base64 encoded, not encrypted\u2014use sealed-secrets or external secret managers like Vault for production."}
+{"input": "CORS errors fix /only:lex", "output": "lex: cors error fix browser\nlex: access-control-allow-origin header\nlex: cors preflight request"}
+{"input": "CORS errors fix /only:vec", "output": "vec: how to fix CORS errors when making API requests from a web browser\nvec: what causes cross-origin resource sharing errors and how do you configure the server to allow them"}
+{"input": "CORS errors fix /only:hyde", "output": "hyde: CORS errors occur when a browser blocks requests to a different origin. Fix by adding Access-Control-Allow-Origin headers on the server. For Express: app.use(cors()). For preflight requests, handle OPTIONS and return Access-Control-Allow-Methods and Access-Control-Allow-Headers."}
+{"input": "PostgreSQL indexes explain /only:lex", "output": "lex: postgresql index explain analyze\nlex: postgres btree index performance\nlex: create index postgresql"}
+{"input": "PostgreSQL indexes explain /only:vec", "output": "vec: how to use EXPLAIN ANALYZE to understand query performance and index usage in postgresql\nvec: what types of indexes does postgresql support and when should you use each"}
+{"input": "PostgreSQL indexes explain /only:hyde", "output": "hyde: Run EXPLAIN ANALYZE SELECT... to see the query plan and actual execution time. Look for Seq Scan on large tables\u2014add an index with CREATE INDEX idx_name ON table(column). B-tree indexes work for equality and range queries, GIN for full-text search and arrays, GiST for geometric data."}
+{"input": "JWT token refresh /only:lex", "output": "lex: jwt refresh token flow\nlex: access token refresh token\nlex: jwt token expiration renewal"}
+{"input": "JWT token refresh /only:vec", "output": "vec: how does the jwt refresh token flow work for maintaining user sessions\nvec: what is the difference between access tokens and refresh tokens in jwt authentication"}
+{"input": "JWT token refresh /only:hyde", "output": "hyde: Access tokens are short-lived (15 min) and sent with each request. Refresh tokens are long-lived (days/weeks) and stored securely. When the access token expires, send the refresh token to /auth/refresh to get a new access token without re-authenticating."}
+{"input": "React useEffect cleanup /only:lex", "output": "lex: react useeffect cleanup function\nlex: useeffect return cleanup\nlex: react unmount cleanup"}
+{"input": "React useEffect cleanup /only:vec", "output": "vec: how to properly clean up side effects in react useeffect to prevent memory leaks\nvec: when does the useeffect cleanup function run and what should you clean up"}
+{"input": "React useEffect cleanup /only:hyde", "output": "hyde: Return a cleanup function from useEffect to run before the component unmounts or before the effect re-runs. Use it to cancel subscriptions, clear timers, and abort fetch requests. Example: useEffect(() => { const id = setInterval(fn, 1000); return () => clearInterval(id); }, []);"}
+{"input": "nginx reverse proxy /only:lex", "output": "lex: nginx reverse proxy config\nlex: nginx proxy_pass upstream\nlex: nginx load balancer setup"}
+{"input": "nginx reverse proxy /only:vec", "output": "vec: how to configure nginx as a reverse proxy to forward requests to backend servers\nvec: what nginx directives do you need for a basic reverse proxy configuration"}
+{"input": "nginx reverse proxy /only:hyde", "output": "hyde: In nginx.conf, use proxy_pass inside a location block: location /api { proxy_pass http://localhost:3000; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; }. Add upstream blocks for load balancing across multiple backend servers."}
+{"input": "systemd service file /only:lex", "output": "lex: systemd service unit file\nlex: systemctl enable start service\nlex: systemd service configuration"}
+{"input": "systemd service file /only:vec", "output": "vec: how to create a systemd service file to run an application as a linux daemon\nvec: what are the essential sections and directives in a systemd unit file"}
+{"input": "systemd service file /only:hyde", "output": "hyde: Create /etc/systemd/system/myapp.service with [Unit] Description, [Service] ExecStart=/path/to/app, Restart=always, User=appuser, and [Install] WantedBy=multi-user.target. Run systemctl daemon-reload, then systemctl enable --now myapp."}
+{"input": "websocket vs http /only:lex", "output": "lex: websocket http difference\nlex: websocket persistent connection\nlex: http polling vs websocket"}
+{"input": "websocket vs http /only:vec", "output": "vec: what are the differences between websockets and http for real-time communication\nvec: when should you use websockets instead of http long polling or server-sent events"}
+{"input": "websocket vs http /only:hyde", "output": "hyde: HTTP is request-response: client asks, server answers, connection closes. WebSocket upgrades HTTP to a persistent bidirectional connection. Use WebSocket for chat, live updates, gaming. Use SSE for server-to-client only streaming. HTTP polling wastes bandwidth with repeated requests."}
+{"input": "SQL injection prevention /only:lex", "output": "lex: sql injection prevent parameterized\nlex: prepared statements sql injection\nlex: sql injection sanitize input"}
+{"input": "SQL injection prevention /only:vec", "output": "vec: how to prevent sql injection attacks in web applications\nvec: why are parameterized queries and prepared statements important for database security"}
+{"input": "SQL injection prevention /only:hyde", "output": "hyde: Never concatenate user input into SQL strings. Use parameterized queries: cursor.execute('SELECT * FROM users WHERE id = ?', (user_id,)). ORMs like SQLAlchemy handle this automatically. Validate and sanitize input, but parameterization is the primary defense."}
+{"input": "TypeScript generics /only:lex", "output": "lex: typescript generics type parameter\nlex: typescript generic function interface\nlex: ts generics constraints extends"}
+{"input": "TypeScript generics /only:vec", "output": "vec: how to use generics in typescript to write reusable type-safe functions and classes\nvec: what is the syntax for generic type parameters and constraints in typescript"}
+{"input": "TypeScript generics /only:hyde", "output": "hyde: Generics let you write flexible, reusable code while maintaining type safety. Declare with angle brackets: function identity<T>(arg: T): T { return arg; }. Add constraints with extends: function getLength<T extends { length: number }>(item: T): number { return item.length; }."}
+{"input": "OAuth 2.0 authorization code flow /only:lex", "output": "lex: oauth2 authorization code flow\nlex: oauth authorization code grant\nlex: oauth2 pkce code verifier"}
+{"input": "OAuth 2.0 authorization code flow /only:vec", "output": "vec: how does the oauth 2.0 authorization code flow work for secure third-party authentication\nvec: what are the steps in the oauth authorization code grant and why is pkce recommended"}
+{"input": "OAuth 2.0 authorization code flow /only:hyde", "output": "hyde: User clicks login, redirected to auth server with client_id and redirect_uri. User authenticates, gets authorization code. App exchanges code for tokens at token endpoint. PKCE adds code_verifier/code_challenge to prevent interception attacks\u2014required for public clients."}
+{"input": "Redis caching strategies /only:lex", "output": "lex: redis cache strategy pattern\nlex: redis cache aside through\nlex: redis ttl expiration caching"}
+{"input": "Redis caching strategies /only:vec", "output": "vec: what are the common caching strategies when using redis for application performance\nvec: how do you implement cache-aside, write-through, and write-behind patterns with redis"}
+{"input": "Redis caching strategies /only:hyde", "output": "hyde: Cache-aside: app checks Redis first, fetches from DB on miss, writes to cache. Write-through: writes go to cache and DB together. Write-behind: writes to cache, async sync to DB. Set TTL with EXPIRE to prevent stale data. Use SETEX for atomic set-with-expiry."}
+{"input": "GraphQL vs REST /only:lex", "output": "lex: graphql rest api comparison\nlex: graphql query flexibility\nlex: rest vs graphql tradeoffs"}
+{"input": "GraphQL vs REST /only:vec", "output": "vec: what are the main differences between graphql and rest api design approaches\nvec: when should you choose graphql over rest for your api architecture"}
+{"input": "GraphQL vs REST /only:hyde", "output": "hyde: REST uses fixed endpoints returning predefined data shapes. GraphQL uses one endpoint where clients specify exactly what fields they need, reducing over-fetching. REST is simpler, better cached. GraphQL excels for mobile apps, complex data requirements, and avoiding multiple round trips."}
+{"input": "linux file permissions chmod /only:lex", "output": "lex: linux chmod file permissions\nlex: unix rwx permission bits\nlex: chmod 755 644 meaning"}
+{"input": "linux file permissions chmod /only:vec", "output": "vec: how do linux file permissions work and how do you change them with chmod\nvec: what do the rwx permission bits mean for owner, group, and others"}
+{"input": "linux file permissions chmod /only:hyde", "output": "hyde: Permissions are rwx for read, write, execute. Three groups: owner, group, others. chmod 755 means rwxr-xr-x (owner full, others read+execute). chmod 644 means rw-r--r-- (owner read+write, others read only). Use chmod +x to add execute permission."}
+{"input": "async await error handling /only:lex", "output": "lex: async await try catch\nlex: javascript promise error handling\nlex: async function exception handling"}
+{"input": "async await error handling /only:vec", "output": "vec: how to properly handle errors in javascript async await functions\nvec: what happens when an async function throws and how do you catch those errors"}
+{"input": "async await error handling /only:hyde", "output": "hyde: Wrap await calls in try-catch blocks: try { const data = await fetchData(); } catch (err) { console.error(err); }. Unhandled rejections in async functions become unhandled promise rejections. For multiple awaits, catch individually or use Promise.allSettled to handle partial failures."}
+{"input": "Elasticsearch query DSL /only:lex", "output": "lex: elasticsearch query dsl\nlex: elasticsearch bool must should\nlex: es full text search query"}
+{"input": "Elasticsearch query DSL /only:vec", "output": "vec: how to write search queries using elasticsearch query dsl syntax\nvec: what are the common query types in elasticsearch like match, term, and bool queries"}
+{"input": "Elasticsearch query DSL /only:hyde", "output": "hyde: Elasticsearch Query DSL uses JSON. Match query for full-text: {match: {title: 'search'}}. Term for exact: {term: {status: 'published'}}. Bool combines queries: {bool: {must: [...], should: [...], filter: [...], must_not: [...]}}. Filter context skips scoring for faster filtering."}
+{"input": "terraform state management /only:lex", "output": "lex: terraform state file backend\nlex: terraform remote state s3\nlex: tfstate locking management"}
+{"input": "terraform state management /only:vec", "output": "vec: how to manage terraform state files and what are the best practices for team collaboration\nvec: why should you use remote state backends in terraform and how do you configure them"}
+{"input": "terraform state management /only:hyde", "output": "hyde: Store state remotely in S3, GCS, or Terraform Cloud\u2014never commit tfstate to git. Configure backend in terraform { backend \"s3\" { bucket = \"my-state\", key = \"prod.tfstate\", region = \"us-east-1\", dynamodb_table = \"tf-locks\" } }. DynamoDB provides state locking to prevent concurrent modifications."}
+{"input": "monorepo vs polyrepo /only:lex", "output": "lex: monorepo polyrepo comparison\nlex: monorepo benefits drawbacks\nlex: single repo multiple repos"}
+{"input": "monorepo vs polyrepo /only:vec", "output": "vec: what are the tradeoffs between using a monorepo versus multiple repositories\nvec: when does a monorepo make sense and what tools help manage large monorepos"}
+{"input": "monorepo vs polyrepo /only:hyde", "output": "hyde: Monorepos keep all code in one repository\u2014easier atomic changes across packages, shared tooling, consistent versioning. Polyrepos give teams autonomy, simpler CI, clearer ownership. Use monorepos for tightly coupled code. Tools: Nx, Turborepo, Lerna, Bazel for build orchestration."}
+{"input": "prometheus alerting rules /only:lex", "output": "lex: prometheus alerting rules config\nlex: prometheus alertmanager rules\nlex: promql alert expressions"}
+{"input": "prometheus alerting rules /only:vec", "output": "vec: how to write prometheus alerting rules to notify on metric thresholds\nvec: what is the syntax for prometheus alert rules and how do they integrate with alertmanager"}
+{"input": "prometheus alerting rules /only:hyde", "output": "hyde: Define rules in YAML: groups: - name: example rules: - alert: HighErrorRate expr: rate(http_errors_total[5m]) > 0.1 for: 5m labels: severity: critical annotations: summary: High error rate. Prometheus evaluates rules periodically and sends firing alerts to Alertmanager for routing and deduplication."}
+{"input": "CSS flexbox centering /only:lex", "output": "lex: css flexbox center align\nlex: flexbox justify-content align-items\nlex: css center div flexbox"}
+{"input": "CSS flexbox centering /only:vec", "output": "vec: how to center elements horizontally and vertically using css flexbox\nvec: what flexbox properties do you use to center content in a container"}
+{"input": "CSS flexbox centering /only:hyde", "output": "hyde: On the container, set display: flex; justify-content: center; align-items: center;. justify-content handles the main axis (horizontal by default), align-items handles the cross axis. Add height: 100vh to center within the viewport. For a single item, margin: auto also works inside flex containers."}
+{"input": "database connection pooling /only:lex", "output": "lex: database connection pool\nlex: connection pooling performance\nlex: db pool size configuration"}
+{"input": "database connection pooling /only:vec", "output": "vec: what is database connection pooling and why does it improve application performance\nvec: how do you configure connection pool size for optimal database throughput"}
+{"input": "database connection pooling /only:hyde", "output": "hyde: Opening database connections is expensive. Connection pools maintain reusable connections. Set pool size based on: pool_size = (core_count * 2) + effective_spindle_count. Too small starves the app, too large overwhelms the database. Popular libraries: HikariCP for Java, pgbouncer for PostgreSQL."}
+{"input": "kafka consumer groups /only:lex", "output": "lex: kafka consumer group offset\nlex: kafka partition consumer rebalance\nlex: kafka consumer group id"}
+{"input": "kafka consumer groups /only:vec", "output": "vec: how do kafka consumer groups work for parallel message processing\nvec: what happens during consumer group rebalancing and how are partitions assigned"}
+{"input": "kafka consumer groups /only:hyde", "output": "hyde: Consumers with the same group.id share partitions\u2014each partition is consumed by only one consumer in the group. Adding consumers triggers rebalancing. If consumers > partitions, some idle. Offsets track progress per partition. Use enable.auto.commit=false for exactly-once semantics with manual commits."}
+{"input": "vim search replace /only:lex", "output": "lex: vim search replace substitute\nlex: vim sed command :%s\nlex: vim find replace regex"}
+{"input": "vim search replace /only:vec", "output": "vec: how to search and replace text in vim using the substitute command\nvec: what is the syntax for vim search and replace with regular expressions and flags"}
+{"input": "vim search replace /only:hyde", "output": "hyde: Use :%s/old/new/g to replace all occurrences in the file. % means all lines, g means global (all matches per line). Add c for confirmation: :%s/old/new/gc. Use \\< and \\> for word boundaries. & in replacement refers to the matched text. Use :s for current line only."}
+{"input": "http status codes meaning /only:lex", "output": "lex: http status codes list\nlex: http 200 400 500 codes\nlex: rest api status codes"}
+{"input": "http status codes meaning /only:vec", "output": "vec: what do the common http status codes mean and when should you use each\nvec: how do you choose the right http status code for api responses"}
+{"input": "http status codes meaning /only:hyde", "output": "hyde: 200 OK success, 201 Created for POST, 204 No Content for DELETE. 400 Bad Request for invalid input, 401 Unauthorized for auth required, 403 Forbidden for insufficient permissions, 404 Not Found. 500 Internal Server Error for unexpected failures, 503 Service Unavailable for temporary issues."}
+{"input": "binary search algorithm /only:lex", "output": "lex: binary search algorithm\nlex: binary search sorted array\nlex: binary search time complexity"}
+{"input": "binary search algorithm /only:vec", "output": "vec: how does the binary search algorithm work and what is its time complexity\nvec: how do you implement binary search to find an element in a sorted array"}
+{"input": "binary search algorithm /only:hyde", "output": "hyde: Binary search halves the search space each iteration. Compare target with middle element: if smaller, search left half; if larger, search right. O(log n) time complexity. Requires sorted input. Watch for integer overflow in mid calculation: use low + (high - low) / 2 instead of (low + high) / 2."}
+{"input": "git rebase interactive /only:lex", "output": "lex: git rebase interactive squash\nlex: git rebase -i edit commits\nlex: git squash commits rebase"}
+{"input": "git rebase interactive /only:vec", "output": "vec: how to use git interactive rebase to edit, squash, and reorder commits\nvec: what are the commands available in git rebase interactive mode"}
+{"input": "git rebase interactive /only:hyde", "output": "hyde: Run git rebase -i HEAD~5 to edit the last 5 commits. In the editor, change 'pick' to: squash (s) to combine with previous, reword (r) to edit message, edit (e) to amend, drop (d) to remove. Save and follow prompts. Never rebase commits already pushed to shared branches."}
+{"input": "environment variables docker /only:lex", "output": "lex: docker environment variables\nlex: docker env file compose\nlex: docker run -e env vars"}
+{"input": "environment variables docker /only:vec", "output": "vec: how to pass environment variables to docker containers\nvec: what are the different ways to set environment variables in docker and docker compose"}
+{"input": "environment variables docker /only:hyde", "output": "hyde: Use -e flag: docker run -e DB_HOST=localhost myapp. In docker-compose.yml: environment: - DB_HOST=localhost or env_file: - .env. For secrets, prefer docker secrets or mount files. Variables in Dockerfile with ENV persist in the image; runtime -e overrides them."}
+{"input": "rate limiting algorithms /only:lex", "output": "lex: rate limiting algorithm api\nlex: token bucket leaky bucket\nlex: rate limit sliding window"}
+{"input": "rate limiting algorithms /only:vec", "output": "vec: what algorithms are used for api rate limiting and how do they differ\nvec: how do token bucket and sliding window rate limiting algorithms work"}
+{"input": "rate limiting algorithms /only:hyde", "output": "hyde: Token bucket: bucket fills at fixed rate, requests consume tokens, rejected when empty\u2014allows bursts. Leaky bucket: requests queue, processed at fixed rate\u2014smooths traffic. Sliding window: count requests in rolling time window. Fixed window has boundary issues; sliding window log is precise but memory-heavy."}
+{"input": "blue green deployment /only:lex", "output": "lex: blue green deployment strategy\nlex: zero downtime deployment\nlex: blue green kubernetes rollout"}
+{"input": "blue green deployment /only:vec", "output": "vec: what is blue green deployment and how does it enable zero downtime releases\nvec: how do you implement blue green deployments in kubernetes or cloud environments"}
+{"input": "blue green deployment /only:hyde", "output": "hyde: Blue-green runs two identical environments. Blue is live, green has the new version. Test green thoroughly, then switch the load balancer. Instant rollback by switching back to blue. In Kubernetes, use two deployments with a service selector update, or Argo Rollouts for automated blue-green."}
+{"input": "memory leak debugging /only:lex", "output": "lex: memory leak debug profiler\nlex: memory leak detection tools\nlex: heap dump memory analysis"}
+{"input": "memory leak debugging /only:vec", "output": "vec: how to find and fix memory leaks in applications\nvec: what tools and techniques help identify memory leaks in different programming languages"}
+{"input": "memory leak debugging /only:hyde", "output": "hyde: Use heap profilers: Chrome DevTools for JavaScript, VisualVM or MAT for Java, Valgrind for C/C++, tracemalloc for Python. Take heap snapshots before and after operations, compare retained objects. Common causes: forgotten event listeners, closures holding references, unbounded caches, circular references."}
+{"input": "Stripe webhook verification /only:lex", "output": "lex: stripe webhook signature verify\nlex: stripe webhook endpoint secret\nlex: stripe event verification"}
+{"input": "Stripe webhook verification /only:vec", "output": "vec: how to verify stripe webhook signatures to ensure events are authentic\nvec: what is the correct way to handle and validate incoming stripe webhook events"}
+{"input": "Stripe webhook verification /only:hyde", "output": "hyde: Stripe signs webhooks with your endpoint secret. Verify using stripe.webhooks.constructEvent(body, sig, endpointSecret). Use the raw request body, not parsed JSON. Return 200 quickly, process async. Handle event types like checkout.session.completed. Store endpoint secret securely, rotate if compromised."}
+{"input": "React context vs Redux /only:lex", "output": "lex: react context redux comparison\nlex: useContext vs redux state\nlex: react state management choice"}
+{"input": "React context vs Redux /only:vec", "output": "vec: when should you use react context versus redux for state management\nvec: what are the tradeoffs between react context api and redux for global state"}
+{"input": "React context vs Redux /only:hyde", "output": "hyde: Context is built-in, simple for low-frequency updates like themes and auth. Redux adds boilerplate but provides devtools, middleware, time-travel debugging, predictable updates. Context re-renders all consumers on any change; Redux allows granular subscriptions. Use Context for simple cases, Redux for complex state logic."}
+{"input": "DNS records explained /only:lex", "output": "lex: dns records types a cname mx\nlex: dns configuration records\nlex: domain name system records"}
+{"input": "DNS records explained /only:vec", "output": "vec: what are the different types of dns records and what does each one do\nvec: how do you configure dns records for a domain including a, cname, mx, and txt records"}
+{"input": "DNS records explained /only:hyde", "output": "hyde: A record maps domain to IPv4 address. AAAA for IPv6. CNAME aliases one domain to another (can't be on root domain). MX for mail servers with priority. TXT for verification and SPF/DKIM. NS delegates to nameservers. TTL controls caching duration. Changes propagate based on previous TTL."}
+{"input": "tmux session management /only:lex", "output": "lex: tmux session window pane\nlex: tmux attach detach session\nlex: tmux commands shortcuts"}
+{"input": "tmux session management /only:vec", "output": "vec: how to create and manage tmux sessions for persistent terminal workflows\nvec: what are the essential tmux commands for session, window, and pane management"}
+{"input": "tmux session management /only:hyde", "output": "hyde: Start session: tmux new -s name. Detach: Ctrl-b d. Reattach: tmux attach -t name. New window: Ctrl-b c. Split pane: Ctrl-b % (vertical), Ctrl-b \" (horizontal). Navigate panes: Ctrl-b arrow. List sessions: tmux ls. Kill session: tmux kill-session -t name. Sessions persist after disconnect."}
+{"input": "utf-8 encoding explained /only:lex", "output": "lex: utf-8 unicode encoding\nlex: utf8 character encoding bytes\nlex: unicode utf-8 ascii difference"}
+{"input": "utf-8 encoding explained /only:vec", "output": "vec: how does utf-8 encoding work and why is it the standard for text\nvec: what is the relationship between unicode and utf-8 and how are characters encoded as bytes"}
+{"input": "utf-8 encoding explained /only:hyde", "output": "hyde: UTF-8 encodes Unicode code points as 1-4 bytes. ASCII characters (0-127) use 1 byte, compatible with ASCII. Higher code points use more bytes with leading bits indicating length. UTF-8 is self-synchronizing and space-efficient for Latin text. Always specify encoding explicitly when reading/writing files."}
+{"input": "microservices communication patterns /only:lex", "output": "lex: microservices communication patterns\nlex: sync async microservice calls\nlex: event driven microservices"}
+{"input": "microservices communication patterns /only:vec", "output": "vec: what are the common communication patterns between microservices\nvec: when should microservices use synchronous rest calls versus asynchronous messaging"}
+{"input": "microservices communication patterns /only:hyde", "output": "hyde: Sync (REST/gRPC): simple, immediate response, but creates coupling and cascade failures. Async (message queues, events): decoupled, resilient, eventual consistency. Use sync for queries needing immediate response. Use async for commands, notifications, cross-service workflows. Event sourcing and CQRS for complex domains."}
+{"input": "shell script best practices /only:lex", "output": "lex: bash script best practices\nlex: shell script error handling\nlex: bash scripting guidelines"}
+{"input": "shell script best practices /only:vec", "output": "vec: what are the best practices for writing reliable and maintainable shell scripts\nvec: how do you handle errors and edge cases properly in bash scripts"}
+{"input": "shell script best practices /only:hyde", "output": "hyde: Start with #!/usr/bin/env bash and set -euo pipefail. Use shellcheck for linting. Quote variables: \"$var\". Use [[ ]] for tests. Handle errors with trap. Use functions for reusability. Avoid parsing ls output\u2014use globs. Prefer printf over echo. Use local variables in functions. Add -- before filenames from user input."}
+{"input": "load balancer health checks /only:lex", "output": "lex: load balancer health check\nlex: health check endpoint liveness\nlex: lb health probe configuration"}
+{"input": "load balancer health checks /only:vec", "output": "vec: how do load balancer health checks work and why are they important\nvec: what should a health check endpoint return and how do you configure health check intervals"}
+{"input": "load balancer health checks /only:hyde", "output": "hyde: Load balancers probe backend instances to route traffic only to healthy ones. Health endpoint should check critical dependencies (database, cache) and return 200 if healthy, 503 if not. Configure interval (10-30s), timeout (5s), and threshold (2-3 failures). Include /health and /ready endpoints for Kubernetes liveness and readiness."}
+{"input": "certificate ssl tls renewal /only:lex", "output": "lex: ssl tls certificate renewal\nlex: lets encrypt certbot renew\nlex: https certificate expiration"}
+{"input": "certificate ssl tls renewal /only:vec", "output": "vec: how to renew ssl tls certificates before they expire\nvec: what is the process for automated certificate renewal with lets encrypt and certbot"}
+{"input": "certificate ssl tls renewal /only:hyde", "output": "hyde: Let's Encrypt certificates expire in 90 days. Certbot auto-renews via cron or systemd timer: certbot renew runs twice daily, renews within 30 days of expiry. Test with --dry-run. For other CAs, set calendar reminders. Check expiration: openssl s_client -connect domain:443 | openssl x509 -noout -dates."}
+{"input": "python decorators explained /only:lex", "output": "lex: python decorator function\nlex: python @ decorator syntax\nlex: python wrapper decorator"}
+{"input": "python decorators explained /only:vec", "output": "vec: how do python decorators work and what is the syntax for creating them\nvec: what are common use cases for decorators in python like logging, caching, and authentication"}
+{"input": "python decorators explained /only:hyde", "output": "hyde: Decorators wrap functions to extend behavior. @decorator before def is syntactic sugar for func = decorator(func). A decorator is a function taking a function and returning a new function. Use functools.wraps to preserve metadata. Common uses: @lru_cache for memoization, @login_required for auth, timing/logging wrappers."}
+{"input": "cap theorem database /only:lex", "output": "lex: cap theorem distributed database\nlex: consistency availability partition tolerance\nlex: cap theorem tradeoffs"}
+{"input": "cap theorem database /only:vec", "output": "vec: what is the cap theorem and how does it apply to distributed database design\nvec: how do different databases choose between consistency and availability during network partitions"}
+{"input": "cap theorem database /only:hyde", "output": "hyde: CAP theorem: distributed systems can guarantee only 2 of 3\u2014Consistency (all nodes see same data), Availability (requests get responses), Partition tolerance (survives network splits). During partitions, choose CP (reject requests for consistency, like MongoDB) or AP (serve potentially stale data, like Cassandra). PACELC extends CAP for normal operation tradeoffs."}
+{"input": "garbage collection tuning /only:lex", "output": "lex: garbage collection gc tuning\nlex: jvm gc heap memory\nlex: gc pause time optimization"}
+{"input": "garbage collection tuning /only:vec", "output": "vec: how to tune garbage collection for better application performance\nvec: what gc algorithms are available and how do you choose gc settings for low latency"}
+{"input": "garbage collection tuning /only:hyde", "output": "hyde: For JVM, G1GC is default, good balance of throughput and pause times. ZGC and Shenandoah offer sub-millisecond pauses for low-latency needs. Tune heap size: -Xms and -Xmx same to avoid resizing. Monitor with gc logs: -Xlog:gc*. Reduce allocation rate by reusing objects and avoiding unnecessary autoboxing."}
+{"input": "feature flags implementation /only:lex", "output": "lex: feature flags toggles\nlex: feature flag implementation\nlex: gradual rollout feature flags"}
+{"input": "feature flags implementation /only:vec", "output": "vec: how to implement feature flags for gradual rollouts and a/b testing\nvec: what are the best practices for managing feature flags in production"}
+{"input": "feature flags implementation /only:hyde", "output": "hyde: Feature flags decouple deployment from release. Simple: if (featureEnabled('new-checkout')) { ... }. Store flags in config, database, or services like LaunchDarkly. Use for gradual rollout (1% -> 10% -> 100%), A/B tests, kill switches. Clean up old flags to prevent technical debt. Log flag evaluations for debugging."}
+{"input": "apache kafka partitions /only:lex", "output": "lex: kafka partitions topics\nlex: kafka partition key ordering\nlex: kafka partition count scaling"}
+{"input": "apache kafka partitions /only:vec", "output": "vec: how do kafka partitions work and how do they affect scalability and message ordering\nvec: how do you choose the right number of partitions for a kafka topic"}
+{"input": "apache kafka partitions /only:hyde", "output": "hyde: Partitions enable parallelism\u2014each partition is consumed by one consumer in a group. Messages with same key go to same partition, preserving order per key. More partitions = more throughput but more overhead. Start with partitions = max(expected throughput / partition throughput, consumer count). Can't reduce partitions, only increase."}
+{"input": "cron job syntax /only:lex", "output": "lex: cron job syntax schedule\nlex: crontab expression format\nlex: cron schedule examples"}
+{"input": "cron job syntax /only:vec", "output": "vec: how to write cron expressions to schedule jobs at specific times\nvec: what does each field in a crontab entry mean and what are common scheduling patterns"}
+{"input": "cron job syntax /only:hyde", "output": "hyde: Cron format: minute hour day-of-month month day-of-week command. */5 * * * * runs every 5 minutes. 0 2 * * * runs daily at 2 AM. 0 0 * * 0 runs weekly on Sunday. Use crontab -e to edit. Tools like crontab.guru help build expressions. Consider timezone\u2014cron uses system time."}
+{"input": "GPG key signing /only:lex", "output": "lex: gpg key sign verify\nlex: gpg signature git commits\nlex: pgp key signing encryption"}
+{"input": "GPG key signing /only:vec", "output": "vec: how to use gpg keys for signing and verifying files and git commits\nvec: what is the process for creating gpg keys and configuring git to sign commits"}
+{"input": "GPG key signing /only:hyde", "output": "hyde: Generate key: gpg --full-generate-key. List keys: gpg --list-keys. Sign file: gpg --sign file.txt. Verify: gpg --verify file.txt.gpg. For git: git config --global user.signingkey KEYID, git config --global commit.gpgsign true. Export public key for GitHub: gpg --armor --export KEYID."}
+{"input": "api versioning strategies /only:lex", "output": "lex: api versioning strategy\nlex: rest api version url header\nlex: api backward compatibility"}
+{"input": "api versioning strategies /only:vec", "output": "vec: what are the different strategies for versioning rest apis\nvec: how do you maintain backward compatibility when evolving an api"}
+{"input": "api versioning strategies /only:hyde", "output": "hyde: URL versioning (/v1/users) is explicit, easy to route. Header versioning (Accept: application/vnd.api+json;version=1) keeps URLs clean. Query param (?version=1) is simple but pollutes URLs. Prefer additive changes\u2014new fields don't break clients. Deprecate gracefully with sunset headers and migration guides."}
+{"input": "mutex vs semaphore /only:lex", "output": "lex: mutex semaphore difference\nlex: mutex lock synchronization\nlex: semaphore counting binary"}
+{"input": "mutex vs semaphore /only:vec", "output": "vec: what is the difference between a mutex and a semaphore in concurrent programming\nvec: when should you use a mutex versus a semaphore for thread synchronization"}
+{"input": "mutex vs semaphore /only:hyde", "output": "hyde: Mutex is a binary lock owned by one thread\u2014used for mutual exclusion protecting shared resources. Semaphore is a counter allowing N concurrent accesses\u2014used for limiting concurrency (connection pools, rate limiting). Mutex has ownership (same thread must unlock), semaphore doesn't. Use mutex for critical sections, semaphore for resource counting."}
+{"input": "json schema validation /only:lex", "output": "lex: json schema validation\nlex: jsonschema validator python\nlex: json schema types required"}
+{"input": "json schema validation /only:vec", "output": "vec: how to use json schema to validate the structure of json data\nvec: what are the common json schema keywords for defining types, required fields, and constraints"}
+{"input": "json schema validation /only:hyde", "output": "hyde: JSON Schema defines expected structure. Key properties: type (string, number, object, array), properties for object fields, required array for mandatory fields, items for array elements. Validators: ajv (JS), jsonschema (Python). Use for API request validation, config file validation, documentation generation."}
+{"input": "CI CD pipeline stages /only:lex", "output": "lex: ci cd pipeline stages\nlex: continuous integration deployment\nlex: build test deploy pipeline"}
+{"input": "CI CD pipeline stages /only:vec", "output": "vec: what are the typical stages in a ci cd pipeline\nvec: how do you design a continuous integration and deployment pipeline for reliable releases"}
+{"input": "CI CD pipeline stages /only:hyde", "output": "hyde: Typical stages: 1) Source\u2014trigger on commit, 2) Build\u2014compile, bundle, create artifacts, 3) Test\u2014unit, integration, e2e tests, 4) Security scan\u2014SAST, dependency audit, 5) Deploy to staging, 6) Acceptance tests, 7) Deploy to production. Use parallelization for speed. Gate deployments on test pass. Implement rollback mechanisms."}
+{"input": "event sourcing pattern /only:lex", "output": "lex: event sourcing pattern\nlex: event store append only log\nlex: cqrs event sourcing"}
+{"input": "event sourcing pattern /only:vec", "output": "vec: what is event sourcing and how does it differ from traditional crud data storage\nvec: how do you implement event sourcing and what are its benefits and challenges"}
+{"input": "event sourcing pattern /only:hyde", "output": "hyde: Event sourcing stores state changes as immutable events rather than current state. Account balance is sum of all Deposit and Withdrawal events. Benefits: full audit trail, time travel, replay for debugging. Challenges: eventual consistency, event schema evolution, increased complexity. Often paired with CQRS\u2014separate read models built from event stream."}
+{"input": "IPv4 vs IPv6 /only:lex", "output": "lex: ipv4 ipv6 difference\nlex: ipv6 address format\nlex: ipv4 exhaustion ipv6 transition"}
+{"input": "IPv4 vs IPv6 /only:vec", "output": "vec: what are the key differences between ipv4 and ipv6 addressing\nvec: why is ipv6 necessary and how does the transition from ipv4 work"}
+{"input": "IPv4 vs IPv6 /only:hyde", "output": "hyde: IPv4 uses 32-bit addresses (4 billion), exhausted in 2011. IPv6 uses 128-bit addresses (340 undecillion), formatted as eight hex groups: 2001:0db8::1. IPv6 eliminates NAT need, has built-in IPsec. Transition via dual-stack (both protocols) or tunneling. Check IPv6 support: curl -6 ipv6.google.com."}
+{"input": "dependency injection benefits /only:lex", "output": "lex: dependency injection di pattern\nlex: di inversion of control ioc\nlex: dependency injection testing"}
+{"input": "dependency injection benefits /only:vec", "output": "vec: what is dependency injection and why does it improve code maintainability\nvec: how does dependency injection make unit testing easier"}
+{"input": "dependency injection benefits /only:hyde", "output": "hyde: Dependency injection provides dependencies from outside rather than creating them internally. Class receives DatabaseService via constructor instead of instantiating it. Benefits: loose coupling, easy testing with mocks, flexible configuration. Instead of new EmailService(), inject interface IEmailService\u2014swap implementations without changing consumer code."}
+{"input": "S3 bucket policy /only:lex", "output": "lex: s3 bucket policy permissions\nlex: aws s3 iam policy json\nlex: s3 bucket access control"}
+{"input": "S3 bucket policy /only:vec", "output": "vec: how to write an s3 bucket policy to control access permissions\nvec: what is the difference between s3 bucket policies and iam policies for access control"}
+{"input": "S3 bucket policy /only:hyde", "output": "hyde: S3 bucket policies are resource-based JSON policies attached to buckets. Grant public read: {\"Statement\":[{\"Effect\":\"Allow\",\"Principal\":\"*\",\"Action\":\"s3:GetObject\",\"Resource\":\"arn:aws:s3:::bucket/*\"}]}. IAM policies attach to users/roles. Use bucket policies for cross-account access, IAM for user-specific permissions. Block public access settings override policies."}
+{"input": "idempotency api design /only:lex", "output": "lex: idempotency api design\nlex: idempotent request key\nlex: api retry safety idempotency"}
+{"input": "idempotency api design /only:vec", "output": "vec: what is idempotency in api design and why is it important for reliability\nvec: how do you implement idempotent endpoints to handle duplicate requests safely"}
+{"input": "idempotency api design /only:hyde", "output": "hyde: Idempotent operations produce the same result regardless of how many times called. GET, PUT, DELETE are naturally idempotent. POST needs idempotency keys: client sends unique key, server stores result, returns cached result on retry. Store keys with TTL (24h). Critical for payment APIs\u2014prevents double charges on network retry."}
+{"input": "awk command examples /only:lex", "output": "lex: awk command examples\nlex: awk print column field\nlex: awk text processing"}
+{"input": "awk command examples /only:vec", "output": "vec: how to use awk for text processing and extracting columns from files\nvec: what are common awk patterns and commands for parsing structured text"}
+{"input": "awk command examples /only:hyde", "output": "hyde: awk processes text line by line, splitting into fields. Print second column: awk '{print $2}' file. Custom delimiter: awk -F',' '{print $1}'. Pattern match: awk '/error/ {print}'. Sum column: awk '{sum+=$3} END {print sum}'. Variables: awk -v threshold=100 '$3 > threshold'. Built-in vars: NF (fields), NR (line number)."}
+{"input": "database sharding strategies /only:lex", "output": "lex: database sharding horizontal\nlex: shard key partition strategy\nlex: database horizontal scaling"}
+{"input": "database sharding strategies /only:vec", "output": "vec: what is database sharding and what strategies exist for partitioning data\nvec: how do you choose a shard key and what are the tradeoffs of different sharding approaches"}
+{"input": "database sharding strategies /only:hyde", "output": "hyde: Sharding distributes data across multiple databases. Strategies: range-based (user IDs 1-1M on shard 1), hash-based (consistent hashing), directory-based (lookup table). Choose shard key with high cardinality, even distribution, query locality. Avoid hot spots\u2014don't shard by timestamp. Cross-shard queries are expensive. Consider sharding only after vertical scaling exhausted."}
+{"input": "jq json parsing /only:lex", "output": "lex: jq json parsing command\nlex: jq filter select query\nlex: jq command line json"}
+{"input": "jq json parsing /only:vec", "output": "vec: how to use jq to parse and transform json data from the command line\nvec: what are the common jq filters for extracting and manipulating json fields"}
+{"input": "jq json parsing /only:hyde", "output": "hyde: jq is a command-line JSON processor. Extract field: jq '.name' file.json. Array element: jq '.[0]'. Nested: jq '.users[].email'. Filter: jq '.items[] | select(.price > 100)'. Transform: jq '{name: .title, count: .items | length}'. Raw output: jq -r. Pipe curl output: curl api | jq '.data'."}
+{"input": "compile time vs runtime errors /only:lex", "output": "lex: compile time runtime error difference\nlex: static dynamic type checking\nlex: compilation errors vs exceptions"}
+{"input": "compile time vs runtime errors /only:vec", "output": "vec: what is the difference between compile time and runtime errors in programming\nvec: why are compile time errors generally preferable to runtime errors for code reliability"}
+{"input": "compile time vs runtime errors /only:hyde", "output": "hyde: Compile time errors occur during compilation before code runs\u2014syntax errors, type mismatches in statically typed languages. Runtime errors occur during execution\u2014null pointer, division by zero, file not found. Compile time errors are caught early, cheaper to fix. Static typing and linters catch more at compile time. TypeScript catches errors that JavaScript defers to runtime."}
+{"input": "content delivery network cdn /only:lex", "output": "lex: cdn content delivery network\nlex: cdn caching edge servers\nlex: cloudflare cdn setup"}
+{"input": "content delivery network cdn /only:vec", "output": "vec: how does a content delivery network cdn improve website performance\nvec: what content should you serve through a cdn and how do you configure cache headers"}
+{"input": "content delivery network cdn /only:hyde", "output": "hyde: CDN caches content at edge servers geographically close to users, reducing latency. Serve static assets (images, CSS, JS) through CDN. Set Cache-Control headers: max-age=31536000 for versioned assets, shorter for dynamic content. Configure origin pulls, purge cache on deploys. Popular CDNs: Cloudflare, CloudFront, Fastly, Akamai."}
+{"input": "circuit breaker pattern /only:lex", "output": "lex: circuit breaker pattern\nlex: circuit breaker resilience\nlex: hystrix resilience4j circuit"}
+{"input": "circuit breaker pattern /only:vec", "output": "vec: what is the circuit breaker pattern and how does it improve system resilience\nvec: how do you implement circuit breakers to prevent cascade failures in distributed systems"}
+{"input": "circuit breaker pattern /only:hyde", "output": "hyde: Circuit breaker prevents repeated calls to failing services. States: Closed (normal), Open (failing, reject calls immediately), Half-Open (test recovery). After N failures, opens circuit. After timeout, allows test request. If succeeds, closes. Prevents cascade failures, provides fallbacks. Libraries: resilience4j (Java), polly (.NET), opossum (Node.js)."}
+{"input": "mac address vs ip address /only:lex", "output": "lex: mac address ip address difference\nlex: mac address layer 2 hardware\nlex: ip vs mac network address"}
+{"input": "mac address vs ip address /only:vec", "output": "vec: what is the difference between a mac address and an ip address in networking\nvec: how do mac addresses and ip addresses work together for network communication"}
+{"input": "mac address vs ip address /only:hyde", "output": "hyde: MAC address is hardware identifier burned into NIC, 48 bits (AA:BB:CC:DD:EE:FF), used in Layer 2 (local network). IP address is logical, assigned by network, used in Layer 3 (routing). ARP maps IP to MAC on local network. IP gets packets between networks, MAC delivers within a network segment. MAC is permanent, IP changes with network."}
+{"input": "unit test vs integration test /only:lex", "output": "lex: unit test integration test difference\nlex: testing pyramid unit integration e2e\nlex: unit test isolation mocking"}
+{"input": "unit test vs integration test /only:vec", "output": "vec: what is the difference between unit tests and integration tests\nvec: how should you balance unit tests and integration tests in the testing pyramid"}
+{"input": "unit test vs integration test /only:hyde", "output": "hyde: Unit tests verify single functions or classes in isolation using mocks for dependencies. Fast, many of them. Integration tests verify components working together with real dependencies. Slower, fewer of them. Testing pyramid: many unit tests at base, fewer integration tests in middle, few e2e tests at top. Unit tests catch logic bugs, integration tests catch interface mismatches."}
+{"input": "base64 encoding decoding /only:lex", "output": "lex: base64 encoding decoding\nlex: base64 encode decode string\nlex: base64 binary to text"}
+{"input": "base64 encoding decoding /only:vec", "output": "vec: what is base64 encoding and when should you use it\nvec: how do you encode and decode base64 strings in different programming languages"}
+{"input": "base64 encoding decoding /only:hyde", "output": "hyde: Base64 encodes binary data as ASCII text using 64 characters (A-Z, a-z, 0-9, +, /). Increases size by ~33%. Use for embedding binary in JSON/XML, data URLs, email attachments. Not encryption\u2014easily decoded. In shell: echo -n 'text' | base64. Decode: echo 'dGV4dA==' | base64 -d. In JS: btoa('text'), atob('dGV4dA==')."}
+{"input": "tail recursion optimization /only:lex", "output": "lex: tail recursion optimization\nlex: tail call optimization tco\nlex: recursive function stack overflow"}
+{"input": "tail recursion optimization /only:vec", "output": "vec: what is tail recursion and how does tail call optimization prevent stack overflow\nvec: how do you convert a recursive function to tail recursive form"}
+{"input": "tail recursion optimization /only:hyde", "output": "hyde: Tail recursion: recursive call is the last operation, no work after it returns. TCO reuses stack frame instead of adding new one\u2014prevents stack overflow. Convert by passing accumulated result as parameter: factorial(n, acc=1) { return n <= 1 ? acc : factorial(n-1, n*acc); }. Not all languages implement TCO\u2014JavaScript in strict mode, Scheme yes, Python no."}
+{"input": "nginx location block /only:lex", "output": "lex: nginx location block config\nlex: nginx location regex prefix\nlex: nginx location matching order"}
+{"input": "nginx location block /only:vec", "output": "vec: how do nginx location blocks work and in what order are they matched\nvec: what is the syntax for nginx location directives including prefix and regex matching"}
+{"input": "nginx location block /only:hyde", "output": "hyde: Location matching order: 1) Exact match (= /path), 2) Preferential prefix (^~ /path), 3) Regex in config order (~* case-insensitive, ~ case-sensitive), 4) Longest prefix match. Example: location /api { proxy_pass http://backend; }. Regex: location ~ \\.php$ { fastcgi_pass; }. Use = for exact matches to skip regex evaluation."}
+{"input": "oop encapsulation abstraction /only:lex", "output": "lex: oop encapsulation abstraction\nlex: object oriented principles\nlex: encapsulation data hiding"}
+{"input": "oop encapsulation abstraction /only:vec", "output": "vec: what are encapsulation and abstraction in object oriented programming\nvec: how do encapsulation and abstraction differ and why are they important for software design"}
+{"input": "oop encapsulation abstraction /only:hyde", "output": "hyde: Encapsulation bundles data and methods, restricting direct access via private fields and public getters/setters. Protects internal state, enables validation. Abstraction hides implementation complexity, exposing only essential interface. Car has accelerate() method\u2014you don't need to know engine internals. Encapsulation is how you hide, abstraction is what you hide."}
+{"input": "webhook vs api polling /only:lex", "output": "lex: webhook vs polling api\nlex: push vs pull api pattern\nlex: webhook callback http"}
+{"input": "webhook vs api polling /only:vec", "output": "vec: what are the differences between webhooks and api polling for receiving updates\nvec: when should you use webhooks instead of polling an api for changes"}
+{"input": "webhook vs api polling /only:hyde", "output": "hyde: Polling: client repeatedly asks server for updates. Simple but wastes bandwidth if nothing changed, may miss events between polls. Webhooks: server pushes updates to client endpoint when events occur. Real-time, efficient, but requires public endpoint and handling failures. Use webhooks when available (Stripe, GitHub), fall back to polling for systems without webhook support."}
+{"input": "database transaction isolation levels /only:lex", "output": "lex: database transaction isolation levels\nlex: read committed serializable\nlex: sql isolation dirty read phantom"}
+{"input": "database transaction isolation levels /only:vec", "output": "vec: what are the different database transaction isolation levels and their tradeoffs\nvec: how do isolation levels prevent anomalies like dirty reads and phantom reads"}
+{"input": "database transaction isolation levels /only:hyde", "output": "hyde: Isolation levels from weakest to strongest: Read Uncommitted (dirty reads possible), Read Committed (sees only committed data, default in PostgreSQL), Repeatable Read (no non-repeatable reads), Serializable (no phantom reads, full isolation). Higher isolation = more locking = lower concurrency. Choose based on consistency needs vs performance."}
+{"input": "hash table collision resolution /only:lex", "output": "lex: hash table collision resolution\nlex: hash map chaining open addressing\nlex: hash collision handling"}
+{"input": "hash table collision resolution /only:vec", "output": "vec: how do hash tables handle collisions when multiple keys hash to the same bucket\nvec: what are the differences between chaining and open addressing for collision resolution"}
+{"input": "hash table collision resolution /only:hyde", "output": "hyde: Chaining: each bucket holds a linked list of entries with same hash. Simple, handles high load well. Open addressing: on collision, probe for next empty slot. Linear probing (check next slot), quadratic probing, double hashing. Better cache locality but degrades at high load factors. Most implementations use chaining (Java HashMap) or open addressing with good probing (Python dict)."}
+{"input": "yaml vs json config /only:lex", "output": "lex: yaml json config comparison\nlex: yaml vs json syntax\nlex: configuration file format"}
+{"input": "yaml vs json config /only:vec", "output": "vec: what are the differences between yaml and json for configuration files\nvec: when should you choose yaml over json for application configuration"}
+{"input": "yaml vs json config /only:hyde", "output": "hyde: JSON: strict syntax, no comments, explicit quotes, universal parsing. YAML: superset of JSON, allows comments, cleaner for humans, indentation-based. Use JSON for data interchange, APIs, when strict parsing needed. Use YAML for configs (Docker Compose, Kubernetes, CI/CD) where human editing is common. YAML gotchas: Norway problem (NO parsed as false), inconsistent indentation."}
+{"input": "Kubernetes ingress controller /only:lex", "output": "lex: kubernetes ingress controller\nlex: k8s ingress nginx traefik\nlex: ingress rules path host"}
+{"input": "Kubernetes ingress controller /only:vec", "output": "vec: what is a kubernetes ingress controller and how does it route external traffic to services\nvec: how do you configure ingress rules for path-based and host-based routing in kubernetes"}
+{"input": "Kubernetes ingress controller /only:hyde", "output": "hyde: Ingress controller implements Ingress resources, routing external HTTP/HTTPS to services. Popular controllers: nginx-ingress, Traefik, HAProxy. Ingress resource defines rules: host (foo.com), paths (/api -> api-service, / -> frontend). Annotations configure TLS, rate limiting, auth. Install controller first, then create Ingress resources."}
+{"input": "docker layer caching /only:lex", "output": "lex: docker layer caching build\nlex: dockerfile cache optimization\nlex: docker build cache layers"}
+{"input": "docker layer caching /only:vec", "output": "vec: how does docker layer caching work and how do you optimize dockerfiles for faster builds\nvec: what dockerfile practices maximize cache hits when building docker images"}
+{"input": "docker layer caching /only:hyde", "output": "hyde: Docker caches each instruction as a layer. Cache invalidates when instruction or context changes, invalidating all subsequent layers. Optimization: order from least to most frequently changing. Copy package.json and install deps before copying source code. Use .dockerignore. Multi-stage builds discard intermediate layers. COPY --from for selective extraction."}
+{"input": "ssh tunnel port forwarding /only:lex", "output": "lex: ssh tunnel port forwarding\nlex: ssh local remote forward\nlex: ssh -L -R tunnel"}
+{"input": "ssh tunnel port forwarding /only:vec", "output": "vec: how to set up ssh tunnels for local and remote port forwarding\nvec: what is the difference between ssh local port forwarding and remote port forwarding"}
+{"input": "ssh tunnel port forwarding /only:hyde", "output": "hyde: Local forwarding (-L): access remote service through local port. ssh -L 8080:localhost:3000 server\u2014localhost:8080 reaches server's port 3000. Remote forwarding (-R): expose local service through remote port. ssh -R 8080:localhost:3000 server\u2014server:8080 reaches your port 3000. Use for accessing databases behind firewalls, exposing dev servers temporarily."}
+{"input": "rest api pagination /only:lex", "output": "lex: rest api pagination\nlex: api pagination offset cursor\nlex: paginated response next page"}
+{"input": "rest api pagination /only:vec", "output": "vec: what are the different approaches to implementing pagination in rest apis\nvec: how do offset-based and cursor-based pagination compare for api design"}
+{"input": "rest api pagination /only:hyde", "output": "hyde: Offset pagination: ?page=2&limit=20 or ?offset=20&limit=20. Simple but slow for deep pages, inconsistent with real-time inserts. Cursor pagination: ?cursor=abc123&limit=20, cursor encodes position. Consistent, efficient, better for infinite scroll. Return next_cursor in response. Use Link headers or response body for pagination URLs."}
+{"input": "solid principles explained /only:lex", "output": "lex: solid principles oop\nlex: single responsibility open closed\nlex: solid design principles"}
+{"input": "solid principles explained /only:vec", "output": "vec: what are the solid principles in object oriented design\nvec: how do the solid principles improve code maintainability and flexibility"}
+{"input": "solid principles explained /only:hyde", "output": "hyde: SOLID: Single Responsibility (one reason to change), Open/Closed (open for extension, closed for modification), Liskov Substitution (subtypes substitutable for base types), Interface Segregation (many specific interfaces over one general), Dependency Inversion (depend on abstractions not concretions). Following SOLID produces loosely coupled, testable, maintainable code."}
+{"input": "protobuf vs json /only:lex", "output": "lex: protobuf json comparison\nlex: protocol buffers serialization\nlex: grpc protobuf format"}
+{"input": "protobuf vs json /only:vec", "output": "vec: what are the differences between protocol buffers and json for data serialization\nvec: when should you use protobuf instead of json for api communication"}
+{"input": "protobuf vs json /only:hyde", "output": "hyde: JSON: human-readable, self-describing, universal support, larger payload. Protobuf: binary format, 3-10x smaller, faster serialization, requires schema (.proto files), strong typing. Use JSON for public APIs, debugging, human interaction. Use Protobuf for internal microservices, high-throughput systems, gRPC. Schema evolution with field numbers enables backward compatibility."}
+{"input": "linux namespaces containers /only:lex", "output": "lex: linux namespaces containers\nlex: container isolation namespace cgroup\nlex: docker linux namespaces"}
+{"input": "linux namespaces containers /only:vec", "output": "vec: how do linux namespaces enable container isolation\nvec: what kernel features do docker and containers use for process isolation"}
+{"input": "linux namespaces containers /only:hyde", "output": "hyde: Containers use Linux namespaces for isolation: PID (process tree), NET (network stack), MNT (filesystem mounts), UTS (hostname), IPC (inter-process communication), USER (user IDs). Cgroups limit resource usage (CPU, memory). Together they isolate processes without full VM overhead. Containers share host kernel but see isolated views of system resources."}
+{"input": "GraphQL subscriptions websocket /only:lex", "output": "lex: graphql subscriptions websocket\nlex: graphql realtime subscriptions\nlex: graphql subscription server"}
+{"input": "GraphQL subscriptions websocket /only:vec", "output": "vec: how do graphql subscriptions work for real-time data updates\nvec: what is the underlying protocol for graphql subscriptions and how do you implement them"}
+{"input": "GraphQL subscriptions websocket /only:hyde", "output": "hyde: GraphQL subscriptions enable real-time updates via persistent connections. Client subscribes: subscription { messageAdded { text } }. Server pushes when events occur. Typically uses WebSocket with graphql-ws protocol. Server maintains subscription registry, publishes events through PubSub. Apollo Server and Relay support subscriptions natively."}
+{"input": "stateless vs stateful services /only:lex", "output": "lex: stateless stateful service\nlex: stateless api design\nlex: session state storage"}
+{"input": "stateless vs stateful services /only:vec", "output": "vec: what is the difference between stateless and stateful services in application architecture\nvec: why are stateless services easier to scale and how do you handle state when needed"}
+{"input": "stateless vs stateful services /only:hyde", "output": "hyde: Stateless services don't store client state between requests\u2014any instance can handle any request. Scale by adding instances, no session affinity needed. Stateful services maintain client state, requiring sticky sessions or shared storage. Make services stateless by storing session in JWT tokens, Redis, or databases. Stateless is preferred for horizontal scaling and resilience."}
+{"input": "git bisect debugging /only:lex", "output": "lex: git bisect bug finding\nlex: git bisect good bad\nlex: binary search git commit"}
+{"input": "git bisect debugging /only:vec", "output": "vec: how to use git bisect to find the commit that introduced a bug\nvec: what is the git bisect workflow for binary search debugging through commit history"}
+{"input": "git bisect debugging /only:hyde", "output": "hyde: git bisect does binary search through commits to find where bug was introduced. Start: git bisect start, git bisect bad (current has bug), git bisect good v1.0 (known good commit). Git checks out middle commit\u2014test and mark git bisect good or git bisect bad. Repeat until found. Automate with git bisect run ./test.sh. End with git bisect reset."}
+{"input": "dns propagation time /only:lex", "output": "lex: dns propagation time\nlex: dns ttl propagation delay\nlex: dns changes not working"}
+{"input": "dns propagation time /only:vec", "output": "vec: why do dns changes take time to propagate and how can you speed it up\nvec: what is dns propagation and how does ttl affect how quickly changes are visible"}
+{"input": "dns propagation time /only:hyde", "output": "hyde: DNS propagation is time for changes to spread through cached resolvers worldwide. TTL (Time To Live) controls cache duration. High TTL (86400s) means up to 24h wait. Before changes, lower TTL to 300s, wait for old TTL, make change, then restore TTL. Use dig @8.8.8.8 domain.com to check Google's view. Full propagation can take 24-48h for high-TTL records."}
+{"input": "fall of the Roman Empire /only:lex", "output": "lex: roman empire fall causes\nlex: decline of rome 476 AD\nlex: western roman empire collapse"}
+{"input": "fall of the Roman Empire /only:vec", "output": "vec: what were the main causes of the fall of the western roman empire\nvec: how did economic, military, and political factors contribute to rome's collapse"}
+{"input": "fall of the Roman Empire /only:hyde", "output": "hyde: The Western Roman Empire fell in 476 AD when Odoacer deposed Romulus Augustulus. Contributing factors included economic troubles, military overextension, political instability with rapid emperor turnover, pressure from Germanic tribes, and the division of the empire. The Eastern Roman Empire (Byzantine) survived until 1453."}
+{"input": "causes of World War I /only:lex", "output": "lex: world war 1 causes\nlex: ww1 assassination archduke franz ferdinand\nlex: causes great war 1914"}
+{"input": "causes of World War I /only:vec", "output": "vec: what were the main causes and triggers of world war one\nvec: how did the assassination of archduke franz ferdinand lead to a global war"}
+{"input": "causes of World War I /only:hyde", "output": "hyde: WWI was caused by MAIN: Militarism, Alliances, Imperialism, Nationalism. The assassination of Archduke Franz Ferdinand on June 28, 1914 in Sarajevo triggered a chain reaction through alliance systems. Austria-Hungary declared war on Serbia, pulling in Russia, Germany, France, and Britain within weeks."}
+{"input": "ancient Egypt pyramids construction /only:lex", "output": "lex: egyptian pyramids how built\nlex: pyramid construction ancient egypt\nlex: great pyramid giza building"}
+{"input": "ancient Egypt pyramids construction /only:vec", "output": "vec: how were the ancient egyptian pyramids constructed without modern technology\nvec: what techniques and labor did ancient egyptians use to build the pyramids at giza"}
+{"input": "ancient Egypt pyramids construction /only:hyde", "output": "hyde: The pyramids were built using ramps, levers, and organized labor forces of tens of thousands of workers. Limestone blocks weighing 2.5 tons average were quarried nearby and transported on sledges. Workers were not slaves but paid laborers housed in nearby villages. The Great Pyramid took approximately 20 years to complete around 2560 BC."}
+{"input": "French Revolution timeline /only:lex", "output": "lex: french revolution timeline events\nlex: french revolution 1789 bastille\nlex: reign of terror robespierre"}
+{"input": "French Revolution timeline /only:vec", "output": "vec: what were the major events of the french revolution in chronological order\nvec: how did the french revolution progress from the storming of the bastille to napoleon"}
+{"input": "French Revolution timeline /only:hyde", "output": "hyde: 1789: Estates-General convenes, Bastille stormed July 14. 1791: Constitutional monarchy established. 1792: Republic declared, king executed. 1793-94: Reign of Terror under Robespierre, 17,000 guillotined. 1794: Thermidorian Reaction ends Terror. 1799: Napoleon's coup establishes Consulate."}
+{"input": "Ottoman Empire history /only:lex", "output": "lex: ottoman empire history\nlex: ottoman sultanate 1299 1922\nlex: turkish ottoman empire rise fall"}
+{"input": "Ottoman Empire history /only:vec", "output": "vec: what was the history of the ottoman empire from its founding to its dissolution\nvec: how did the ottoman empire rise to become a major world power and eventually decline"}
+{"input": "Ottoman Empire history /only:hyde", "output": "hyde: Founded by Osman I around 1299, the Ottoman Empire conquered Constantinople in 1453, ending the Byzantine Empire. At its peak under Suleiman the Magnificent (1520-1566), it controlled Southeast Europe, Western Asia, and North Africa. Gradual decline through the 18th-19th centuries culminated in dissolution after WWI in 1922."}
+{"input": "American Civil War battles /only:lex", "output": "lex: american civil war battles\nlex: civil war gettysburg antietam\nlex: union confederate battles 1861"}
+{"input": "American Civil War battles /only:vec", "output": "vec: what were the major battles of the american civil war\nvec: which battles were turning points in the civil war between union and confederate forces"}
+{"input": "American Civil War battles /only:hyde", "output": "hyde: Major battles: Fort Sumter (1861, war begins), Bull Run (Confederate victory), Antietam (1862, bloodiest single day, led to Emancipation Proclamation), Gettysburg (1863, Union turning point), Vicksburg (Union controls Mississippi), Sherman's March (1864), Appomattox (1865, Lee surrenders). Total casualties exceeded 600,000."}
+{"input": "Ming Dynasty China /only:lex", "output": "lex: ming dynasty china history\nlex: ming dynasty 1368 1644\nlex: chinese ming emperors"}
+{"input": "Ming Dynasty China /only:vec", "output": "vec: what were the major achievements and characteristics of the ming dynasty in china\nvec: how did the ming dynasty rise to power and what led to its eventual fall"}
+{"input": "Ming Dynasty China /only:hyde", "output": "hyde: The Ming Dynasty (1368-1644) was founded by Zhu Yuanzhang after overthrowing Mongol Yuan rule. Notable achievements: construction of the Forbidden City, voyages of Zheng He, restoration of the Great Wall, and flourishing arts and porcelain. Fell to the Manchu Qing after peasant rebellions weakened central authority."}
+{"input": "Viking Age exploration /only:lex", "output": "lex: viking age exploration\nlex: vikings norse exploration america\nlex: viking raids settlements"}
+{"input": "Viking Age exploration /only:vec", "output": "vec: where did the vikings explore and settle during the viking age\nvec: what routes did norse explorers take and what lands did they discover"}
+{"input": "Viking Age exploration /only:hyde", "output": "hyde: The Viking Age (793-1066 AD) saw Norse expansion across Europe and beyond. Vikings raided British Isles and France, settled Iceland (874), Greenland (985), and reached North America (Vinland, c.1000) under Leif Erikson. They also traveled east through Russia to Constantinople and served as Varangian Guard."}
+{"input": "Industrial Revolution inventions /only:lex", "output": "lex: industrial revolution inventions\nlex: industrial revolution steam engine\nlex: 18th century industrial innovations"}
+{"input": "Industrial Revolution inventions /only:vec", "output": "vec: what were the key inventions that drove the industrial revolution\nvec: how did the steam engine and textile machinery transform manufacturing in the 18th century"}
+{"input": "Industrial Revolution inventions /only:hyde", "output": "hyde: Key inventions: Spinning Jenny (1764), Water Frame (1769), Steam Engine improved by James Watt (1769), Power Loom (1785), Cotton Gin (1793), Steam Locomotive (1804). These enabled factory production, mass manufacturing, and transformed society from agricultural to industrial. Britain led the revolution starting around 1760."}
+{"input": "Byzantine Empire Constantinople /only:lex", "output": "lex: byzantine empire constantinople\nlex: eastern roman empire byzantium\nlex: fall of constantinople 1453"}
+{"input": "Byzantine Empire Constantinople /only:vec", "output": "vec: what was the byzantine empire and how long did it last after rome fell\nvec: how did constantinople serve as the capital of the byzantine empire until 1453"}
+{"input": "Byzantine Empire Constantinople /only:hyde", "output": "hyde: The Byzantine Empire was the continuation of the Eastern Roman Empire, lasting from 330 AD (Constantinople founded) to 1453. At its peak under Justinian I, it reconquered much of the western Mediterranean. Constantinople was the largest and wealthiest European city for centuries until falling to Ottoman Turks under Mehmed II on May 29, 1453."}
+{"input": "Aztec Empire civilization /only:lex", "output": "lex: aztec empire civilization\nlex: aztec tenochtitlan mexico\nlex: aztec history mesoamerica"}
+{"input": "Aztec Empire civilization /only:vec", "output": "vec: what was the aztec empire and how did their civilization develop in mesoamerica\nvec: how did the aztecs build tenochtitlan and what led to the fall of their empire"}
+{"input": "Aztec Empire civilization /only:hyde", "output": "hyde: The Aztec Empire (1428-1521) dominated central Mexico from their capital Tenochtitlan, built on an island in Lake Texcoco (modern Mexico City). Population reached 200,000+. Known for pyramids, human sacrifice, chinampas (floating gardens), and tribute system. Conquered by Hern\u00e1n Cort\u00e9s in 1521 with help from rival indigenous groups and smallpox."}
+{"input": "Renaissance Italy Florence /only:lex", "output": "lex: renaissance italy florence\nlex: italian renaissance medici\nlex: florence renaissance art"}
+{"input": "Renaissance Italy Florence /only:vec", "output": "vec: why did the renaissance begin in italy particularly in florence\nvec: how did the medici family and florence become the center of the italian renaissance"}
+{"input": "Renaissance Italy Florence /only:hyde", "output": "hyde: The Renaissance began in Florence around 1400 due to wealth from banking and trade, political stability, and classical heritage. The Medici family, especially Lorenzo the Magnificent, patronized artists like Leonardo, Michelangelo, and Botticelli. Florence's guilds, humanism from rediscovered Greek texts, and competition among city-states drove cultural innovation."}
+{"input": "Cold War Berlin Wall /only:lex", "output": "lex: cold war berlin wall\nlex: berlin wall 1961 1989\nlex: east west germany division"}
+{"input": "Cold War Berlin Wall /only:vec", "output": "vec: what was the significance of the berlin wall during the cold war\nvec: why was the berlin wall built and what led to its fall in 1989"}
+{"input": "Cold War Berlin Wall /only:hyde", "output": "hyde: The Berlin Wall was built overnight on August 13, 1961 by East Germany to stop emigration to the West\u20143.5 million had fled since 1945. It divided Berlin for 28 years, symbolizing the Iron Curtain. Fell November 9, 1989 after Hungary opened its border and East German protests grew. Germany reunified October 3, 1990."}
+{"input": "Mongol Empire Genghis Khan /only:lex", "output": "lex: mongol empire genghis khan\nlex: mongol conquests 13th century\nlex: genghis khan mongol history"}
+{"input": "Mongol Empire Genghis Khan /only:vec", "output": "vec: how did genghis khan build the mongol empire into the largest contiguous land empire\nvec: what territories did the mongol empire conquer and how did they administer such vast lands"}
+{"input": "Mongol Empire Genghis Khan /only:hyde", "output": "hyde: Genghis Khan united Mongol tribes by 1206 and conquered from Korea to Poland by his death in 1227. The empire peaked under his grandsons, spanning 24 million km\u00b2\u2014largest contiguous empire ever. Success came from cavalry tactics, meritocracy, religious tolerance, and the Yam relay system. Divided into khanates after 1260."}
+{"input": "ancient Greece democracy Athens /only:lex", "output": "lex: ancient greece democracy athens\nlex: athenian democracy 5th century bc\nlex: greek democracy origins"}
+{"input": "ancient Greece democracy Athens /only:vec", "output": "vec: how did democracy develop in ancient athens and how did it function\nvec: what were the key institutions and practices of athenian democracy"}
+{"input": "ancient Greece democracy Athens /only:hyde", "output": "hyde: Athenian democracy emerged under Cleisthenes (508 BC) and peaked under Pericles (461-429 BC). Citizens (adult male non-slaves) voted directly in the Assembly (Ekklesia) on laws and policy. The Council of 500, chosen by lot, set the agenda. Jury courts had hundreds of jurors. About 30,000 of 300,000 residents were citizens."}
+{"input": "Protestant Reformation Martin Luther /only:lex", "output": "lex: protestant reformation luther\nlex: martin luther 95 theses\nlex: reformation 1517 catholic church"}
+{"input": "Protestant Reformation Martin Luther /only:vec", "output": "vec: what started the protestant reformation and what were its main ideas\nvec: how did martin luther's 95 theses challenge the catholic church and spread across europe"}
+{"input": "Protestant Reformation Martin Luther /only:hyde", "output": "hyde: Martin Luther posted his 95 Theses on October 31, 1517 in Wittenberg, criticizing indulgences and papal authority. Key ideas: salvation by faith alone, scripture as sole authority, priesthood of all believers. The printing press spread his ideas rapidly. Luther was excommunicated in 1521. The Reformation split Western Christianity and sparked religious wars across Europe."}
+{"input": "Silk Road trade routes /only:lex", "output": "lex: silk road trade route\nlex: silk road ancient trade china\nlex: silk road history commerce"}
+{"input": "Silk Road trade routes /only:vec", "output": "vec: what was the silk road and how did it connect east and west\nvec: what goods and ideas were exchanged along the ancient silk road trade routes"}
+{"input": "Silk Road trade routes /only:hyde", "output": "hyde: The Silk Road was a network of trade routes connecting China to the Mediterranean from around 130 BC to 1450s AD. Goods traded: silk, spices, porcelain from East; gold, glass, horses from West. Also spread Buddhism, Islam, technologies like paper and gunpowder, and unfortunately, the Black Death. Named by German geographer Ferdinand von Richthofen in 1877."}
+{"input": "Napoleonic Wars Europe /only:lex", "output": "lex: napoleonic wars europe\nlex: napoleon bonaparte campaigns\nlex: napoleonic era 1803 1815"}
+{"input": "Napoleonic Wars Europe /only:vec", "output": "vec: what were the major campaigns and outcomes of the napoleonic wars\nvec: how did napoleon's military conquests reshape europe and lead to his downfall"}
+{"input": "Napoleonic Wars Europe /only:hyde", "output": "hyde: The Napoleonic Wars (1803-1815) saw France under Napoleon dominate continental Europe through brilliant campaigns at Austerlitz, Jena, and Wagram. His empire stretched from Spain to Poland. The failed 1812 Russian invasion (600,000 troops, 100,000 returned) began his decline. Exiled to Elba 1814, returned for Hundred Days, finally defeated at Waterloo June 18, 1815."}
+{"input": "ancient Mesopotamia civilizations /only:lex", "output": "lex: ancient mesopotamia civilizations\nlex: mesopotamia sumer babylon\nlex: cradle of civilization tigris euphrates"}
+{"input": "ancient Mesopotamia civilizations /only:vec", "output": "vec: what civilizations arose in ancient mesopotamia and what were their achievements\nvec: why is mesopotamia called the cradle of civilization and what did sumerians invent"}
+{"input": "ancient Mesopotamia civilizations /only:hyde", "output": "hyde: Mesopotamia (modern Iraq) between Tigris and Euphrates rivers hosted the world's first civilizations. Sumerians (4500-1900 BC) invented writing (cuneiform), the wheel, sailboat, and plow. Akkadian Empire under Sargon was first empire. Babylon produced Hammurabi's Code. Assyrians and Persians followed. Agriculture surplus enabled cities, specialization, and complex society."}
+{"input": "Meiji Restoration Japan /only:lex", "output": "lex: meiji restoration japan\nlex: meiji era modernization 1868\nlex: japan meiji emperor reform"}
+{"input": "Meiji Restoration Japan /only:vec", "output": "vec: what was the meiji restoration and how did it transform japan\nvec: how did japan modernize so rapidly during the meiji period from 1868 to 1912"}
+{"input": "Meiji Restoration Japan /only:hyde", "output": "hyde: The Meiji Restoration (1868) ended 250 years of Tokugawa shogunate rule, restoring imperial power under Emperor Meiji. Japan rapidly industrialized and westernized: abolished feudalism, created national army, built railways, established constitution (1889). Slogan: 'Rich country, strong army.' Japan defeated China (1895) and Russia (1905), becoming a world power within 50 years."}
+{"input": "Black Death plague Europe /only:lex", "output": "lex: black death plague europe\nlex: bubonic plague 1347 medieval\nlex: black death medieval europe"}
+{"input": "Black Death plague Europe /only:vec", "output": "vec: what was the black death and how did it impact medieval europe\nvec: how did the bubonic plague spread across europe and what were its consequences"}
+{"input": "Black Death plague Europe /only:hyde", "output": "hyde: The Black Death (1347-1351) killed 75-200 million people, 30-60% of Europe's population. Caused by Yersinia pestis bacteria spread by fleas on rats, it arrived via Genoese ships from Crimea. Symptoms: buboes, fever, death within days. Consequences: labor shortages raised wages, weakened feudalism, sparked religious movements and persecution of Jews."}
+{"input": "Spanish Conquest Americas /only:lex", "output": "lex: spanish conquest americas\nlex: conquistadors cortez pizarro\nlex: spanish colonization new world"}
+{"input": "Spanish Conquest Americas /only:vec", "output": "vec: how did spanish conquistadors conquer the aztec and inca empires\nvec: what factors enabled spain to colonize the americas so rapidly in the 16th century"}
+{"input": "Spanish Conquest Americas /only:hyde", "output": "hyde: Hern\u00e1n Cort\u00e9s conquered the Aztec Empire (1519-1521) with 500 soldiers, allying with Tlaxcalans and exploiting Montezuma's hesitation. Francisco Pizarro conquered the Inca Empire (1532-1533) capturing Atahualpa during civil war. Spanish advantages: steel weapons, horses, gunpowder, and crucially, Old World diseases like smallpox that killed 90% of indigenous populations."}
+{"input": "World War II D-Day /only:lex", "output": "lex: world war 2 d-day normandy\nlex: d-day june 6 1944 invasion\nlex: operation overlord ww2"}
+{"input": "World War II D-Day /only:vec", "output": "vec: what happened on d-day and why was the normandy invasion a turning point in world war two\nvec: how was the d-day invasion of normandy planned and executed by allied forces"}
+{"input": "World War II D-Day /only:hyde", "output": "hyde: D-Day, June 6, 1944, was the largest amphibious invasion in history. Operation Overlord landed 156,000 Allied troops on five Normandy beaches (Utah, Omaha, Gold, Juno, Sword). Despite 10,000+ casualties, it established a Western Front, leading to Paris liberation (August 1944) and Germany's surrender (May 1945). Supreme Commander: Dwight D. Eisenhower."}
+{"input": "Han Dynasty China achievements /only:lex", "output": "lex: han dynasty china achievements\nlex: han dynasty 206 bc history\nlex: ancient china han empire"}
+{"input": "Han Dynasty China achievements /only:vec", "output": "vec: what were the major achievements and contributions of the han dynasty in china\nvec: why is the han dynasty considered a golden age in chinese history"}
+{"input": "Han Dynasty China achievements /only:hyde", "output": "hyde: The Han Dynasty (206 BC - 220 AD) is considered China's golden age. Achievements: Silk Road trade established, paper invented (105 AD), civil service exams introduced, Confucianism became state ideology. Population reached 60 million. So influential that ethnic Chinese still call themselves 'Han people.' Collapsed due to court intrigue, eunuch power, and Yellow Turban Rebellion."}

+ 3 - 3
finetune/data/train/dataset_info.json

@@ -1,8 +1,8 @@
 {
   "dataset_name": "qmd-query-expansion",
-  "train_samples": 5562,
-  "val_samples": 618,
-  "short_query_pct": 26.5,
+  "train_samples": 1891,
+  "val_samples": 211,
+  "short_query_pct": 33.6,
   "columns": [
     "prompt",
     "completion",

+ 517 - 27
finetune/dataset/generate_data.py

@@ -13,40 +13,471 @@ except ImportError:
     print("Install anthropic: pip install anthropic")
     exit(1)
 
-# Sample query templates for diverse training data
+# Sample query templates for diverse training data - organized by category
 QUERY_TEMPLATES = [
-    # Technical documentation
+    # === Technical documentation (35% of queries) ===
     "how to {action} {technology}",
     "{technology} {concept} example",
     "configure {technology} for {use_case}",
     "{error_type} error in {technology}",
     "best practices for {concept}",
-
-    # Personal notes / journals
+    "{technology} vs {technology2}",
+    "{action} {technology} {use_case}",
+    "setup {technology} {use_case}",
+    "{technology} tutorial for beginners",
+    "{technology} documentation",
+    "{technology} {error_type} troubleshooting",
+    "{concept} in {technology}",
+    "migrate from {technology} to {technology2}",
+    "{action} {concept} {technology}",
+    # === Personal notes / journals (15% of queries) ===
     "meeting notes {topic}",
     "ideas for {project}",
     "{date} journal entry",
     "thoughts on {topic}",
-
-    # Research / learning
+    "{project} {topic} notes",
+    "{topic} meeting {date}",
+    "reflect on {topic}",
+    "brainstorm {project}",
+    # === Research / learning (20% of queries) ===
     "what is {concept}",
     "difference between {thing1} and {thing2}",
     "{topic} tutorial",
     "learn {skill}",
-
-    # Short queries
+    "understand {concept}",
+    "explain {concept}",
+    "{topic} fundamentals",
+    "intro to {skill}",
+    "{thing1} or {thing2}",
+    "when to use {concept}",
+    # === Short / keyword queries (15% of queries) ===
     "{keyword}",
     "{keyword} {modifier}",
+    "{keyword} {action}",
+    "{keyword} {use_case}",
+    "{technology} {keyword}",
+    "{concept} {keyword}",
+    # === Temporal / recency queries (10% of queries) ===
+    "latest {topic}",
+    "recent {concept} changes",
+    "new {technology} features",
+    "{topic} update {date}",
+    "what changed in {technology}",
+    "{technology} changelog {date}",
+    "{topic} news {date}",
+    # === Named entities / specific topics (5% of queries) ===
+    "{named_entity} {topic}",
+    "{person} {concept}",
+    "{organization} {use_case}",
+    "{product} {action}",
 ]
 
-ACTIONS = ["install", "configure", "setup", "debug", "deploy", "test", "optimize", "migrate"]
-TECHNOLOGIES = ["python", "typescript", "react", "docker", "kubernetes", "postgres", "redis", "nginx", "git", "linux"]
-CONCEPTS = ["authentication", "caching", "logging", "testing", "deployment", "API", "database", "security"]
-USE_CASES = ["production", "development", "CI/CD", "local", "cloud"]
-ERROR_TYPES = ["connection", "timeout", "permission", "memory", "syntax"]
-TOPICS = ["productivity", "workflow", "architecture", "design", "performance"]
-KEYWORDS = ["auth", "config", "setup", "api", "data", "cache", "log", "test"]
-MODIFIERS = ["best", "fast", "simple", "advanced", "secure"]
+# Category weights for balanced sampling
+TEMPLATE_CATEGORIES = {
+    "technical": list(range(0, 14)),  # 0-13
+    "personal": list(range(14, 22)),  # 14-21
+    "research": list(range(22, 31)),  # 22-30
+    "short": list(range(31, 36)),  # 31-35
+    "temporal": list(range(36, 42)),  # 36-41
+    "entities": list(range(42, 46)),  # 42-45
+}
+
+ACTIONS = [
+    "install",
+    "configure",
+    "setup",
+    "debug",
+    "deploy",
+    "test",
+    "optimize",
+    "migrate",
+    "build",
+    "run",
+    "lint",
+    "format",
+    "backup",
+    "restore",
+    "update",
+    "rollback",
+    "monitor",
+    "scale",
+    "secure",
+    "integrate",
+    "automate",
+    "refactor",
+    "initialize",
+]
+
+TECHNOLOGIES = [
+    # Languages
+    "python",
+    "typescript",
+    "javascript",
+    "rust",
+    "golang",
+    "java",
+    "kotlin",
+    "swift",
+    "ruby",
+    "php",
+    "cpp",
+    "c",
+    "elixir",
+    "scala",
+    "clojure",
+    "dart",
+    # Frameworks/Frontend
+    "react",
+    "vue",
+    "angular",
+    "svelte",
+    "solid",
+    "htmx",
+    "alpine",
+    "nextjs",
+    "nuxt",
+    # Backend
+    "django",
+    "flask",
+    "fastapi",
+    "express",
+    "rails",
+    "spring",
+    "laravel",
+    # Infrastructure
+    "docker",
+    "kubernetes",
+    "terraform",
+    "ansible",
+    "jenkins",
+    "github-actions",
+    # Databases
+    "postgres",
+    "mysql",
+    "mongodb",
+    "redis",
+    "elasticsearch",
+    "sqlite",
+    "dynamodb",
+    "cassandra",
+    "cockroachdb",
+    "supabase",
+    "firebase",
+    # Tools
+    "git",
+    "nginx",
+    "apache",
+    "linux",
+    "aws",
+    "gcp",
+    "azure",
+    "vercel",
+    "netlify",
+    # Data/ML
+    "pandas",
+    "numpy",
+    "tensorflow",
+    "pytorch",
+    "scikit-learn",
+    "jupyter",
+    "spark",
+    "kafka",
+    "airflow",
+    "dbt",
+]
+
+TECHNOLOGIES_2 = [
+    "docker",
+    "kubernetes",
+    "postgres",
+    "mysql",
+    "redis",
+    "mongodb",
+    "aws",
+    "gcp",
+    "react",
+    "vue",
+    "angular",
+    "python",
+    "javascript",
+    "typescript",
+    "github-actions",
+    "gitlab-ci",
+    "jenkins",
+    "terraform",
+    "ansible",
+]
+
+CONCEPTS = [
+    "authentication",
+    "caching",
+    "logging",
+    "testing",
+    "deployment",
+    "API",
+    "database",
+    "security",
+    "monitoring",
+    "performance",
+    "scalability",
+    "reliability",
+    "observability",
+    "microservices",
+    "serverless",
+    "virtualization",
+    "containerization",
+    "orchestration",
+    "CI/CD",
+    "version control",
+    "dependency injection",
+    "event sourcing",
+    "CQRS",
+    "load balancing",
+    "rate limiting",
+    "circuit breaker",
+    "retry logic",
+    "idempotency",
+]
+
+USE_CASES = [
+    "production",
+    "development",
+    "CI/CD",
+    "local",
+    "cloud",
+    "staging",
+    "testing",
+    "microservices",
+    "serverless",
+    "hybrid",
+    "multi-tenant",
+    "high-availability",
+    "real-time",
+    "batch processing",
+    "stream processing",
+    "data pipeline",
+]
+
+ERROR_TYPES = [
+    "connection",
+    "timeout",
+    "permission",
+    "memory",
+    "syntax",
+    "runtime",
+    "configuration",
+    "dependency",
+    "network",
+    "authentication",
+    "authorization",
+    "validation",
+    "concurrency",
+    "deadlock",
+    "resource",
+    "quota",
+]
+
+TOPICS = [
+    "productivity",
+    "workflow",
+    "architecture",
+    "design",
+    "performance",
+    "security",
+    "scalability",
+    "reliability",
+    "observability",
+    "maintainability",
+    "testing",
+    "documentation",
+    "refactoring",
+    "debugging",
+    "optimization",
+    "best practices",
+    "patterns",
+    "anti-patterns",
+    "trade-offs",
+    "decision making",
+]
+
+KEYWORDS = [
+    "auth",
+    "config",
+    "setup",
+    "api",
+    "cache",
+    "log",
+    "test",
+    "debug",
+    "env",
+    "vars",
+    "secrets",
+    "tokens",
+    "headers",
+    "params",
+    "query",
+    "body",
+    "route",
+    "middleware",
+    "handler",
+    "controller",
+    "model",
+    "view",
+    "template",
+    "migration",
+    "seed",
+    "fixture",
+    "mock",
+    "stub",
+    "spy",
+    "fake",
+    "build",
+    "bundle",
+    "compile",
+    "transpile",
+    "minify",
+    "optimize",
+    "deploy",
+    "release",
+    "rollback",
+    "promote",
+    "freeze",
+    "thaw",
+    "pull",
+    "push",
+    "commit",
+    "merge",
+    "rebase",
+    "cherry-pick",
+    "stash",
+    "up",
+    "down",
+    "scale",
+    "restart",
+    "reload",
+    "refresh",
+    "flush",
+    "cron",
+    "queue",
+    "job",
+    "worker",
+    "scheduler",
+    "trigger",
+    "webhook",
+    "alert",
+    "metric",
+    "trace",
+    "span",
+    "event",
+    "incident",
+    "oncall",
+]
+
+MODIFIERS = [
+    "best",
+    "fast",
+    "simple",
+    "advanced",
+    "secure",
+    "quick",
+    "easy",
+    "proper",
+    "correct",
+    "safe",
+    "efficient",
+    "reliable",
+    "robust",
+    "latest",
+    "recent",
+    "new",
+    "old",
+    "legacy",
+    "modern",
+    "local",
+    "remote",
+    "global",
+    "shared",
+    "private",
+    "public",
+]
+
+NAMED_ENTITIES = [
+    "React",
+    "Vue",
+    "Angular",
+    "Docker",
+    "Kubernetes",
+    "AWS",
+    "GCP",
+    "GitHub",
+    "GitLab",
+    "Vercel",
+    "Netlify",
+    "Supabase",
+    "Firebase",
+    "Stripe",
+    "Twilio",
+    "SendGrid",
+    "Datadog",
+    "PagerDuty",
+    "Sentry",
+    "Terraform",
+    "Ansible",
+    "Jenkins",
+    "CircleCI",
+    "TravisCI",
+]
+
+PERSONS = [
+    "Kent Beck",
+    "Martin Fowler",
+    "Robert Martin",
+    "Dave Thomas",
+    "Guido van Rossum",
+    "Brendan Eich",
+    "Ryan Dahl",
+    "Anders Hejlsberg",
+    "Linus Torvalds",
+    "DHH",
+    "Yukihiro Matsumoto",
+    "Rich Hickey",
+]
+
+ORGANIZATIONS = [
+    "Google",
+    "Microsoft",
+    "Amazon",
+    "Meta",
+    "Apple",
+    "Netflix",
+    "Spotify",
+    "Stripe",
+    "Shopify",
+    "Airbnb",
+    "Uber",
+    "Lyft",
+    "Slack",
+    "Discord",
+]
+
+PRODUCTS = [
+    "VS Code",
+    "IntelliJ",
+    "PyCharm",
+    "WebStorm",
+    "DataGrip",
+    "Postman",
+    "Insomnia",
+    "TablePlus",
+    "Docker Desktop",
+    "Lens",
+    "Figma",
+    "Sketch",
+    "Notion",
+    "Linear",
+    "Jira",
+    "Trello",
+]
 
 SYSTEM_PROMPT = """You are a search query optimization expert for a markdown document search system called QMD.
 
@@ -90,24 +521,72 @@ Query: {query}
 Respond with ONLY the lex/vec/hyde lines, nothing else."""
 
 
+# Category weights - BALANCED approach
+# Tech at 15% (reasonable for QMD's technical document use case)
+CATEGORY_WEIGHTS = {
+    "technical": 0.15,  # 15% - Technical documentation
+    "personal": 0.10,  # 10% - Personal notes, journals
+    "research": 0.10,  # 10% - Research and learning
+    "short": 0.15,  # 15% - Short keyword queries
+    "temporal": 0.10,  # 10% - Temporal/recency queries (2025/2026)
+    "entities": 0.05,  # 5% - Named entity queries
+    "health": 0.10,  # 10% - Health & wellness
+    "finance": 0.10,  # 10% - Finance & business
+    "lifestyle": 0.10,  # 10% - Home, food, hobbies, travel
+    "education": 0.05,  # 5% - Education & arts
+}
+
+
 def generate_random_query() -> str:
-    """Generate a random query from templates."""
-    template = random.choice(QUERY_TEMPLATES)
+    """Generate a random query from templates with category-weighted sampling."""
+    # Select category based on weights
+    categories = list(CATEGORY_WEIGHTS.keys())
+    weights = list(CATEGORY_WEIGHTS.values())
+    selected_category = random.choices(categories, weights=weights, k=1)[0]
+
+    # Select template from that category
+    template_idx = random.choice(TEMPLATE_CATEGORIES[selected_category])
+    template = QUERY_TEMPLATES[template_idx]
 
+    # Build replacements based on template type
     replacements = {
         "{action}": random.choice(ACTIONS),
         "{technology}": random.choice(TECHNOLOGIES),
+        "{technology2}": random.choice(TECHNOLOGIES_2),
         "{concept}": random.choice(CONCEPTS),
         "{use_case}": random.choice(USE_CASES),
         "{error_type}": random.choice(ERROR_TYPES),
         "{topic}": random.choice(TOPICS),
-        "{project}": random.choice(["website", "app", "CLI tool", "API", "library"]),
-        "{date}": random.choice(["2024-01", "2024-06", "yesterday", "today"]),
-        "{thing1}": random.choice(CONCEPTS[:4]),
-        "{thing2}": random.choice(CONCEPTS[4:]),
+        "{project}": random.choice(
+            ["website", "app", "CLI tool", "API", "library", "service", "platform"]
+        ),
+        "{date}": random.choice(
+            # Emphasize 2025/2026 for recency queries (current era)
+            [
+                "2026",
+                "2026",
+                "2025",
+                "2025",
+                "January 2026",
+                "February 2026",
+                "March 2026",
+                "last month",
+                "this week",
+                "yesterday",
+                "today",
+                "recently",
+                "latest",
+            ]
+        ),
+        "{thing1}": random.choice(CONCEPTS[:10]),
+        "{thing2}": random.choice(CONCEPTS[10:] if len(CONCEPTS) > 10 else CONCEPTS),
         "{skill}": random.choice(TECHNOLOGIES),
         "{keyword}": random.choice(KEYWORDS),
         "{modifier}": random.choice(MODIFIERS),
+        "{named_entity}": random.choice(NAMED_ENTITIES),
+        "{person}": random.choice(PERSONS),
+        "{organization}": random.choice(ORGANIZATIONS),
+        "{product}": random.choice(PRODUCTS),
     }
 
     query = template
@@ -126,7 +605,7 @@ def generate_expansion(client: anthropic.Anthropic, query: str) -> str | None:
             system=SYSTEM_PROMPT,
             messages=[
                 {"role": "user", "content": USER_PROMPT_TEMPLATE.format(query=query)}
-            ]
+            ],
         )
         return response.content[0].text.strip()
     except Exception as e:
@@ -160,10 +639,21 @@ def validate_output(output: str) -> bool:
 
 
 def main():
-    parser = argparse.ArgumentParser(description="Generate QMD query expansion training data")
-    parser.add_argument("--count", type=int, default=100, help="Number of examples to generate")
-    parser.add_argument("--output", type=str, default="data/qmd_expansion.jsonl", help="Output file path")
-    parser.add_argument("--queries", type=str, help="Optional file with custom queries (one per line)")
+    parser = argparse.ArgumentParser(
+        description="Generate QMD query expansion training data"
+    )
+    parser.add_argument(
+        "--count", type=int, default=100, help="Number of examples to generate"
+    )
+    parser.add_argument(
+        "--output",
+        type=str,
+        default="data/qmd_expansion.jsonl",
+        help="Output file path",
+    )
+    parser.add_argument(
+        "--queries", type=str, help="Optional file with custom queries (one per line)"
+    )
     args = parser.parse_args()
 
     api_key = os.environ.get("ANTHROPIC_API_KEY")

+ 76 - 34
finetune/eval.py

@@ -74,7 +74,9 @@ def load_model(model_path: str, base_model: str = None, sft_model: str = None):
 
     print(f"Loading base model {base_model}...", file=sys.stderr)
     model = AutoModelForCausalLM.from_pretrained(
-        base_model, torch_dtype=torch.bfloat16, device_map="auto",
+        base_model,
+        torch_dtype=torch.float32,
+        device_map="auto",
     )
 
     if sft_model:
@@ -94,16 +96,21 @@ def generate_expansion(model, tokenizer, query: str, max_new_tokens: int = 200)
     """Generate a query expansion using Qwen3 chat template with /no_think."""
     import torch
 
-    messages = [{"role": "user", "content": f"/no_think Expand this search query: {query}"}]
-    prompt = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
+    messages = [
+        {"role": "user", "content": f"/no_think Expand this search query: {query}"}
+    ]
+    prompt = tokenizer.apply_chat_template(
+        messages, tokenize=False, add_generation_prompt=True
+    )
     inputs = tokenizer(prompt, return_tensors="pt").to(model.device)
 
     with torch.no_grad():
         outputs = model.generate(
             **inputs,
             max_new_tokens=max_new_tokens,
-            temperature=0.7,
+            temperature=0.1,
             do_sample=True,
+            top_p=0.9,
             pad_token_id=tokenizer.pad_token_id,
             eos_token_id=tokenizer.eos_token_id,
         )
@@ -116,27 +123,32 @@ def generate_expansion(model, tokenizer, query: str, max_new_tokens: int = 200)
     elif "assistant\n" in full_output:
         expansion = full_output.split("assistant\n")[-1].strip()
     else:
-        expansion = full_output[len(prompt):].strip()
+        expansion = full_output[len(prompt) :].strip()
 
     # Strip leftover <think> blocks
     import re
+
     if "<think>" in expansion:
-        expansion = re.sub(r'<think>.*?</think>', '', expansion, flags=re.DOTALL).strip()
+        expansion = re.sub(
+            r"<think>.*?</think>", "", expansion, flags=re.DOTALL
+        ).strip()
 
     return expansion
 
 
 def print_result(query: str, expansion: str, scores: dict, verbose: bool = False):
     """Print a single scored result."""
-    print(f"\n{'='*60}")
+    print(f"\n{'=' * 60}")
     print(f"Query: {query}")
-    print(f"{'~'*60}")
+    print(f"{'~' * 60}")
     print(expansion)
-    print(f"{'~'*60}")
+    print(f"{'~' * 60}")
     print(f"Score: {scores['percentage']:.0f}% ({scores['rating']})")
-    print(f"  Format: {scores['format']}/30  Diversity: {scores['diversity']}/30  "
-          f"Hyde: {scores['hyde']}/20  Quality: {scores['quality']}/20  "
-          f"Entity: {scores['entity']}/20  Think: {scores['think_bonus']}/20")
+    print(
+        f"  Format: {scores['format']}/30  Diversity: {scores['diversity']}/30  "
+        f"Hyde: {scores['hyde']}/20  Quality: {scores['quality']}/20  "
+        f"Entity: {scores['entity']}/20  Think: {scores['think_bonus']}/20"
+    )
     if verbose and scores["deductions"]:
         print(f"  Issues: {', '.join(scores['deductions'][:5])}")
     if verbose and scores["entities_detected"]:
@@ -145,11 +157,13 @@ def print_result(query: str, expansion: str, scores: dict, verbose: bool = False
 
 def print_summary(scored_results: list):
     """Print aggregate summary."""
-    print(f"\n{'='*60}")
+    print(f"\n{'=' * 60}")
     print("SUMMARY")
-    print(f"{'='*60}")
+    print(f"{'=' * 60}")
 
-    avg_score = sum(r["scores"]["percentage"] for r in scored_results) / len(scored_results)
+    avg_score = sum(r["scores"]["percentage"] for r in scored_results) / len(
+        scored_results
+    )
     ratings = Counter(r["scores"]["rating"] for r in scored_results)
 
     print(f"  Total queries: {len(scored_results)}")
@@ -176,13 +190,19 @@ def cmd_generate_and_score(args):
         if not args.summary_only:
             print_result(query, expansion, scores, args.verbose)
 
-        scored_results.append({
-            "query": query,
-            "expansion": expansion,
-            "scores": {k: v for k, v in scores.items() if k not in ("parsed", "deductions", "entities_detected")},
-            "deductions": scores["deductions"],
-            "entities_detected": scores["entities_detected"],
-        })
+        scored_results.append(
+            {
+                "query": query,
+                "expansion": expansion,
+                "scores": {
+                    k: v
+                    for k, v in scores.items()
+                    if k not in ("parsed", "deductions", "entities_detected")
+                },
+                "deductions": scores["deductions"],
+                "entities_detected": scores["entities_detected"],
+            }
+        )
 
     print_summary(scored_results)
 
@@ -191,7 +211,11 @@ def cmd_generate_and_score(args):
             "metadata": {"model": args.model, "timestamp": datetime.now().isoformat()},
             "summary": {
                 "total": len(scored_results),
-                "average_score": round(sum(r["scores"]["percentage"] for r in scored_results) / len(scored_results), 1),
+                "average_score": round(
+                    sum(r["scores"]["percentage"] for r in scored_results)
+                    / len(scored_results),
+                    1,
+                ),
             },
             "results": scored_results,
         }
@@ -218,13 +242,19 @@ def cmd_score_only(args):
         if not args.summary_only:
             print_result(query, expansion, scores, args.verbose)
 
-        scored_results.append({
-            "query": query,
-            "expansion": expansion,
-            "scores": {k: v for k, v in scores.items() if k not in ("parsed", "deductions", "entities_detected")},
-            "deductions": scores["deductions"],
-            "entities_detected": scores["entities_detected"],
-        })
+        scored_results.append(
+            {
+                "query": query,
+                "expansion": expansion,
+                "scores": {
+                    k: v
+                    for k, v in scores.items()
+                    if k not in ("parsed", "deductions", "entities_detected")
+                },
+                "deductions": scores["deductions"],
+                "entities_detected": scores["entities_detected"],
+            }
+        )
 
     print_summary(scored_results)
 
@@ -244,13 +274,25 @@ Examples:
 
     # Model evaluation mode
     parser.add_argument("--model", help="Model path (HF Hub or local)")
-    parser.add_argument("--base-model", default=None, help="Base model for tokenizer (default: Qwen/Qwen3-1.7B)")
-    parser.add_argument("--sft-model", default=None, help="SFT adapter to merge first (for GRPO models)")
+    parser.add_argument(
+        "--base-model",
+        default=None,
+        help="Base model for tokenizer (default: Qwen/Qwen3-1.7B)",
+    )
+    parser.add_argument(
+        "--sft-model", default=None, help="SFT adapter to merge first (for GRPO models)"
+    )
     parser.add_argument("--queries", default="evals/queries.txt", help="Queries file")
-    parser.add_argument("--max-tokens", type=int, default=200, help="Max tokens per generation")
+    parser.add_argument(
+        "--max-tokens", type=int, default=200, help="Max tokens per generation"
+    )
 
     # Score-only mode
-    parser.add_argument("--score-only", metavar="JSONL", help="Score existing JSONL file instead of generating")
+    parser.add_argument(
+        "--score-only",
+        metavar="JSONL",
+        help="Score existing JSONL file instead of generating",
+    )
 
     # Output options
     parser.add_argument("--output", "-o", help="Save detailed scores to JSON file")

+ 214 - 0
finetune/generate_only_variants.py

@@ -0,0 +1,214 @@
+# /// script
+# requires-python = ">=3.10"
+# dependencies = []
+# ///
+"""
+Generate 'only:' variant training data from high-quality expansions.
+
+Takes existing training data and creates derivative examples where the query
+ends with 'only: lex', 'only: hyde', or 'only: vec', and the output contains
+ONLY that component type.
+
+Usage:
+    uv run generate_only_variants.py data/qmd_expansion_handcrafted.jsonl
+    uv run generate_only_variants.py data/qmd_expansion_handcrafted.jsonl -o data/qmd_only_variants.jsonl
+    uv run generate_only_variants.py data/*.jsonl --combine  # combine all inputs
+"""
+
+import argparse
+import json
+import sys
+from pathlib import Path
+
+
+def parse_expansion(text: str) -> dict:
+    """Parse a multi-line expansion into {lex, vec, hyde} lists."""
+    result = {"lex": [], "vec": [], "hyde": []}
+    for line in text.strip().split("\n"):
+        line = line.strip()
+        if not line:
+            continue
+        if line.startswith("lex:"):
+            result["lex"].append(line[4:].strip())
+        elif line.startswith("vec:"):
+            result["vec"].append(line[4:].strip())
+        elif line.startswith("hyde:"):
+            result["hyde"].append(line[5:].strip())
+    return result
+
+
+# Templated patterns to filter out from hyde (low quality)
+TEMPLATED_PATTERNS = [
+    "This comprehensive guide covers",
+    "This comprehensive guide to",
+    "requires practice and patience",
+    "This resource provides",
+    "Follow the steps carefully",
+    "covers all the essential information",
+    "includes practical examples, best practices",
+]
+
+
+def is_templated_hyde(hyde_text: str) -> bool:
+    """Check if a hyde output is a low-quality templated response."""
+    return any(pattern in hyde_text for pattern in TEMPLATED_PATTERNS)
+
+
+def format_output(parsed: dict, only_type: str) -> str | None:
+    """Format output for a single type. Returns None if type is empty or low quality."""
+    items = parsed.get(only_type, [])
+    if not items:
+        return None
+    
+    # Filter out templated hyde outputs
+    if only_type == "hyde":
+        filtered = [item for item in items if not is_templated_hyde(item)]
+        if not filtered:
+            return None
+        items = filtered
+    
+    lines = []
+    for item in items:
+        lines.append(f"{only_type}: {item}")
+    return "\n".join(lines)
+
+
+def generate_only_variants(input_query: str, output: str) -> list[dict]:
+    """Generate all valid 'only:' variants from a single example."""
+    variants = []
+    parsed = parse_expansion(output)
+    
+    for only_type in ["lex", "vec", "hyde"]:
+        formatted = format_output(parsed, only_type)
+        if formatted:
+            # Add the '/only:' suffix to the query (slash prefix)
+            new_query = f"{input_query} /only:{only_type}"
+            variants.append({
+                "input": new_query,
+                "output": formatted,
+                "_source_type": only_type,
+                "_source_query": input_query,
+            })
+    
+    return variants
+
+
+def process_file(input_path: Path) -> list[dict]:
+    """Process a single JSONL file and return all 'only:' variants."""
+    variants = []
+    seen_queries = set()
+    
+    with open(input_path) as f:
+        for line_num, line in enumerate(f, 1):
+            line = line.strip()
+            if not line:
+                continue
+            
+            try:
+                data = json.loads(line)
+            except json.JSONDecodeError as e:
+                print(f"  Warning: Skipping line {line_num} (invalid JSON): {e}", file=sys.stderr)
+                continue
+            
+            # Skip metadata lines
+            if data.get("_meta"):
+                continue
+            
+            input_query = data.get("input", "")
+            output = data.get("output", "")
+            
+            if not input_query or not output:
+                continue
+            
+            # Skip if query already has '/only:' suffix
+            if " /only:" in input_query.lower():
+                continue
+            
+            # Skip duplicates
+            if input_query in seen_queries:
+                continue
+            seen_queries.add(input_query)
+            
+            # Generate variants
+            for variant in generate_only_variants(input_query, output):
+                variants.append(variant)
+    
+    return variants
+
+
+def main():
+    parser = argparse.ArgumentParser(
+        description="Generate 'only:' variant training data from high-quality expansions",
+        formatter_class=argparse.RawDescriptionHelpFormatter,
+    )
+    parser.add_argument(
+        "input_files",
+        nargs="+",
+        help="Input JSONL files with training data",
+    )
+    parser.add_argument(
+        "-o", "--output",
+        default="data/qmd_only_variants.jsonl",
+        help="Output JSONL file (default: data/qmd_only_variants.jsonl)",
+    )
+    parser.add_argument(
+        "--combine",
+        action="store_true",
+        help="Combine all input files into one output",
+    )
+    parser.add_argument(
+        "--stats",
+        action="store_true",
+        help="Print statistics about generated variants",
+    )
+    
+    args = parser.parse_args()
+    
+    all_variants = []
+    stats = {"lex": 0, "vec": 0, "hyde": 0}
+    
+    for input_file in args.input_files:
+        input_path = Path(input_file)
+        if not input_path.exists():
+            print(f"Warning: {input_file} not found, skipping", file=sys.stderr)
+            continue
+        
+        print(f"Processing {input_path.name}...", file=sys.stderr)
+        variants = process_file(input_path)
+        
+        for v in variants:
+            stats[v["_source_type"]] += 1
+        
+        if args.combine:
+            all_variants.extend(variants)
+        else:
+            # Write to separate output files per input
+            output_path = input_path.parent / f"{input_path.stem}_only.jsonl"
+            with open(output_path, "w") as f:
+                for variant in variants:
+                    # Remove internal fields before writing
+                    clean = {"input": variant["input"], "output": variant["output"]}
+                    f.write(json.dumps(clean) + "\n")
+            print(f"  -> {len(variants)} variants written to {output_path}", file=sys.stderr)
+    
+    if args.combine and all_variants:
+        output_path = Path(args.output)
+        output_path.parent.mkdir(parents=True, exist_ok=True)
+        
+        with open(output_path, "w") as f:
+            for variant in all_variants:
+                clean = {"input": variant["input"], "output": variant["output"]}
+                f.write(json.dumps(clean) + "\n")
+        
+        print(f"\nTotal: {len(all_variants)} variants written to {output_path}", file=sys.stderr)
+    
+    if args.stats or args.combine:
+        print(f"\nStats:", file=sys.stderr)
+        print(f"  lex:  {stats['lex']}", file=sys.stderr)
+        print(f"  vec:  {stats['vec']}", file=sys.stderr)
+        print(f"  hyde: {stats['hyde']}", file=sys.stderr)
+        print(f"  total: {sum(stats.values())}", file=sys.stderr)
+
+
+if __name__ == "__main__":
+    main()

+ 107 - 0
finetune/prepare_v4_dataset.py

@@ -0,0 +1,107 @@
+# /// script
+# requires-python = ">=3.10"
+# dependencies = []
+# ///
+"""Prepare v4 dataset: high-quality expansions + /only: variants."""
+
+import json
+import random
+from pathlib import Path
+
+def to_chat_format(query: str, output: str) -> dict:
+    """Convert input/output to chat format with /no_think."""
+    # For /only: queries, keep the suffix in the prompt
+    prompt = f"/no_think Expand this search query: {query}"
+    
+    text = f"<|im_start|>user\n{prompt}<|im_end|>\n<|im_start|>assistant\n<think>\n\n</think>\n\n{output}<|im_end|>\n"
+    
+    messages = [
+        {"role": "user", "content": prompt},
+        {"role": "assistant", "content": output}
+    ]
+    
+    return {"text": text, "messages": messages}
+
+
+def load_jsonl(path: Path) -> list[dict]:
+    """Load JSONL file."""
+    data = []
+    with open(path) as f:
+        for line in f:
+            line = line.strip()
+            if line:
+                data.append(json.loads(line))
+    return data
+
+
+def main():
+    data_dir = Path("data")
+    
+    # High-quality sources
+    sources = [
+        ("qmd_expansion_v2.jsonl", "v2"),
+        ("qmd_expansion_handcrafted.jsonl", "handcrafted"),
+        ("qmd_only_variants.jsonl", "only"),
+    ]
+    
+    all_examples = []
+    stats = {}
+    
+    for filename, label in sources:
+        path = data_dir / filename
+        if not path.exists():
+            print(f"  Skipping {filename} (not found)")
+            continue
+        
+        raw = load_jsonl(path)
+        converted = []
+        
+        for item in raw:
+            query = item.get("input", "")
+            output = item.get("output", "")
+            if query and output:
+                converted.append(to_chat_format(query, output))
+        
+        all_examples.extend(converted)
+        stats[label] = len(converted)
+        print(f"  {label}: {len(converted)} examples")
+    
+    # Shuffle
+    random.seed(42)
+    random.shuffle(all_examples)
+    
+    # Split 90/10
+    split_idx = int(len(all_examples) * 0.9)
+    train = all_examples[:split_idx]
+    val = all_examples[split_idx:]
+    
+    # Write output
+    out_dir = data_dir / "train_v4"
+    out_dir.mkdir(exist_ok=True)
+    
+    with open(out_dir / "train.jsonl", "w") as f:
+        for ex in train:
+            f.write(json.dumps(ex) + "\n")
+    
+    with open(out_dir / "val.jsonl", "w") as f:
+        for ex in val:
+            f.write(json.dumps(ex) + "\n")
+    
+    # Dataset info
+    info = {
+        "dataset_name": "qmd-query-expansion-v4",
+        "train_samples": len(train),
+        "val_samples": len(val),
+        "sources": stats,
+    }
+    with open(out_dir / "dataset_info.json", "w") as f:
+        json.dump(info, f, indent=2)
+    
+    print(f"\n✓ Dataset prepared in {out_dir}/")
+    print(f"  Train: {len(train)}")
+    print(f"  Val: {len(val)}")
+    print(f"  Total: {len(all_examples)}")
+
+
+if __name__ == "__main__":
+    main()

+ 169 - 1
finetune/reward.py

@@ -26,6 +26,10 @@ from collections import Counter
 # Constants
 # =============================================================================
 
+# "only:" mode patterns - when query ends with these, expect only that type
+# Format: "query /only:lex" (slash prefix, no space after colon)
+ONLY_MODE_PATTERN = re.compile(r'\s+/only:(lex|vec|hyde)\s*$', re.IGNORECASE)
+
 STOPWORDS = frozenset({
     'the', 'a', 'an', 'is', 'are', 'to', 'for', 'of', 'in',
     'and', 'or', 'it', 'this', 'that', 'be', 'with', 'as', 'on', 'by',
@@ -72,6 +76,19 @@ def parse_expansion(text: str) -> dict:
     return result
 
 
+def detect_only_mode(query: str) -> tuple[str | None, str]:
+    """Detect if query ends with 'only: lex/vec/hyde'.
+    
+    Returns (only_type, base_query) where only_type is None for normal queries.
+    """
+    match = ONLY_MODE_PATTERN.search(query)
+    if match:
+        only_type = match.group(1).lower()
+        base_query = query[:match.start()].strip()
+        return only_type, base_query
+    return None, query
+
+
 def clean_model_output(text: str) -> tuple[str, bool]:
     """Strip chat template artifacts from model output.
 
@@ -195,11 +212,149 @@ def word_repetition_penalty(text: str) -> int:
 # Scoring
 # =============================================================================
 
+def _score_only_mode(query: str, base_query: str, text: str, used_thinking: bool, only_type: str) -> dict:
+    """Score an 'only:' mode expansion. Expects ONLY the requested type."""
+    parsed = parse_expansion(text)
+    deductions = []
+    
+    # Expected type must be present
+    expected_items = parsed.get(only_type, [])
+    if not expected_items:
+        return {
+            "format": 0, "diversity": 0, "hyde": 0, "quality": 0, "entity": 0,
+            "think_bonus": 0, "total": 0, "max_possible": 100,
+            "percentage": 0.0, "rating": "Failed",
+            "deductions": [f"missing expected {only_type}: output"],
+            "parsed": parsed,
+            "entities_detected": [],
+            "only_mode": only_type,
+        }
+    
+    # Penalize presence of OTHER types
+    other_types = {"lex", "vec", "hyde"} - {only_type}
+    unwanted_count = sum(len(parsed.get(t, [])) for t in other_types)
+    if unwanted_count > 0:
+        deductions.append(f"contains unwanted types (expected only {only_type})")
+    
+    # --- Format (0-30) ---
+    format_score = 30 if unwanted_count == 0 else max(0, 30 - unwanted_count * 10)
+    
+    # --- Diversity (0-30) ---
+    diversity_score = 0
+    if len(expected_items) >= 2:
+        diversity_score += 15
+        # Check for diversity among items
+        div_score = 15
+        for i, a in enumerate(expected_items):
+            for b in expected_items[i+1:]:
+                if not is_diverse(a, b, 2):
+                    div_score -= 5
+                    deductions.append(f"{only_type} duplicate: {a[:20]}...")
+        diversity_score += max(0, div_score)
+    elif len(expected_items) == 1:
+        diversity_score = 15  # One item is fine for single-type output
+    
+    # Check for echoes
+    for exp in expected_items:
+        if echoes_query(exp, base_query):
+            diversity_score -= 5
+            deductions.append(f"echoes query: {exp[:20]}...")
+    diversity_score = max(0, diversity_score)
+    
+    # --- Type-specific quality (0-20) ---
+    quality_score = 10  # base
+    entities = extract_named_entities(base_query)
+    
+    if only_type == "lex":
+        # Lex should be short keyword phrases with key terms
+        with_terms = sum(1 for l in expected_items if lex_preserves_key_terms(l, base_query))
+        if with_terms == len(expected_items):
+            quality_score += 5
+        # Check for generic phrases
+        generic = sum(1 for l in expected_items if lex_is_generic(l))
+        if generic == 0:
+            quality_score += 5
+        else:
+            deductions.append(f"{generic} generic lex phrases")
+    
+    elif only_type == "vec":
+        # Vec should be natural language sentences
+        natural = sum(1 for v in expected_items if " " in v and len(v) > 15)
+        if natural == len(expected_items):
+            quality_score += 10
+        else:
+            quality_score += 5
+            deductions.append("vec not all natural language")
+    
+    elif only_type == "hyde":
+        # Hyde should be a document snippet (50-200 chars)
+        hyde_text = expected_items[0]
+        hyde_len = len(hyde_text)
+        if 50 <= hyde_len <= 200:
+            quality_score += 10
+        elif 30 <= hyde_len <= 300:
+            quality_score += 5
+            deductions.append(f"hyde length {hyde_len} (ideal: 50-200)")
+        else:
+            deductions.append(f"hyde length {hyde_len} out of range")
+    
+    # --- Entity preservation (0-20) ---
+    entity_score = 10  # base
+    if entities:
+        with_entities = sum(1 for item in expected_items if lex_preserves_entities(item, entities))
+        if with_entities == len(expected_items):
+            entity_score += 10
+        elif with_entities > 0:
+            entity_score += 5
+        else:
+            entity_score = 0
+            deductions.append(f"missing entities: {entities}")
+    
+    # --- Think bonus (0-20) ---
+    think_bonus = 0 if used_thinking else 20
+    
+    # --- Total ---
+    total = format_score + diversity_score + quality_score + entity_score + think_bonus
+    max_possible = 120
+    percentage = max(0.0, min(100.0, total / max_possible * 100))
+    
+    if percentage >= 80:
+        rating = "Excellent"
+    elif percentage >= 60:
+        rating = "Good"
+    elif percentage >= 40:
+        rating = "Acceptable"
+    elif percentage >= 20:
+        rating = "Poor"
+    else:
+        rating = "Failed"
+    
+    return {
+        "format": format_score,
+        "diversity": diversity_score,
+        "hyde": 0,  # not used in only mode (quality covers it)
+        "quality": quality_score,
+        "entity": entity_score,
+        "think_bonus": think_bonus,
+        "total": total,
+        "max_possible": max_possible,
+        "percentage": round(percentage, 1),
+        "rating": rating,
+        "deductions": deductions,
+        "parsed": parsed,
+        "entities_detected": list(entities) if entities else [],
+        "only_mode": only_type,
+    }
+
+
 def score_expansion_detailed(query: str, expansion: str) -> dict:
     """Score an expansion with full breakdown. Returns dict with all dimensions."""
     text, used_thinking = clean_model_output(expansion.strip())
     deductions = []
 
+    # Detect "only:" mode
+    only_type, base_query = detect_only_mode(query)
+
     def _fail(reason):
         return {
             "format": 0, "diversity": 0, "hyde": 0, "quality": 0, "entity": 0,
@@ -208,6 +363,7 @@ def score_expansion_detailed(query: str, expansion: str) -> dict:
             "deductions": [reason],
             "parsed": parse_expansion(expansion),
             "entities_detected": [],
+            "only_mode": only_type,
         }
 
     # Hard fail: remaining chat template tokens
@@ -220,6 +376,10 @@ def score_expansion_detailed(query: str, expansion: str) -> dict:
         if line and not line.startswith(("lex:", "vec:", "hyde:")):
             return _fail(f"INVALID LINE: {line[:50]}")
 
+    # --- Handle "only:" mode separately ---
+    if only_type:
+        return _score_only_mode(query, base_query, text, used_thinking, only_type)
+
     parsed = parse_expansion(text)
 
     # --- Format (0-30) ---
@@ -364,6 +524,7 @@ def score_expansion_detailed(query: str, expansion: str) -> dict:
         "deductions": deductions,
         "parsed": parsed,
         "entities_detected": list(entities) if entities else [],
+        "only_mode": None,
     }
 
 
@@ -417,12 +578,19 @@ if __name__ == "__main__":
         ("how to use React hooks", "lex: React hooks tutorial\nlex: useEffect useState\nvec: how to use React hooks in functional components"),
         ("auth", "<think>Let me think...</think>\nlex: auth"),
         ("auth", "lex: auth\nThis is some explanation\nvec: more"),
+        # "/only:" mode tests (slash prefix)
+        ("auth /only:lex", "lex: auth setup\nlex: authentication config\nlex: login credentials"),
+        ("auth /only:lex", "lex: auth setup\nvec: how to configure authentication"),  # should fail - has vec
+        ("React hooks /only:vec", "vec: how to use React hooks in functional components\nvec: useState and useEffect patterns in React"),
+        ("PostgreSQL indexing /only:hyde", "hyde: PostgreSQL uses B-tree indexes by default. Create indexes with CREATE INDEX idx_name ON table(column). EXPLAIN ANALYZE shows whether queries use indexes efficiently."),
     ]
 
     for query, expansion in tests:
         score = score_expansion(query, expansion)
         detail = score_expansion_detailed(query, expansion)
-        print(f"\n  Query: '{query}'")
+        only_mode = detail.get("only_mode")
+        mode_str = f" [only:{only_mode}]" if only_mode else ""
+        print(f"\n  Query: '{query}'{mode_str}")
         print(f"  Score: {score:.2f} ({detail['rating']})")
         if detail["deductions"]:
             print(f"  Issues: {', '.join(detail['deductions'][:3])}")

+ 31 - 14
finetune/train.py

@@ -1,6 +1,7 @@
 # /// script
 # requires-python = ">=3.10"
 # dependencies = [
+#     "torch",
 #     "trl>=0.12.0",
 #     "peft>=0.7.0",
 #     "transformers>=4.45.0",
@@ -34,7 +35,6 @@ import yaml
 
 def cmd_sft(args):
     """Run supervised fine-tuning."""
-    import trackio
     from datasets import load_dataset
     from peft import LoraConfig
     from trl import SFTTrainer, SFTConfig
@@ -47,8 +47,20 @@ def cmd_sft(args):
         print(yaml.dump(cfg, default_flow_style=False))
         return
 
-    print(f"Loading dataset: {cfg['dataset']['name']}...")
-    dataset = load_dataset(cfg["dataset"]["name"], split=cfg["dataset"]["split"])
+    dataset_name = cfg["dataset"]["name"]
+    print(f"Loading dataset: {dataset_name}...")
+
+    # Support local JSONL files
+    if dataset_name.startswith("data/") or dataset_name.endswith(".jsonl"):
+        from pathlib import Path
+        data_path = Path(dataset_name)
+        if data_path.is_dir():
+            train_file = data_path / "train.jsonl"
+            dataset = load_dataset("json", data_files=str(train_file), split="train")
+        else:
+            dataset = load_dataset("json", data_files=dataset_name, split="train")
+    else:
+        dataset = load_dataset(dataset_name, split=cfg["dataset"]["split"])
     print(f"Dataset loaded: {len(dataset)} examples")
 
     split = dataset.train_test_split(test_size=cfg["dataset"]["eval_split"], seed=42)
@@ -56,11 +68,15 @@ def cmd_sft(args):
     eval_dataset = split["test"]
     print(f"  Train: {len(train_dataset)}, Eval: {len(eval_dataset)}")
 
+    # Check if output looks like a HF Hub path (contains /)
+    output_name = cfg["model"]["output"]
+    push_to_hub = "/" in output_name
+
     config = SFTConfig(
-        output_dir=cfg["model"]["output"].split("/")[-1],
-        push_to_hub=True,
-        hub_model_id=cfg["model"]["output"],
-        hub_strategy="every_save",
+        output_dir=output_name.split("/")[-1] if push_to_hub else output_name,
+        push_to_hub=push_to_hub,
+        hub_model_id=output_name if push_to_hub else None,
+        hub_strategy="every_save" if push_to_hub else "end",
 
         num_train_epochs=cfg["training"]["epochs"],
         per_device_train_batch_size=cfg["training"]["batch_size"],
@@ -78,9 +94,7 @@ def cmd_sft(args):
         warmup_ratio=cfg["training"]["warmup_ratio"],
         lr_scheduler_type=cfg["training"]["lr_scheduler"],
 
-        report_to="trackio",
-        project=cfg["tracking"]["project"],
-        run_name=cfg["tracking"]["run_name"],
+        report_to="none",  # Disable tracking for local training
     )
 
     peft_config = LoraConfig(
@@ -104,10 +118,13 @@ def cmd_sft(args):
     print("Starting SFT training...")
     trainer.train()
 
-    print("Pushing to Hub...")
-    trainer.push_to_hub()
-    trackio.finish()
-    print(f"Done! Model: https://huggingface.co/{cfg['model']['output']}")
+    if push_to_hub:
+        print("Pushing to Hub...")
+        trainer.push_to_hub()
+        print(f"Done! Model: https://huggingface.co/{output_name}")
+    else:
+        trainer.save_model()
+        print(f"Done! Model saved to: {output_name}")
 
 
 def cmd_grpo(args):

+ 61 - 0
flake.lock

@@ -0,0 +1,61 @@
+{
+  "nodes": {
+    "flake-utils": {
+      "inputs": {
+        "systems": "systems"
+      },
+      "locked": {
+        "lastModified": 1731533236,
+        "narHash": "sha256-l0KFg5HjrsfsO/JpG+r7fRrqm12kzFHyUHqHCVpMMbI=",
+        "owner": "numtide",
+        "repo": "flake-utils",
+        "rev": "11707dc2f618dd54ca8739b309ec4fc024de578b",
+        "type": "github"
+      },
+      "original": {
+        "owner": "numtide",
+        "repo": "flake-utils",
+        "type": "github"
+      }
+    },
+    "nixpkgs": {
+      "locked": {
+        "lastModified": 1769188852,
+        "narHash": "sha256-aBAGyMum27K7cP5OR7BMioJOF3icquJMZDDgk6ZEg1A=",
+        "owner": "NixOS",
+        "repo": "nixpkgs",
+        "rev": "a1bab9e494f5f4939442a57a58d0449a109593fe",
+        "type": "github"
+      },
+      "original": {
+        "owner": "NixOS",
+        "ref": "nixpkgs-unstable",
+        "repo": "nixpkgs",
+        "type": "github"
+      }
+    },
+    "root": {
+      "inputs": {
+        "flake-utils": "flake-utils",
+        "nixpkgs": "nixpkgs"
+      }
+    },
+    "systems": {
+      "locked": {
+        "lastModified": 1681028828,
+        "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
+        "owner": "nix-systems",
+        "repo": "default",
+        "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
+        "type": "github"
+      },
+      "original": {
+        "owner": "nix-systems",
+        "repo": "default",
+        "type": "github"
+      }
+    }
+  },
+  "root": "root",
+  "version": 7
+}

+ 9 - 1
flake.nix

@@ -11,6 +11,13 @@
       let
         pkgs = nixpkgs.legacyPackages.${system};
 
+        # SQLite with loadable extension support for sqlite-vec
+        sqliteWithExtensions = pkgs.sqlite.overrideAttrs (old: {
+          configureFlags = (old.configureFlags or []) ++ [
+            "--enable-load-extension"
+          ];
+        });
+
         qmd = pkgs.stdenv.mkDerivation {
           pname = "qmd";
           version = "1.0.0";
@@ -62,10 +69,11 @@
         devShells.default = pkgs.mkShell {
           buildInputs = [
             pkgs.bun
-            pkgs.sqlite
+            sqliteWithExtensions
           ];
 
           shellHook = ''
+            export BREW_PREFIX="''${BREW_PREFIX:-${sqliteWithExtensions.out}}"
             echo "QMD development shell"
             echo "Run: bun src/qmd.ts <command>"
           '';

+ 160 - 0
skills/qmd/SKILL.md

@@ -0,0 +1,160 @@
+---
+name: qmd
+description: Search personal markdown knowledge bases, notes, meeting transcripts, and documentation using QMD - a local hybrid search engine. Combines BM25 keyword search, vector semantic search, and LLM re-ranking. Use when users ask to search notes, find documents, look up information in their knowledge base, retrieve meeting notes, or search documentation. Triggers on "search my notes", "find in docs", "look up", "what did I write about", "meeting notes about".
+license: MIT
+compatibility: Requires qmd installed via `bun install -g https://github.com/tobi/qmd`. Works with Claude Code CLI and MCP-compatible agents.
+metadata:
+  author: tobi
+  version: "1.0"
+allowed-tools: Bash(qmd:*)
+---
+
+# QMD - Quick Markdown Search
+
+QMD is a local, on-device search engine for markdown content. It indexes your notes, meeting transcripts, documentation, and knowledge bases for fast retrieval.
+
+## When to Use This Skill
+
+- User asks to search their notes, documents, or knowledge base
+- User needs to find information in their markdown files
+- User wants to retrieve specific documents or search across collections
+- User asks "what did I write about X" or "find my notes on Y"
+- User needs semantic search (conceptual similarity) not just keyword matching
+- User mentions meeting notes, transcripts, or documentation lookup
+
+## Search Commands
+
+Choose the right search mode for the task:
+
+| Command | Use When | Speed |
+|---------|----------|-------|
+| `qmd search` | Exact keyword matches needed | Fast |
+| `qmd vsearch` | Keywords aren't working, need conceptual matches | Medium |
+| `qmd query` | Best results needed, speed not critical | Slower |
+
+```sh
+# Fast keyword search (BM25)
+qmd search "your query"
+
+# Semantic vector search (finds conceptually similar content)
+qmd vsearch "your query"
+
+# Hybrid search with re-ranking (best quality)
+qmd query "your query"
+```
+
+## Common Options
+
+```sh
+-n <num>                 # Number of results (default: 5)
+-c, --collection <name>  # Restrict to specific collection
+--all                    # Return all matches
+--min-score <num>        # Minimum score threshold (0.0-1.0)
+--full                   # Show full document content
+--json                   # JSON output for processing
+--files                  # List files with scores
+--line-numbers           # Add line numbers to output
+```
+
+## Document Retrieval
+
+```sh
+# Get document by path
+qmd get "collection/path/to/doc.md"
+
+# Get document by docid (shown in search results as #abc123)
+qmd get "#abc123"
+
+# Get with line numbers for code review
+qmd get "docs/api.md" --line-numbers
+
+# Get multiple documents by glob pattern
+qmd multi-get "docs/*.md"
+
+# Get multiple documents by list
+qmd multi-get "doc1.md, doc2.md, #abc123"
+```
+
+## Index Management
+
+```sh
+# Check index status and available collections
+qmd status
+
+# List all collections
+qmd collection list
+
+# List files in a collection
+qmd ls <collection-name>
+
+# Update index (re-scan files for changes)
+qmd update
+```
+
+## Score Interpretation
+
+| Score | Meaning | Action |
+|-------|---------|--------|
+| 0.8 - 1.0 | Highly relevant | Show to user |
+| 0.5 - 0.8 | Moderately relevant | Include if few results |
+| 0.2 - 0.5 | Somewhat relevant | Only if user wants more |
+| 0.0 - 0.2 | Low relevance | Usually skip |
+
+## Recommended Workflow
+
+1. **Check what's available**: `qmd status`
+2. **Start with keyword search**: `qmd search "topic" -n 10`
+3. **Try semantic if needed**: `qmd vsearch "describe the concept"`
+4. **Use hybrid for best results**: `qmd query "question" --min-score 0.4`
+5. **Retrieve full documents**: `qmd get "#docid" --full`
+
+## Example: Finding Meeting Notes
+
+```sh
+# Search for meetings about a topic
+qmd search "quarterly review" -c meetings -n 5
+
+# Get semantic matches
+qmd vsearch "performance discussion" -c meetings
+
+# Retrieve the full meeting notes
+qmd get "#abc123" --full
+```
+
+## Example: Research Across All Notes
+
+```sh
+# Hybrid search for best results
+qmd query "authentication implementation" --min-score 0.3 --json
+
+# Get all relevant files for deeper analysis
+qmd query "auth flow" --all --files --min-score 0.4
+```
+
+## MCP Server Integration
+
+QMD also works as an MCP server, providing these tools directly:
+
+| MCP Tool | Equivalent CLI | Purpose |
+|----------|---------------|---------|
+| `qmd_search` | `qmd search` | Fast BM25 keyword search |
+| `qmd_vsearch` | `qmd vsearch` | Semantic vector search |
+| `qmd_query` | `qmd query` | Hybrid search with reranking |
+| `qmd_get` | `qmd get` | Retrieve document by path or docid |
+| `qmd_multi_get` | `qmd multi-get` | Retrieve multiple documents |
+| `qmd_status` | `qmd status` | Index health and collection info |
+
+To enable MCP tools, add to `~/.claude/settings.json`:
+
+```json
+{
+  "mcpServers": {
+    "qmd": {
+      "command": "qmd",
+      "args": ["mcp"]
+    }
+  }
+}
+```
+
+When MCP is configured, prefer using the `qmd_*` tools directly instead of Bash commands for better integration.

+ 128 - 0
skills/qmd/references/MCP-SETUP.md

@@ -0,0 +1,128 @@
+# QMD MCP Server Setup
+
+Detailed instructions for configuring QMD as an MCP (Model Context Protocol) server.
+
+## Prerequisites
+
+1. Install qmd globally:
+   ```sh
+   bun install -g https://github.com/tobi/qmd
+   ```
+
+2. Verify installation:
+   ```sh
+   qmd --help
+   ```
+
+3. Set up at least one collection:
+   ```sh
+   qmd collection add ~/Documents/notes --name notes
+   qmd embed  # Generate vector embeddings
+   ```
+
+## Claude Code Configuration
+
+Add to `~/.claude/settings.json`:
+
+```json
+{
+  "mcpServers": {
+    "qmd": {
+      "command": "qmd",
+      "args": ["mcp"]
+    }
+  }
+}
+```
+
+## Claude Desktop Configuration
+
+Add to `~/Library/Application Support/Claude/claude_desktop_config.json`:
+
+```json
+{
+  "mcpServers": {
+    "qmd": {
+      "command": "qmd",
+      "args": ["mcp"]
+    }
+  }
+}
+```
+
+## Available MCP Tools
+
+Once configured, these tools become available:
+
+### qmd_search
+Fast BM25 keyword search.
+
+**Parameters:**
+- `query` (required): Search query string
+- `collection` (optional): Restrict to specific collection
+- `limit` (optional): Number of results (default: 5)
+- `minScore` (optional): Minimum relevance score
+
+### qmd_vsearch
+Semantic vector search for conceptual similarity.
+
+**Parameters:**
+- `query` (required): Search query string
+- `collection` (optional): Restrict to specific collection
+- `limit` (optional): Number of results (default: 5)
+- `minScore` (optional): Minimum relevance score
+
+### qmd_query
+Hybrid search combining BM25, vector search, and LLM re-ranking.
+
+**Parameters:**
+- `query` (required): Search query string
+- `collection` (optional): Restrict to specific collection
+- `limit` (optional): Number of results (default: 5)
+- `minScore` (optional): Minimum relevance score
+
+### qmd_get
+Retrieve a document by path or docid.
+
+**Parameters:**
+- `path` (required): Document path or docid (e.g., `#abc123`)
+- `full` (optional): Return full content (default: true)
+- `lineNumbers` (optional): Include line numbers
+
+### qmd_multi_get
+Retrieve multiple documents.
+
+**Parameters:**
+- `pattern` (required): Glob pattern or comma-separated list
+- `maxBytes` (optional): Skip files larger than this (default: 10KB)
+
+### qmd_status
+Get index health and collection information.
+
+**Parameters:** None
+
+## Troubleshooting
+
+### MCP server not starting
+- Ensure qmd is in your PATH: `which qmd`
+- Try running `qmd mcp` manually to see errors
+- Check that Bun is installed: `bun --version`
+
+### No results returned
+- Verify collections exist: `qmd collection list`
+- Check index status: `qmd status`
+- Ensure embeddings are generated: `qmd embed`
+
+### Slow searches
+- For faster results, use `qmd_search` instead of `qmd_query`
+- The first search may be slow while models load (~3GB)
+- Subsequent searches are much faster
+
+## Choosing Between CLI and MCP
+
+| Scenario | Recommendation |
+|----------|---------------|
+| MCP configured | Use `qmd_*` tools directly |
+| No MCP | Use Bash with `qmd` commands |
+| Complex pipelines | Bash may be more flexible |
+| Simple lookups | MCP tools are cleaner |

+ 232 - 0
src/llm.test.ts

@@ -12,7 +12,11 @@ import {
   LlamaCpp,
   getDefaultLlamaCpp,
   disposeDefaultLlamaCpp,
+  withLLMSession,
+  canUnloadLLM,
+  SessionReleasedError,
   type RerankDocument,
+  type ILLMSession,
 } from "./llm.js";
 
 // =============================================================================
@@ -167,6 +171,63 @@ describe("LlamaCpp Integration", () => {
       // Performance is machine/load dependent. We only assert batch isn't drastically worse.
       expect(batchTime).toBeLessThanOrEqual(seqTime * 3);
     });
+
+    test("handles concurrent embedBatch calls on fresh instance without race condition", async () => {
+      // This test verifies the fix for a race condition where concurrent calls to
+      // ensureEmbedContext() could create multiple contexts. Without the promise guard,
+      // each concurrent embedBatch call sees embedContext === null and creates its own
+      // context, causing resource leaks and potential "Context is disposed" errors.
+      //
+      // See: https://github.com/tobi/qmd/pull/54
+      //
+      // The fix uses a promise guard to ensure only one context creation runs at a time.
+      // We verify this by instrumenting createEmbeddingContext to count invocations.
+      
+      const freshLlm = new LlamaCpp({});
+      let contextCreateCount = 0;
+      
+      // Instrument the model's createEmbeddingContext to count calls
+      const originalEnsureEmbedModel = (freshLlm as any).ensureEmbedModel.bind(freshLlm);
+      let modelInstrumented = false;
+      (freshLlm as any).ensureEmbedModel = async function() {
+        const model = await originalEnsureEmbedModel();
+        if (!modelInstrumented) {
+          modelInstrumented = true;
+          const originalCreate = model.createEmbeddingContext.bind(model);
+          model.createEmbeddingContext = async function(...args: any[]) {
+            contextCreateCount++;
+            return originalCreate(...args);
+          };
+        }
+        return model;
+      };
+      
+      const texts = Array(10).fill(null).map((_, i) => `Document ${i}`);
+
+      // Call embedBatch 5 TIMES in parallel on fresh instance.
+      // Without the promise guard fix, this would create 5 contexts (one per call).
+      // With the fix, only 1 context should be created.
+      const batches = await Promise.all([
+        freshLlm.embedBatch(texts.slice(0, 2)),
+        freshLlm.embedBatch(texts.slice(2, 4)),
+        freshLlm.embedBatch(texts.slice(4, 6)),
+        freshLlm.embedBatch(texts.slice(6, 8)),
+        freshLlm.embedBatch(texts.slice(8, 10)),
+      ]);
+
+      const allResults = batches.flat();
+      expect(allResults).toHaveLength(10);
+      
+      const successCount = allResults.filter(r => r !== null).length;
+      expect(successCount).toBe(10);
+
+      // THE KEY ASSERTION: Only 1 context should be created, not 5
+      // Without the fix, contextCreateCount would be 5 (one per concurrent embedBatch call)
+      console.log(`Context creation count: ${contextCreateCount} (expected: 1)`);
+      expect(contextCreateCount).toBe(1);
+      
+      await freshLlm.dispose();
+    }, 60000);
   });
 
   describe("rerank", () => {
@@ -325,3 +386,174 @@ describe("LlamaCpp Integration", () => {
   });
 });
 
+// =============================================================================
+// Session Management Tests
+// =============================================================================
+
+describe("LLM Session Management", () => {
+  describe("withLLMSession", () => {
+    test("session provides access to LLM operations", async () => {
+      const result = await withLLMSession(async (session) => {
+        expect(session.isValid).toBe(true);
+        const embedding = await session.embed("test text");
+        expect(embedding).not.toBeNull();
+        expect(embedding!.embedding.length).toBe(768);
+        return "success";
+      });
+      expect(result).toBe("success");
+    });
+
+    test("session is invalid after release", async () => {
+      let capturedSession: ILLMSession | null = null;
+
+      await withLLMSession(async (session) => {
+        capturedSession = session;
+        expect(session.isValid).toBe(true);
+      });
+
+      // Session should be invalid after withLLMSession returns
+      expect(capturedSession).not.toBeNull();
+      expect(capturedSession!.isValid).toBe(false);
+    });
+
+    test("session prevents idle unload during operations", async () => {
+      await withLLMSession(async (session) => {
+        // While inside a session, canUnloadLLM should return false
+        expect(canUnloadLLM()).toBe(false);
+
+        // Perform an operation
+        await session.embed("test");
+
+        // Still should not be able to unload
+        expect(canUnloadLLM()).toBe(false);
+      });
+
+      // After session ends, should be able to unload
+      expect(canUnloadLLM()).toBe(true);
+    });
+
+    test("nested sessions increment ref count", async () => {
+      await withLLMSession(async (outerSession) => {
+        expect(canUnloadLLM()).toBe(false);
+
+        await withLLMSession(async (innerSession) => {
+          expect(canUnloadLLM()).toBe(false);
+          expect(innerSession.isValid).toBe(true);
+          expect(outerSession.isValid).toBe(true);
+        });
+
+        // Inner session released, but outer still active
+        expect(canUnloadLLM()).toBe(false);
+        expect(outerSession.isValid).toBe(true);
+      });
+
+      // All sessions released
+      expect(canUnloadLLM()).toBe(true);
+    });
+
+    test("session embedBatch works correctly", async () => {
+      await withLLMSession(async (session) => {
+        const texts = ["Hello world", "Test text", "Another document"];
+        const results = await session.embedBatch(texts);
+
+        expect(results).toHaveLength(3);
+        for (const result of results) {
+          expect(result).not.toBeNull();
+          expect(result!.embedding.length).toBe(768);
+        }
+      });
+    });
+
+    test("session rerank works correctly", async () => {
+      await withLLMSession(async (session) => {
+        const documents: RerankDocument[] = [
+          { file: "a.txt", text: "The capital of France is Paris." },
+          { file: "b.txt", text: "Dogs are great pets." },
+        ];
+
+        const result = await session.rerank("What is the capital of France?", documents);
+
+        expect(result.results).toHaveLength(2);
+        expect(result.results[0]!.file).toBe("a.txt");
+        expect(result.results[0]!.score).toBeGreaterThan(result.results[1]!.score);
+      });
+    });
+
+    test("max duration aborts session after timeout", async () => {
+      let aborted = false;
+
+      try {
+        await withLLMSession(async (session) => {
+          // Wait longer than max duration
+          await new Promise(resolve => setTimeout(resolve, 150));
+
+          // This operation should throw because session was aborted
+          await session.embed("test");
+        }, { maxDuration: 50 }); // 50ms max
+      } catch (err) {
+        if (err instanceof SessionReleasedError) {
+          aborted = true;
+        } else {
+          throw err;
+        }
+      }
+
+      expect(aborted).toBe(true);
+    }, 5000);
+
+    test("external abort signal propagates to session", async () => {
+      const abortController = new AbortController();
+      let sessionAborted = false;
+
+      const promise = withLLMSession(async (session) => {
+        // Wait a bit then check if aborted
+        await new Promise(resolve => setTimeout(resolve, 100));
+
+        if (!session.isValid) {
+          sessionAborted = true;
+          throw new SessionReleasedError("Session aborted");
+        }
+
+        return "should not reach";
+      }, { signal: abortController.signal });
+
+      // Abort after 20ms
+      setTimeout(() => abortController.abort(), 20);
+
+      try {
+        await promise;
+      } catch (err) {
+        // Expected
+      }
+
+      expect(sessionAborted).toBe(true);
+    }, 5000);
+
+    test("session provides abort signal for monitoring", async () => {
+      await withLLMSession(async (session) => {
+        expect(session.signal).toBeInstanceOf(AbortSignal);
+        expect(session.signal.aborted).toBe(false);
+      });
+    });
+
+    test("returns value from callback", async () => {
+      const result = await withLLMSession(async (session) => {
+        await session.embed("test");
+        return { status: "complete", count: 42 };
+      });
+
+      expect(result).toEqual({ status: "complete", count: 42 });
+    });
+
+    test("propagates errors from callback", async () => {
+      const customError = new Error("Custom test error");
+
+      await expect(
+        withLLMSession(async () => {
+          throw customError;
+        })
+      ).rejects.toThrow("Custom test error");
+    });
+  });
+});
+

+ 308 - 7
src/llm.ts

@@ -119,6 +119,32 @@ export type RerankOptions = {
   model?: string;
 };
 
+/**
+ * Options for LLM sessions
+ */
+export type LLMSessionOptions = {
+  /** Max session duration in ms (default: 10 minutes) */
+  maxDuration?: number;
+  /** External abort signal */
+  signal?: AbortSignal;
+  /** Debug name for logging */
+  name?: string;
+};
+
+/**
+ * Session interface for scoped LLM access with lifecycle guarantees
+ */
+export interface ILLMSession {
+  embed(text: string, options?: EmbedOptions): Promise<EmbeddingResult | null>;
+  embedBatch(texts: string[]): Promise<(EmbeddingResult | null)[]>;
+  expandQuery(query: string, options?: { context?: string; includeLexical?: boolean }): Promise<Queryable[]>;
+  rerank(query: string, documents: RerankDocument[], options?: RerankOptions): Promise<RerankResult>;
+  /** Whether this session is still valid (not released or aborted) */
+  readonly isValid: boolean;
+  /** Abort signal for this session (aborts on release or maxDuration) */
+  readonly signal: AbortSignal;
+}
+
 /**
  * Supported query types for different search backends
  */
@@ -225,8 +251,8 @@ export type LlamaCppConfig = {
 /**
  * LLM implementation using node-llama-cpp
  */
-// Default inactivity timeout: 2 minutes
-const DEFAULT_INACTIVITY_TIMEOUT_MS = 2 * 60 * 1000;
+// Default inactivity timeout: 5 minutes (keep models warm during typical search sessions)
+const DEFAULT_INACTIVITY_TIMEOUT_MS = 5 * 60 * 1000;
 
 export class LlamaCpp implements LLM {
   private llama: Llama | null = null;
@@ -241,8 +267,9 @@ export class LlamaCpp implements LLM {
   private rerankModelUri: string;
   private modelCacheDir: string;
 
-  // Ensure we don't load the same model concurrently (which can allocate duplicate VRAM).
+  // Ensure we don't load the same model/context concurrently (which can allocate duplicate VRAM).
   private embedModelLoadPromise: Promise<LlamaModel> | null = null;
+  private embedContextCreatePromise: Promise<LlamaEmbeddingContext> | null = null;
   private generateModelLoadPromise: Promise<LlamaModel> | null = null;
   private rerankModelLoadPromise: Promise<LlamaModel> | null = null;
 
@@ -266,7 +293,7 @@ export class LlamaCpp implements LLM {
 
   /**
    * Reset the inactivity timer. Called after each model operation.
-   * When timer fires, models are unloaded to free memory.
+   * When timer fires, models are unloaded to free memory (if no active sessions).
    */
   private touchActivity(): void {
     // Clear existing timer
@@ -278,6 +305,14 @@ export class LlamaCpp implements LLM {
     // Only set timer if we have disposable contexts and timeout is enabled
     if (this.inactivityTimeoutMs > 0 && this.hasLoadedContexts()) {
       this.inactivityTimer = setTimeout(() => {
+        // Check if session manager allows unloading
+        // canUnloadLLM is defined later in this file - it checks the session manager
+        // We use dynamic import pattern to avoid circular dependency issues
+        if (typeof canUnloadLLM === 'function' && !canUnloadLLM()) {
+          // Active sessions/operations - reschedule timer
+          this.touchActivity();
+          return;
+        }
         this.unloadIdleResources().catch(err => {
           console.error("Error unloading idle resources:", err);
         });
@@ -389,6 +424,8 @@ export class LlamaCpp implements LLM {
       const modelPath = await this.resolveModel(this.embedModelUri);
       const model = await llama.loadModel({ modelPath });
       this.embedModel = model;
+      // Model loading counts as activity - ping to keep alive
+      this.touchActivity();
       return model;
     })();
 
@@ -402,11 +439,30 @@ export class LlamaCpp implements LLM {
 
   /**
    * Load embedding context (lazy). Context can be disposed and recreated without reloading the model.
+   * Uses promise guard to prevent concurrent context creation race condition.
    */
   private async ensureEmbedContext(): Promise<LlamaEmbeddingContext> {
     if (!this.embedContext) {
-      const model = await this.ensureEmbedModel();
-      this.embedContext = await model.createEmbeddingContext();
+      // If context creation is already in progress, wait for it
+      if (this.embedContextCreatePromise) {
+        return await this.embedContextCreatePromise;
+      }
+
+      // Start context creation and store promise so concurrent calls wait
+      this.embedContextCreatePromise = (async () => {
+        const model = await this.ensureEmbedModel();
+        const context = await model.createEmbeddingContext();
+        this.embedContext = context;
+        return context;
+      })();
+
+      try {
+        const context = await this.embedContextCreatePromise;
+        this.touchActivity();
+        return context;
+      } finally {
+        this.embedContextCreatePromise = null;
+      }
     }
     this.touchActivity();
     return this.embedContext;
@@ -458,6 +514,8 @@ export class LlamaCpp implements LLM {
       const modelPath = await this.resolveModel(this.rerankModelUri);
       const model = await llama.loadModel({ modelPath });
       this.rerankModel = model;
+      // Model loading counts as activity - ping to keep alive
+      this.touchActivity();
       return model;
     })();
 
@@ -520,6 +578,9 @@ export class LlamaCpp implements LLM {
   // ==========================================================================
 
   async embed(text: string, options: EmbedOptions = {}): Promise<EmbeddingResult | null> {
+    // Ping activity at start to keep models alive during this operation
+    this.touchActivity();
+
     try {
       const context = await this.ensureEmbedContext();
       const embedding = await context.getEmbeddingFor(text);
@@ -539,6 +600,9 @@ export class LlamaCpp implements LLM {
    * Uses Promise.all for parallel embedding - node-llama-cpp handles batching internally
    */
   async embedBatch(texts: string[]): Promise<(EmbeddingResult | null)[]> {
+    // Ping activity at start to keep models alive during this operation
+    this.touchActivity();
+
     if (texts.length === 0) return [];
 
     try {
@@ -549,6 +613,7 @@ export class LlamaCpp implements LLM {
         texts.map(async (text) => {
           try {
             const embedding = await context.getEmbeddingFor(text);
+            this.touchActivity();  // Keep-alive during slow batches
             return {
               embedding: Array.from(embedding.vector),
               model: this.embedModelUri,
@@ -568,6 +633,9 @@ export class LlamaCpp implements LLM {
   }
 
   async generate(prompt: string, options: GenerateOptions = {}): Promise<GenerateResult | null> {
+    // Ping activity at start to keep models alive during this operation
+    this.touchActivity();
+
     // Ensure model is loaded
     await this.ensureGenerateModel();
 
@@ -620,6 +688,9 @@ export class LlamaCpp implements LLM {
   // ==========================================================================
 
   async expandQuery(query: string, options: { context?: string, includeLexical?: boolean } = {}): Promise<Queryable[]> {
+    // Ping activity at start to keep models alive during this operation
+    this.touchActivity();
+
     const llama = await this.ensureLlama();
     await this.ensureGenerateModel();
 
@@ -721,6 +792,9 @@ Final Output:`;
     documents: RerankDocument[],
     options: RerankOptions = {}
   ): Promise<RerankResult> {
+    // Ping activity at start to keep models alive during this operation
+    this.touchActivity();
+
     const context = await this.ensureRerankContext();
 
     // Build a map from document text to original indices (for lookup after sorting)
@@ -781,13 +855,240 @@ Final Output:`;
     this.rerankModel = null;
     this.llama = null;
 
-    // Clear any in-flight load promises
+    // Clear any in-flight load/create promises
     this.embedModelLoadPromise = null;
+    this.embedContextCreatePromise = null;
     this.generateModelLoadPromise = null;
     this.rerankModelLoadPromise = null;
   }
 }
 
+// =============================================================================
+// Session Management Layer
+// =============================================================================
+
+/**
+ * Manages LLM session lifecycle with reference counting.
+ * Coordinates with LlamaCpp idle timeout to prevent disposal during active sessions.
+ */
+class LLMSessionManager {
+  private llm: LlamaCpp;
+  private _activeSessionCount = 0;
+  private _inFlightOperations = 0;
+
+  constructor(llm: LlamaCpp) {
+    this.llm = llm;
+  }
+
+  get activeSessionCount(): number {
+    return this._activeSessionCount;
+  }
+
+  get inFlightOperations(): number {
+    return this._inFlightOperations;
+  }
+
+  /**
+   * Returns true only when both session count and in-flight operations are 0.
+   * Used by LlamaCpp to determine if idle unload is safe.
+   */
+  canUnload(): boolean {
+    return this._activeSessionCount === 0 && this._inFlightOperations === 0;
+  }
+
+  acquire(): void {
+    this._activeSessionCount++;
+  }
+
+  release(): void {
+    this._activeSessionCount = Math.max(0, this._activeSessionCount - 1);
+  }
+
+  operationStart(): void {
+    this._inFlightOperations++;
+  }
+
+  operationEnd(): void {
+    this._inFlightOperations = Math.max(0, this._inFlightOperations - 1);
+  }
+
+  getLlamaCpp(): LlamaCpp {
+    return this.llm;
+  }
+}
+
+/**
+ * Error thrown when an operation is attempted on a released or aborted session.
+ */
+export class SessionReleasedError extends Error {
+  constructor(message = "LLM session has been released or aborted") {
+    super(message);
+    this.name = "SessionReleasedError";
+  }
+}
+
+/**
+ * Scoped LLM session with automatic lifecycle management.
+ * Wraps LlamaCpp methods with operation tracking and abort handling.
+ */
+class LLMSession implements ILLMSession {
+  private manager: LLMSessionManager;
+  private released = false;
+  private abortController: AbortController;
+  private maxDurationTimer: ReturnType<typeof setTimeout> | null = null;
+  private name: string;
+
+  constructor(manager: LLMSessionManager, options: LLMSessionOptions = {}) {
+    this.manager = manager;
+    this.name = options.name || "unnamed";
+    this.abortController = new AbortController();
+
+    // Link external abort signal if provided
+    if (options.signal) {
+      if (options.signal.aborted) {
+        this.abortController.abort(options.signal.reason);
+      } else {
+        options.signal.addEventListener("abort", () => {
+          this.abortController.abort(options.signal!.reason);
+        }, { once: true });
+      }
+    }
+
+    // Set up max duration timer
+    const maxDuration = options.maxDuration ?? 10 * 60 * 1000; // Default 10 minutes
+    if (maxDuration > 0) {
+      this.maxDurationTimer = setTimeout(() => {
+        this.abortController.abort(new Error(`Session "${this.name}" exceeded max duration of ${maxDuration}ms`));
+      }, maxDuration);
+      this.maxDurationTimer.unref(); // Don't keep process alive
+    }
+
+    // Acquire session lease
+    this.manager.acquire();
+  }
+
+  get isValid(): boolean {
+    return !this.released && !this.abortController.signal.aborted;
+  }
+
+  get signal(): AbortSignal {
+    return this.abortController.signal;
+  }
+
+  /**
+   * Release the session and decrement ref count.
+   * Called automatically by withLLMSession when the callback completes.
+   */
+  release(): void {
+    if (this.released) return;
+    this.released = true;
+
+    if (this.maxDurationTimer) {
+      clearTimeout(this.maxDurationTimer);
+      this.maxDurationTimer = null;
+    }
+
+    this.abortController.abort(new Error("Session released"));
+    this.manager.release();
+  }
+
+  /**
+   * Wrap an operation with tracking and abort checking.
+   */
+  private async withOperation<T>(fn: () => Promise<T>): Promise<T> {
+    if (!this.isValid) {
+      throw new SessionReleasedError();
+    }
+
+    this.manager.operationStart();
+    try {
+      // Check abort before starting
+      if (this.abortController.signal.aborted) {
+        throw new SessionReleasedError(
+          this.abortController.signal.reason?.message || "Session aborted"
+        );
+      }
+      return await fn();
+    } finally {
+      this.manager.operationEnd();
+    }
+  }
+
+  async embed(text: string, options?: EmbedOptions): Promise<EmbeddingResult | null> {
+    return this.withOperation(() => this.manager.getLlamaCpp().embed(text, options));
+  }
+
+  async embedBatch(texts: string[]): Promise<(EmbeddingResult | null)[]> {
+    return this.withOperation(() => this.manager.getLlamaCpp().embedBatch(texts));
+  }
+
+  async expandQuery(
+    query: string,
+    options?: { context?: string; includeLexical?: boolean }
+  ): Promise<Queryable[]> {
+    return this.withOperation(() => this.manager.getLlamaCpp().expandQuery(query, options));
+  }
+
+  async rerank(
+    query: string,
+    documents: RerankDocument[],
+    options?: RerankOptions
+  ): Promise<RerankResult> {
+    return this.withOperation(() => this.manager.getLlamaCpp().rerank(query, documents, options));
+  }
+}
+
+// Session manager for the default LlamaCpp instance
+let defaultSessionManager: LLMSessionManager | null = null;
+
+/**
+ * Get the session manager for the default LlamaCpp instance.
+ */
+function getSessionManager(): LLMSessionManager {
+  const llm = getDefaultLlamaCpp();
+  if (!defaultSessionManager || defaultSessionManager.getLlamaCpp() !== llm) {
+    defaultSessionManager = new LLMSessionManager(llm);
+  }
+  return defaultSessionManager;
+}
+
+/**
+ * Execute a function with a scoped LLM session.
+ * The session provides lifecycle guarantees - resources won't be disposed mid-operation.
+ *
+ * @example
+ * ```typescript
+ * await withLLMSession(async (session) => {
+ *   const expanded = await session.expandQuery(query);
+ *   const embeddings = await session.embedBatch(texts);
+ *   const reranked = await session.rerank(query, docs);
+ *   return reranked;
+ * }, { maxDuration: 10 * 60 * 1000, name: 'querySearch' });
+ * ```
+ */
+export async function withLLMSession<T>(
+  fn: (session: ILLMSession) => Promise<T>,
+  options?: LLMSessionOptions
+): Promise<T> {
+  const manager = getSessionManager();
+  const session = new LLMSession(manager, options);
+
+  try {
+    return await fn(session);
+  } finally {
+    session.release();
+  }
+}
+
+/**
+ * Check if idle unload is safe (no active sessions or operations).
+ * Used internally by LlamaCpp idle timer.
+ */
+export function canUnloadLLM(): boolean {
+  if (!defaultSessionManager) return true;
+  return defaultSessionManager.canUnload();
+}
+
 // =============================================================================
 // Singleton for default LlamaCpp instance
 // =============================================================================

+ 283 - 270
src/qmd.ts

@@ -65,7 +65,7 @@ import {
   createStore,
   getDefaultDbPath,
 } from "./store.js";
-import { getDefaultLlamaCpp, disposeDefaultLlamaCpp, type RerankDocument, type Queryable, type QueryType } from "./llm.js";
+import { getDefaultLlamaCpp, disposeDefaultLlamaCpp, withLLMSession, type ILLMSession, type RerankDocument, type Queryable, type QueryType } from "./llm.js";
 import type { SearchResult, RankedResult } from "./store.js";
 import {
   formatSearchResults,
@@ -231,20 +231,21 @@ function computeDisplayPath(
 }
 
 // Rerank documents using node-llama-cpp cross-encoder model
-async function rerank(query: string, documents: { file: string; text: string }[], _model: string = DEFAULT_RERANK_MODEL, _db?: Database): Promise<{ file: string; score: number }[]> {
+async function rerank(query: string, documents: { file: string; text: string }[], _model: string = DEFAULT_RERANK_MODEL, _db?: Database, session?: ILLMSession): Promise<{ file: string; score: number }[]> {
   if (documents.length === 0) return [];
 
   const total = documents.length;
   process.stderr.write(`Reranking ${total} documents...\n`);
   progress.indeterminate();
 
-  const llm = getDefaultLlamaCpp();
   const rerankDocs: RerankDocument[] = documents.map((doc) => ({
     file: doc.file,
     text: doc.text.slice(0, 4000), // Truncate to context limit
   }));
 
-  const result = await llm.rerank(query, rerankDocs);
+  const result = session
+    ? await session.rerank(query, rerankDocs)
+    : await getDefaultLlamaCpp().rerank(query, rerankDocs);
 
   progress.clear();
   process.stderr.write("\n");
@@ -1543,7 +1544,7 @@ async function vectorIndex(model: string = DEFAULT_EMBED_MODEL, force: boolean =
     return;
   }
 
-  const totalBytes = allChunks.reduce((sum, c) => sum + c.bytes, 0);
+  const totalBytes = allChunks.reduce((sum, chk) => sum + chk.bytes, 0);
   const totalChunks = allChunks.length;
   const totalDocs = hashesToEmbed.length;
 
@@ -1556,99 +1557,103 @@ async function vectorIndex(model: string = DEFAULT_EMBED_MODEL, force: boolean =
   // Hide cursor during embedding
   cursor.hide();
 
-  // Get embedding dimensions from first chunk
-  progress.indeterminate();
-  const llm = getDefaultLlamaCpp();
-  const firstChunk = allChunks[0];
-  if (!firstChunk) {
-    throw new Error("No chunks available to embed");
-  }
-  const firstText = formatDocForEmbedding(firstChunk.text, firstChunk.title);
-  const firstResult = await llm.embed(firstText);
-  if (!firstResult) {
-    throw new Error("Failed to get embedding dimensions from first chunk");
-  }
-  ensureVecTable(db, firstResult.embedding.length);
+  // Wrap all LLM embedding operations in a session for lifecycle management
+  // Use 30 minute timeout for large collections
+  await withLLMSession(async (session) => {
+    // Get embedding dimensions from first chunk
+    progress.indeterminate();
+    const firstChunk = allChunks[0];
+    if (!firstChunk) {
+      throw new Error("No chunks available to embed");
+    }
+    const firstText = formatDocForEmbedding(firstChunk.text, firstChunk.title);
+    const firstResult = await session.embed(firstText);
+    if (!firstResult) {
+      throw new Error("Failed to get embedding dimensions from first chunk");
+    }
+    ensureVecTable(db, firstResult.embedding.length);
 
-  let chunksEmbedded = 0, errors = 0, bytesProcessed = 0;
-  const startTime = Date.now();
+    let chunksEmbedded = 0, errors = 0, bytesProcessed = 0;
+    const startTime = Date.now();
 
-  // Batch embedding for better throughput
-  // Process in batches of 32 to balance memory usage and efficiency
-  const BATCH_SIZE = 32;
+    // Batch embedding for better throughput
+    // Process in batches of 32 to balance memory usage and efficiency
+    const BATCH_SIZE = 32;
 
-  for (let batchStart = 0; batchStart < allChunks.length; batchStart += BATCH_SIZE) {
-    const batchEnd = Math.min(batchStart + BATCH_SIZE, allChunks.length);
-    const batch = allChunks.slice(batchStart, batchEnd);
+    for (let batchStart = 0; batchStart < allChunks.length; batchStart += BATCH_SIZE) {
+      const batchEnd = Math.min(batchStart + BATCH_SIZE, allChunks.length);
+      const batch = allChunks.slice(batchStart, batchEnd);
 
-    // Format texts for embedding
-    const texts = batch.map(chunk => formatDocForEmbedding(chunk.text, chunk.title));
+      // Format texts for embedding
+      const texts = batch.map(chunk => formatDocForEmbedding(chunk.text, chunk.title));
 
-    try {
-      // Batch embed all texts at once
-      const embeddings = await llm.embedBatch(texts);
+      try {
+        // Batch embed all texts at once
+        const embeddings = await session.embedBatch(texts);
 
-      // Insert each embedding
-      for (let i = 0; i < batch.length; i++) {
-        const chunk = batch[i]!;
-        const embedding = embeddings[i];
+        // Insert each embedding
+        for (let i = 0; i < batch.length; i++) {
+          const chunk = batch[i]!;
+          const embedding = embeddings[i];
 
-        if (embedding) {
-          insertEmbedding(db, chunk.hash, chunk.seq, chunk.pos, new Float32Array(embedding.embedding), model, now);
-          chunksEmbedded++;
-        } else {
-          errors++;
-          console.error(`\n${c.yellow}⚠ Error embedding "${chunk.displayName}" chunk ${chunk.seq}${c.reset}`);
-        }
-        bytesProcessed += chunk.bytes;
-      }
-    } catch (err) {
-      // If batch fails, try individual embeddings as fallback
-      for (const chunk of batch) {
-        try {
-          const text = formatDocForEmbedding(chunk.text, chunk.title);
-          const result = await llm.embed(text);
-          if (result) {
-            insertEmbedding(db, chunk.hash, chunk.seq, chunk.pos, new Float32Array(result.embedding), model, now);
+          if (embedding) {
+            insertEmbedding(db, chunk.hash, chunk.seq, chunk.pos, new Float32Array(embedding.embedding), model, now);
             chunksEmbedded++;
           } else {
             errors++;
+            console.error(`\n${c.yellow}⚠ Error embedding "${chunk.displayName}" chunk ${chunk.seq}${c.reset}`);
           }
-        } catch (innerErr) {
-          errors++;
-          console.error(`\n${c.yellow}⚠ Error embedding "${chunk.displayName}" chunk ${chunk.seq}: ${innerErr}${c.reset}`);
+          bytesProcessed += chunk.bytes;
+        }
+      } catch (err) {
+        // If batch fails, try individual embeddings as fallback
+        for (const chunk of batch) {
+          try {
+            const text = formatDocForEmbedding(chunk.text, chunk.title);
+            const result = await session.embed(text);
+            if (result) {
+              insertEmbedding(db, chunk.hash, chunk.seq, chunk.pos, new Float32Array(result.embedding), model, now);
+              chunksEmbedded++;
+            } else {
+              errors++;
+            }
+          } catch (innerErr) {
+            errors++;
+            console.error(`\n${c.yellow}⚠ Error embedding "${chunk.displayName}" chunk ${chunk.seq}: ${innerErr}${c.reset}`);
+          }
+          bytesProcessed += chunk.bytes;
         }
-        bytesProcessed += chunk.bytes;
       }
-    }
 
-    const percent = (bytesProcessed / totalBytes) * 100;
-    progress.set(percent);
+      const percent = (bytesProcessed / totalBytes) * 100;
+      progress.set(percent);
 
-    const elapsed = (Date.now() - startTime) / 1000;
-    const bytesPerSec = bytesProcessed / elapsed;
-    const remainingBytes = totalBytes - bytesProcessed;
-    const etaSec = remainingBytes / bytesPerSec;
+      const elapsed = (Date.now() - startTime) / 1000;
+      const bytesPerSec = bytesProcessed / elapsed;
+      const remainingBytes = totalBytes - bytesProcessed;
+      const etaSec = remainingBytes / bytesPerSec;
 
-    const bar = renderProgressBar(percent);
-    const percentStr = percent.toFixed(0).padStart(3);
-    const throughput = `${formatBytes(bytesPerSec)}/s`;
-    const eta = elapsed > 2 ? formatETA(etaSec) : "...";
-    const errStr = errors > 0 ? ` ${c.yellow}${errors} err${c.reset}` : "";
+      const bar = renderProgressBar(percent);
+      const percentStr = percent.toFixed(0).padStart(3);
+      const throughput = `${formatBytes(bytesPerSec)}/s`;
+      const eta = elapsed > 2 ? formatETA(etaSec) : "...";
+      const errStr = errors > 0 ? ` ${c.yellow}${errors} err${c.reset}` : "";
 
-    process.stderr.write(`\r${c.cyan}${bar}${c.reset} ${c.bold}${percentStr}%${c.reset} ${c.dim}${chunksEmbedded}/${totalChunks}${c.reset}${errStr} ${c.dim}${throughput} ETA ${eta}${c.reset}   `);
-  }
+      process.stderr.write(`\r${c.cyan}${bar}${c.reset} ${c.bold}${percentStr}%${c.reset} ${c.dim}${chunksEmbedded}/${totalChunks}${c.reset}${errStr} ${c.dim}${throughput} ETA ${eta}${c.reset}   `);
+    }
 
-  progress.clear();
-  cursor.show();
-  const totalTimeSec = (Date.now() - startTime) / 1000;
-  const avgThroughput = formatBytes(totalBytes / totalTimeSec);
+    progress.clear();
+    cursor.show();
+    const totalTimeSec = (Date.now() - startTime) / 1000;
+    const avgThroughput = formatBytes(totalBytes / totalTimeSec);
+
+    console.log(`\r${c.green}${renderProgressBar(100)}${c.reset} ${c.bold}100%${c.reset}                                    `);
+    console.log(`\n${c.green}✓ Done!${c.reset} Embedded ${c.bold}${chunksEmbedded}${c.reset} chunks from ${c.bold}${totalDocs}${c.reset} documents in ${c.bold}${formatETA(totalTimeSec)}${c.reset} ${c.dim}(${avgThroughput}/s)${c.reset}`);
+    if (errors > 0) {
+      console.log(`${c.yellow}⚠ ${errors} chunks failed${c.reset}`);
+    }
+  }, { maxDuration: 30 * 60 * 1000, name: 'embed-command' });
 
-  console.log(`\r${c.green}${renderProgressBar(100)}${c.reset} ${c.bold}100%${c.reset}                                    `);
-  console.log(`\n${c.green}✓ Done!${c.reset} Embedded ${c.bold}${chunksEmbedded}${c.reset} chunks from ${c.bold}${totalDocs}${c.reset} documents in ${c.bold}${formatETA(totalTimeSec)}${c.reset} ${c.dim}(${avgThroughput}/s)${c.reset}`);
-  if (errors > 0) {
-    console.log(`${c.yellow}⚠ ${errors} chunks failed${c.reset}`);
-  }
   closeDb();
 }
 
@@ -1975,60 +1980,64 @@ async function vectorSearch(query: string, opts: OutputOptions, model: string =
   // Check index health and warn about issues
   checkIndexHealth(db);
 
-  // Expand query using structured output (no lexical for vector-only search)
-  const queryables = await expandQueryStructured(query, false, opts.context);
+  // Wrap LLM operations in a session for lifecycle management
+  await withLLMSession(async (session) => {
+    // Expand query using structured output (no lexical for vector-only search)
+    const queryables = await expandQueryStructured(query, false, opts.context, session);
 
-  // Build list of queries for vector search: original, vec, and hyde
-  const vectorQueries: string[] = [query];
-  for (const q of queryables) {
-    if (q.type === 'vec' || q.type === 'hyde') {
-      if (q.text && q.text !== query) {
-        vectorQueries.push(q.text);
+    // Build list of queries for vector search: original, vec, and hyde
+    const vectorQueries: string[] = [query];
+    for (const q of queryables) {
+      if (q.type === 'vec' || q.type === 'hyde') {
+        if (q.text && q.text !== query) {
+          vectorQueries.push(q.text);
+        }
       }
     }
-  }
 
-  process.stderr.write(`${c.dim}Searching ${vectorQueries.length} vector queries...${c.reset}\n`);
+    process.stderr.write(`${c.dim}Searching ${vectorQueries.length} vector queries...${c.reset}\n`);
 
-  // Collect results from all query variations
-  const perQueryLimit = opts.all ? 500 : 20;
-  const allResults = new Map<string, { file: string; displayPath: string; title: string; body: string; score: number; hash: string }>();
+    // Collect results from all query variations
+    const perQueryLimit = opts.all ? 500 : 20;
+    const allResults = new Map<string, { file: string; displayPath: string; title: string; body: string; score: number; hash: string }>();
 
-  // IMPORTANT: Run vector searches sequentially, not with Promise.all.
-  // node-llama-cpp's embedding context hangs when multiple concurrent embed() calls
-  // are made. This is a known limitation of the LlamaEmbeddingContext.
-  // See: https://github.com/tobi/qmd/pull/23
-  for (const q of vectorQueries) {
-    const vecResults = await searchVec(db, q, model, perQueryLimit, collectionName as any);
-    for (const r of vecResults) {
-      const existing = allResults.get(r.filepath);
-      if (!existing || r.score > existing.score) {
-        allResults.set(r.filepath, { file: r.filepath, displayPath: r.displayPath, title: r.title, body: r.body || "", score: r.score, hash: r.hash });
+    // IMPORTANT: Run vector searches sequentially, not with Promise.all.
+    // node-llama-cpp's embedding context hangs when multiple concurrent embed() calls
+    // are made. This is a known limitation of the LlamaEmbeddingContext.
+    // See: https://github.com/tobi/qmd/pull/23
+    for (const q of vectorQueries) {
+      const vecResults = await searchVec(db, q, model, perQueryLimit, collectionName as any, session);
+      for (const r of vecResults) {
+        const existing = allResults.get(r.filepath);
+        if (!existing || r.score > existing.score) {
+          allResults.set(r.filepath, { file: r.filepath, displayPath: r.displayPath, title: r.title, body: r.body || "", score: r.score, hash: r.hash });
+        }
       }
     }
-  }
 
-  // Sort by max score and limit to requested count
-  const results = Array.from(allResults.values())
-    .sort((a, b) => b.score - a.score)
-    .slice(0, opts.limit)
-    .map(r => ({ ...r, context: getContextForFile(db, r.file) }));
+    // Sort by max score and limit to requested count
+    const results = Array.from(allResults.values())
+      .sort((a, b) => b.score - a.score)
+      .slice(0, opts.limit)
+      .map(r => ({ ...r, context: getContextForFile(db, r.file) }));
 
-  closeDb();
+    closeDb();
 
-  if (results.length === 0) {
-    console.log("No results found.");
-    return;
-  }
-  outputResults(results, query, { ...opts, limit: results.length }); // Already limited
+    if (results.length === 0) {
+      console.log("No results found.");
+      return;
+    }
+    outputResults(results, query, { ...opts, limit: results.length }); // Already limited
+  }, { maxDuration: 10 * 60 * 1000, name: 'vectorSearch' });
 }
 
 // Expand query using structured output with GBNF grammar
-async function expandQueryStructured(query: string, includeLexical: boolean = true, context?: string): Promise<Queryable[]> {
+async function expandQueryStructured(query: string, includeLexical: boolean = true, context?: string, session?: ILLMSession): Promise<Queryable[]> {
   process.stderr.write(`${c.dim}Expanding query...${c.reset}\n`);
 
-  const llm = getDefaultLlamaCpp();
-  const queryables = await llm.expandQuery(query, { includeLexical, context });
+  const queryables = session
+    ? await session.expandQuery(query, { includeLexical, context })
+    : await getDefaultLlamaCpp().expandQuery(query, { includeLexical, context });
 
   // Log the expansion as a tree
   const lines: string[] = [];
@@ -2060,8 +2069,8 @@ async function expandQueryStructured(query: string, includeLexical: boolean = tr
   return queryables;
 }
 
-async function expandQuery(query: string, _model: string = DEFAULT_QUERY_MODEL, _db?: Database): Promise<string[]> {
-  const queryables = await expandQueryStructured(query, true);
+async function expandQuery(query: string, _model: string = DEFAULT_QUERY_MODEL, _db?: Database, session?: ILLMSession): Promise<string[]> {
+  const queryables = await expandQueryStructured(query, true, undefined, session);
   const queries = new Set<string>([query]);
   for (const q of queryables) {
     queries.add(q.text);
@@ -2098,178 +2107,182 @@ async function querySearch(query: string, opts: OutputOptions, embedModel: strin
   const secondScore = initialFts[1]?.score ?? 0;
   const hasStrongSignal = initialFts.length > 0 && topScore >= 0.85 && (topScore - secondScore) >= 0.15;
 
-  let ftsQueries: string[] = [query];
-  let vectorQueries: string[] = [query];
-
-  if (hasStrongSignal) {
-    // Strong BM25 signal - skip expensive LLM expansion
-    process.stderr.write(`${c.dim}Strong BM25 signal (${topScore.toFixed(2)}) - skipping expansion${c.reset}\n`);
-    // Still log the "expansion tree" in the same style as vsearch for consistency.
-    {
-      const lines: string[] = [];
-      lines.push(`${c.dim}├─ ${query} · (lexical+vector)${c.reset}`);
-      lines[lines.length - 1] = lines[lines.length - 1]!.replace('├─', '└─');
-      for (const line of lines) process.stderr.write(line + '\n');
-    }
-  } else {
-    // Weak signal - expand query for better recall
-    const queryables = await expandQueryStructured(query, true, opts.context);
-
-    for (const q of queryables) {
-      if (q.type === 'lex') {
-        if (q.text && q.text !== query) ftsQueries.push(q.text);
-      } else if (q.type === 'vec' || q.type === 'hyde') {
-        if (q.text && q.text !== query) vectorQueries.push(q.text);
+  // Wrap LLM operations in a session for lifecycle management
+  await withLLMSession(async (session) => {
+    let ftsQueries: string[] = [query];
+    let vectorQueries: string[] = [query];
+
+    if (hasStrongSignal) {
+      // Strong BM25 signal - skip expensive LLM expansion
+      process.stderr.write(`${c.dim}Strong BM25 signal (${topScore.toFixed(2)}) - skipping expansion${c.reset}\n`);
+      // Still log the "expansion tree" in the same style as vsearch for consistency.
+      {
+        const lines: string[] = [];
+        lines.push(`${c.dim}├─ ${query} · (lexical+vector)${c.reset}`);
+        lines[lines.length - 1] = lines[lines.length - 1]!.replace('├─', '└─');
+        for (const line of lines) process.stderr.write(line + '\n');
+      }
+    } else {
+      // Weak signal - expand query for better recall
+      const queryables = await expandQueryStructured(query, true, opts.context, session);
+
+      for (const q of queryables) {
+        if (q.type === 'lex') {
+          if (q.text && q.text !== query) ftsQueries.push(q.text);
+        } else if (q.type === 'vec' || q.type === 'hyde') {
+          if (q.text && q.text !== query) vectorQueries.push(q.text);
+        }
       }
     }
-  }
-
-  process.stderr.write(`${c.dim}Searching ${ftsQueries.length} lexical + ${vectorQueries.length} vector queries...${c.reset}\n`);
 
-  // Collect ranked result lists for RRF fusion
-  const rankedLists: RankedResult[][] = [];
+    process.stderr.write(`${c.dim}Searching ${ftsQueries.length} lexical + ${vectorQueries.length} vector queries...${c.reset}\n`);
 
-  // Map to store hash by filepath for final results
-  const hashMap = new Map<string, string>();
+    // Collect ranked result lists for RRF fusion
+    const rankedLists: RankedResult[][] = [];
 
-  // Run all searches concurrently (FTS + Vector)
-  const searchPromises: Promise<void>[] = [];
+    // Map to store hash by filepath for final results
+    const hashMap = new Map<string, string>();
 
-  // FTS searches
-  for (const q of ftsQueries) {
-    if (!q) continue;
-    searchPromises.push((async () => {
-      const ftsResults = searchFTS(db, q, 20, (collectionName || "") as any);
-      if (ftsResults.length > 0) {
-        for (const r of ftsResults) {
-          // Mutex for hashMap is not strictly needed as it's just adding values
-          hashMap.set(r.filepath, r.hash);
-        }
-        rankedLists.push(ftsResults.map(r => ({ file: r.filepath, displayPath: r.displayPath, title: r.title, body: r.body || "", score: r.score })));
-      }
-    })());
-  }
+    // Run all searches concurrently (FTS + Vector)
+    const searchPromises: Promise<void>[] = [];
 
-  // Vector searches
-  if (hasVectors) {
-    for (const q of vectorQueries) {
+    // FTS searches
+    for (const q of ftsQueries) {
       if (!q) continue;
       searchPromises.push((async () => {
-        const vecResults = await searchVec(db, q, embedModel, 20, (collectionName || "") as any);
-        if (vecResults.length > 0) {
-          for (const r of vecResults) hashMap.set(r.filepath, r.hash);
-          rankedLists.push(vecResults.map(r => ({ file: r.filepath, displayPath: r.displayPath, title: r.title, body: r.body || "", score: r.score })));
+        const ftsResults = searchFTS(db, q, 20, (collectionName || "") as any);
+        if (ftsResults.length > 0) {
+          for (const r of ftsResults) {
+            // Mutex for hashMap is not strictly needed as it's just adding values
+            hashMap.set(r.filepath, r.hash);
+          }
+          rankedLists.push(ftsResults.map(r => ({ file: r.filepath, displayPath: r.displayPath, title: r.title, body: r.body || "", score: r.score })));
         }
       })());
     }
-  }
 
-  await Promise.all(searchPromises);
+    // Vector searches (session ensures contexts stay alive)
+    if (hasVectors) {
+      for (const q of vectorQueries) {
+        if (!q) continue;
+        searchPromises.push((async () => {
+          const vecResults = await searchVec(db, q, embedModel, 20, (collectionName || "") as any, session);
+          if (vecResults.length > 0) {
+            for (const r of vecResults) hashMap.set(r.filepath, r.hash);
+            rankedLists.push(vecResults.map(r => ({ file: r.filepath, displayPath: r.displayPath, title: r.title, body: r.body || "", score: r.score })));
+          }
+        })());
+      }
+    }
 
-  // Apply Reciprocal Rank Fusion to combine all ranked lists
-  // Give 2x weight to original query results (first 2 lists: FTS + vector)
-  const weights = rankedLists.map((_, i) => i < 2 ? 2.0 : 1.0);
-  const fused = reciprocalRankFusion(rankedLists, weights);
-  // Hard cap reranking for latency/cost. We rerank per-document (best chunk only).
-  const RERANK_DOC_LIMIT = 40;
-  const candidates = fused.slice(0, RERANK_DOC_LIMIT);
+    await Promise.all(searchPromises);
 
-  if (candidates.length === 0) {
-    console.log("No results found.");
-    closeDb();
-    return;
-  }
+    // Apply Reciprocal Rank Fusion to combine all ranked lists
+    // Give 2x weight to original query results (first 2 lists: FTS + vector)
+    const weights = rankedLists.map((_, i) => i < 2 ? 2.0 : 1.0);
+    const fused = reciprocalRankFusion(rankedLists, weights);
+    // Hard cap reranking for latency/cost. We rerank per-document (best chunk only).
+    const RERANK_DOC_LIMIT = 40;
+    const candidates = fused.slice(0, RERANK_DOC_LIMIT);
 
-  // Rerank multiple chunks per document, then aggregate scores
-  // This improves ranking for long documents where keyword-matched chunk isn't always best
-  // We only rerank ONE chunk per document (best chunk by a simple keyword heuristic),
-  // so we never rerank more than RERANK_DOC_LIMIT items.
-  const chunksToRerank: { file: string; text: string; chunkIdx: number }[] = [];
-  const docChunkMap = new Map<string, { chunks: { text: string; pos: number }[]; bestIdx: number }>();
-
-  const queryTerms = query.toLowerCase().split(/\s+/).filter(t => t.length > 2);
-  for (const c of candidates) {
-    const chunks = chunkDocument(c.body);
-    if (chunks.length === 0) continue;
-
-    // Choose best chunk by keyword matches; fall back to first chunk.
-    let bestIdx = 0;
-    let bestScore = -1;
-    for (let i = 0; i < chunks.length; i++) {
-      const chunkLower = chunks[i]!.text.toLowerCase();
-      const score = queryTerms.reduce((acc, term) => acc + (chunkLower.includes(term) ? 1 : 0), 0);
-      if (score > bestScore) {
-        bestScore = score;
-        bestIdx = i;
-      }
+    if (candidates.length === 0) {
+      console.log("No results found.");
+      closeDb();
+      return;
     }
 
-    chunksToRerank.push({ file: c.file, text: chunks[bestIdx]!.text, chunkIdx: bestIdx });
-    docChunkMap.set(c.file, { chunks, bestIdx });
-  }
+    // Rerank multiple chunks per document, then aggregate scores
+    // This improves ranking for long documents where keyword-matched chunk isn't always best
+    // We only rerank ONE chunk per document (best chunk by a simple keyword heuristic),
+    // so we never rerank more than RERANK_DOC_LIMIT items.
+    const chunksToRerank: { file: string; text: string; chunkIdx: number }[] = [];
+    const docChunkMap = new Map<string, { chunks: { text: string; pos: number }[]; bestIdx: number }>();
+
+    const queryTerms = query.toLowerCase().split(/\s+/).filter(t => t.length > 2);
+    for (const cand of candidates) {
+      const chunks = chunkDocument(cand.body);
+      if (chunks.length === 0) continue;
+
+      // Choose best chunk by keyword matches; fall back to first chunk.
+      let bestIdx = 0;
+      let bestScore = -1;
+      for (let i = 0; i < chunks.length; i++) {
+        const chunkLower = chunks[i]!.text.toLowerCase();
+        const score = queryTerms.reduce((acc, term) => acc + (chunkLower.includes(term) ? 1 : 0), 0);
+        if (score > bestScore) {
+          bestScore = score;
+          bestIdx = i;
+        }
+      }
 
-  // Rerank selected chunks (with caching). One chunk per doc -> one rerank item per doc.
-  const reranked = await rerank(
-    query,
-    chunksToRerank.map(c => ({ file: c.file, text: c.text })),
-    rerankModel,
-    db
-  );
+      chunksToRerank.push({ file: cand.file, text: chunks[bestIdx]!.text, chunkIdx: bestIdx });
+      docChunkMap.set(cand.file, { chunks, bestIdx });
+    }
 
-  const aggregatedScores = new Map<string, { score: number; bestChunkIdx: number }>();
-  for (const r of reranked) {
-    const chunkInfo = docChunkMap.get(r.file);
-    aggregatedScores.set(r.file, { score: r.score, bestChunkIdx: chunkInfo?.bestIdx ?? 0 });
-  }
-
-  // Blend RRF position score with aggregated reranker score using position-aware weights
-  // Top retrieval results get more protection from reranker disagreement
-  const candidateMap = new Map(candidates.map(c => [c.file, { displayPath: c.displayPath, title: c.title, body: c.body }]));
-  const rrfRankMap = new Map(candidates.map((c, i) => [c.file, i + 1])); // 1-indexed rank
-
-  const finalResults = Array.from(aggregatedScores.entries()).map(([file, { score: rerankScore, bestChunkIdx }]) => {
-    const rrfRank = rrfRankMap.get(file) || 30;
-    // Position-aware blending: top retrieval results preserved more
-    // Rank 1-3: 75% RRF, 25% reranker (trust retrieval for exact matches)
-    // Rank 4-10: 60% RRF, 40% reranker
-    // Rank 11+: 40% RRF, 60% reranker (trust reranker for lower-ranked)
-    let rrfWeight: number;
-    if (rrfRank <= 3) {
-      rrfWeight = 0.75;
-    } else if (rrfRank <= 10) {
-      rrfWeight = 0.60;
-    } else {
-      rrfWeight = 0.40;
-    }
-    const rrfScore = 1 / rrfRank;  // Position-based: 1, 0.5, 0.33...
-    const blendedScore = rrfWeight * rrfScore + (1 - rrfWeight) * rerankScore;
-    const candidate = candidateMap.get(file);
-    // Use the best-scoring chunk's text for the body (better for snippets)
-    const chunkInfo = docChunkMap.get(file);
-    const chunkBody = chunkInfo ? (chunkInfo.chunks[bestChunkIdx]?.text || chunkInfo.chunks[0]!.text) : candidate?.body || "";
-    const chunkPos = chunkInfo ? (chunkInfo.chunks[bestChunkIdx]?.pos || 0) : 0;
-    return {
-      file,
-      displayPath: candidate?.displayPath || "",
-      title: candidate?.title || "",
-      body: chunkBody,
-      chunkPos,
-      score: blendedScore,
-      context: getContextForFile(db, file),
-      hash: hashMap.get(file) || "",
-    };
-  }).sort((a, b) => b.score - a.score);
-
-  // Deduplicate by file (safety net - shouldn't happen but prevents duplicate output)
-  const seenFiles = new Set<string>();
-  const dedupedResults = finalResults.filter(r => {
-    if (seenFiles.has(r.file)) return false;
-    seenFiles.add(r.file);
-    return true;
-  });
+    // Rerank selected chunks (with caching). One chunk per doc -> one rerank item per doc.
+    const reranked = await rerank(
+      query,
+      chunksToRerank.map(ch => ({ file: ch.file, text: ch.text })),
+      rerankModel,
+      db,
+      session
+    );
 
-  closeDb();
-  outputResults(dedupedResults, query, opts);
+    const aggregatedScores = new Map<string, { score: number; bestChunkIdx: number }>();
+    for (const r of reranked) {
+      const chunkInfo = docChunkMap.get(r.file);
+      aggregatedScores.set(r.file, { score: r.score, bestChunkIdx: chunkInfo?.bestIdx ?? 0 });
+    }
+
+    // Blend RRF position score with aggregated reranker score using position-aware weights
+    // Top retrieval results get more protection from reranker disagreement
+    const candidateMap = new Map(candidates.map(cand => [cand.file, { displayPath: cand.displayPath, title: cand.title, body: cand.body }]));
+    const rrfRankMap = new Map(candidates.map((cand, i) => [cand.file, i + 1])); // 1-indexed rank
+
+    const finalResults = Array.from(aggregatedScores.entries()).map(([file, { score: rerankScore, bestChunkIdx }]) => {
+      const rrfRank = rrfRankMap.get(file) || 30;
+      // Position-aware blending: top retrieval results preserved more
+      // Rank 1-3: 75% RRF, 25% reranker (trust retrieval for exact matches)
+      // Rank 4-10: 60% RRF, 40% reranker
+      // Rank 11+: 40% RRF, 60% reranker (trust reranker for lower-ranked)
+      let rrfWeight: number;
+      if (rrfRank <= 3) {
+        rrfWeight = 0.75;
+      } else if (rrfRank <= 10) {
+        rrfWeight = 0.60;
+      } else {
+        rrfWeight = 0.40;
+      }
+      const rrfScore = 1 / rrfRank;  // Position-based: 1, 0.5, 0.33...
+      const blendedScore = rrfWeight * rrfScore + (1 - rrfWeight) * rerankScore;
+      const candidate = candidateMap.get(file);
+      // Use the best-scoring chunk's text for the body (better for snippets)
+      const chunkInfo = docChunkMap.get(file);
+      const chunkBody = chunkInfo ? (chunkInfo.chunks[bestChunkIdx]?.text || chunkInfo.chunks[0]!.text) : candidate?.body || "";
+      const chunkPos = chunkInfo ? (chunkInfo.chunks[bestChunkIdx]?.pos || 0) : 0;
+      return {
+        file,
+        displayPath: candidate?.displayPath || "",
+        title: candidate?.title || "",
+        body: chunkBody,
+        chunkPos,
+        score: blendedScore,
+        context: getContextForFile(db, file),
+        hash: hashMap.get(file) || "",
+      };
+    }).sort((a, b) => b.score - a.score);
+
+    // Deduplicate by file (safety net - shouldn't happen but prevents duplicate output)
+    const seenFiles = new Set<string>();
+    const dedupedResults = finalResults.filter(r => {
+      if (seenFiles.has(r.file)) return false;
+      seenFiles.add(r.file);
+      return true;
+    });
+
+    closeDb();
+    outputResults(dedupedResults, query, opts);
+  }, { maxDuration: 10 * 60 * 1000, name: 'querySearch' });
 }
 
 // Parse CLI arguments using util.parseArgs

+ 395 - 0
src/store-paths.test.ts

@@ -0,0 +1,395 @@
+/**
+ * store-paths.test.ts - Comprehensive unit tests for Windows path support
+ *
+ * Tests all path-related utility functions for cross-platform compatibility:
+ * - isAbsolutePath() - Unix, Windows (C:\, C:/), and Git Bash (/c/) paths
+ * - normalizePathSeparators() - backslash to forward slash conversion
+ * - getRelativePathFromPrefix() - relative path extraction
+ * - resolve() - path resolution with Unix and Windows paths
+ *
+ * Run with: bun test store-paths.test.ts
+ */
+
+import { describe, test, expect, beforeEach, afterEach } from "bun:test";
+import {
+  isAbsolutePath,
+  normalizePathSeparators,
+  getRelativePathFromPrefix,
+  resolve,
+} from "./store.js";
+
+// =============================================================================
+// Test Utilities
+// =============================================================================
+
+let originalPWD: string | undefined;
+let originalProcessCwd: () => string;
+
+beforeEach(() => {
+  // Save original environment
+  originalPWD = Bun.env.PWD;
+  originalProcessCwd = process.cwd;
+});
+
+afterEach(() => {
+  // Restore original environment
+  if (originalPWD !== undefined) {
+    Bun.env.PWD = originalPWD;
+  } else {
+    delete Bun.env.PWD;
+  }
+  process.cwd = originalProcessCwd;
+});
+
+/**
+ * Mock the current working directory for testing.
+ * Sets both Bun.env.PWD and process.cwd() to simulate different environments.
+ */
+function mockPWD(path: string): void {
+  Bun.env.PWD = path;
+  process.cwd = () => path;
+}
+
+// =============================================================================
+// Path Utilities - Cross-platform Support
+// =============================================================================
+
+describe("Path utilities - Cross-platform support", () => {
+  
+  // ===========================================================================
+  // isAbsolutePath
+  // ===========================================================================
+  
+  describe("isAbsolutePath", () => {
+    test("Unix absolute paths", () => {
+      expect(isAbsolutePath("/path/to/file")).toBe(true);
+      expect(isAbsolutePath("/")).toBe(true);
+      expect(isAbsolutePath("/home/user/documents")).toBe(true);
+      expect(isAbsolutePath("/usr/local/bin")).toBe(true);
+    });
+
+    test("Unix relative paths", () => {
+      expect(isAbsolutePath("path/to/file")).toBe(false);
+      expect(isAbsolutePath("./path/to/file")).toBe(false);
+      expect(isAbsolutePath("../path/to/file")).toBe(false);
+      expect(isAbsolutePath("./file")).toBe(false);
+      expect(isAbsolutePath("../file")).toBe(false);
+      expect(isAbsolutePath("file.txt")).toBe(false);
+    });
+
+    test("Windows absolute paths (native) - forward slash", () => {
+      expect(isAbsolutePath("C:/path/to/file")).toBe(true);
+      expect(isAbsolutePath("C:/")).toBe(true);
+      expect(isAbsolutePath("D:/Users/Documents")).toBe(true);
+      expect(isAbsolutePath("Z:/")).toBe(true);
+      expect(isAbsolutePath("c:/lowercase")).toBe(true);
+    });
+
+    test("Windows absolute paths (native) - backslash", () => {
+      expect(isAbsolutePath("C:\\path\\to\\file")).toBe(true);
+      expect(isAbsolutePath("C:\\")).toBe(true);
+      expect(isAbsolutePath("D:\\Users\\Documents")).toBe(true);
+      expect(isAbsolutePath("Z:\\")).toBe(true);
+      expect(isAbsolutePath("c:\\lowercase")).toBe(true);
+    });
+
+    test("Windows relative paths", () => {
+      expect(isAbsolutePath("path\\to\\file")).toBe(false);
+      expect(isAbsolutePath(".\\path\\to\\file")).toBe(false);
+      expect(isAbsolutePath("..\\path\\to\\file")).toBe(false);
+      expect(isAbsolutePath(".\\file")).toBe(false);
+      expect(isAbsolutePath("..\\file")).toBe(false);
+      expect(isAbsolutePath("file.txt")).toBe(false);
+    });
+
+    test("Git Bash style paths", () => {
+      expect(isAbsolutePath("/c/Users/name/file")).toBe(true);
+      expect(isAbsolutePath("/C/Users/name/file")).toBe(true);
+      expect(isAbsolutePath("/d/Projects")).toBe(true);
+      expect(isAbsolutePath("/D/Projects")).toBe(true);
+      expect(isAbsolutePath("/z/")).toBe(true);
+    });
+
+    test("Edge cases", () => {
+      expect(isAbsolutePath("")).toBe(false);
+      expect(isAbsolutePath("C:")).toBe(true); // Drive letter only
+      expect(isAbsolutePath("C")).toBe(false); // Just a letter
+      expect(isAbsolutePath(":")).toBe(false);
+      expect(isAbsolutePath("/a")).toBe(true); // Short Unix path
+      expect(isAbsolutePath("/1/")).toBe(true); // Number after slash (not Git Bash)
+    });
+  });
+
+  // ===========================================================================
+  // normalizePathSeparators
+  // ===========================================================================
+  
+  describe("normalizePathSeparators", () => {
+    test("Windows paths with backslashes", () => {
+      expect(normalizePathSeparators("C:\\Users\\name\\file.txt"))
+        .toBe("C:/Users/name/file.txt");
+      expect(normalizePathSeparators("D:\\Projects\\qmd\\src"))
+        .toBe("D:/Projects/qmd/src");
+      expect(normalizePathSeparators("\\path\\to\\file"))
+        .toBe("/path/to/file");
+    });
+
+    test("Mixed separators", () => {
+      expect(normalizePathSeparators("C:\\Users/name\\file.txt"))
+        .toBe("C:/Users/name/file.txt");
+      expect(normalizePathSeparators("path\\to/file/here"))
+        .toBe("path/to/file/here");
+    });
+
+    test("Unix paths (should remain unchanged)", () => {
+      expect(normalizePathSeparators("/path/to/file"))
+        .toBe("/path/to/file");
+      expect(normalizePathSeparators("/usr/local/bin"))
+        .toBe("/usr/local/bin");
+      expect(normalizePathSeparators("relative/path"))
+        .toBe("relative/path");
+    });
+
+    test("Multiple consecutive backslashes", () => {
+      expect(normalizePathSeparators("path\\\\to\\\\file"))
+        .toBe("path//to//file");
+      expect(normalizePathSeparators("C:\\\\Users\\\\name"))
+        .toBe("C://Users//name");
+    });
+
+    test("Edge cases", () => {
+      expect(normalizePathSeparators("")).toBe("");
+      expect(normalizePathSeparators("\\")).toBe("/");
+      expect(normalizePathSeparators("\\\\")).toBe("//");
+      expect(normalizePathSeparators("file.txt")).toBe("file.txt");
+    });
+  });
+
+  // ===========================================================================
+  // getRelativePathFromPrefix
+  // ===========================================================================
+  
+  describe("getRelativePathFromPrefix", () => {
+    test("Exact match (path equals prefix)", () => {
+      expect(getRelativePathFromPrefix("/home/user", "/home/user")).toBe("");
+      expect(getRelativePathFromPrefix("C:/Users/name", "C:/Users/name")).toBe("");
+      expect(getRelativePathFromPrefix("/path", "/path")).toBe("");
+    });
+
+    test("Path under prefix", () => {
+      expect(getRelativePathFromPrefix("/home/user/documents", "/home/user"))
+        .toBe("documents");
+      expect(getRelativePathFromPrefix("/home/user/documents/file.txt", "/home/user"))
+        .toBe("documents/file.txt");
+      expect(getRelativePathFromPrefix("C:/Users/name/Documents/file.txt", "C:/Users/name"))
+        .toBe("Documents/file.txt");
+    });
+
+    test("Path not under prefix", () => {
+      expect(getRelativePathFromPrefix("/home/other", "/home/user")).toBeNull();
+      expect(getRelativePathFromPrefix("/usr/local", "/home/user")).toBeNull();
+      expect(getRelativePathFromPrefix("C:/Users/other", "D:/Users")).toBeNull();
+    });
+
+    test("Windows paths with normalized separators", () => {
+      // Backslashes should be normalized
+      expect(getRelativePathFromPrefix("C:\\Users\\name\\Documents", "C:\\Users\\name"))
+        .toBe("Documents");
+      expect(getRelativePathFromPrefix("C:\\Users\\name\\Documents\\file.txt", "C:/Users/name"))
+        .toBe("Documents/file.txt");
+    });
+
+    test("Prefix with trailing slash", () => {
+      expect(getRelativePathFromPrefix("/home/user/documents", "/home/user/"))
+        .toBe("documents");
+      expect(getRelativePathFromPrefix("C:/Users/name/Documents", "C:/Users/name/"))
+        .toBe("Documents");
+    });
+
+    test("Prefix without trailing slash", () => {
+      expect(getRelativePathFromPrefix("/home/user/documents", "/home/user"))
+        .toBe("documents");
+      expect(getRelativePathFromPrefix("C:/Users/name/Documents", "C:/Users/name"))
+        .toBe("Documents");
+    });
+
+    test("Edge cases", () => {
+      // Empty prefix
+      expect(getRelativePathFromPrefix("/path/to/file", "")).toBeNull();
+      
+      // Path is prefix substring but not in hierarchy
+      expect(getRelativePathFromPrefix("/home/username", "/home/user")).toBeNull();
+      
+      // Root prefix
+      expect(getRelativePathFromPrefix("/home/user", "/")).toBe("home/user");
+    });
+  });
+
+  // ===========================================================================
+  // resolve - Unix environment
+  // ===========================================================================
+  
+  describe("resolve - Unix environment", () => {
+    beforeEach(() => {
+      mockPWD("/home/user");
+    });
+
+    test("Unix relative paths", () => {
+      expect(resolve("/base", "relative")).toBe("/base/relative");
+      expect(resolve("/base", "a/b/c")).toBe("/base/a/b/c");
+      expect(resolve("/home", "user/documents")).toBe("/home/user/documents");
+    });
+
+    test("Unix absolute paths", () => {
+      expect(resolve("/base", "/absolute")).toBe("/absolute");
+      expect(resolve("/home/user", "/usr/local")).toBe("/usr/local");
+      expect(resolve("/any", "/")).toBe("/");
+    });
+
+    test("Path with .. and .", () => {
+      expect(resolve("/base", "../other")).toBe("/other");
+      expect(resolve("/base/sub", "..")).toBe("/base");
+      expect(resolve("/base", "./file")).toBe("/base/file");
+      expect(resolve("/base/a/b", "../../c")).toBe("/base/c");
+    });
+
+    test("Multiple path segments", () => {
+      expect(resolve("/a", "b", "c")).toBe("/a/b/c");
+      expect(resolve("/a", "b", "../c")).toBe("/a/c");
+      expect(resolve("/a", "b", "/c")).toBe("/c");
+    });
+
+    test("Relative path without base (uses PWD)", () => {
+      expect(resolve("relative")).toBe("/home/user/relative");
+      expect(resolve("a/b/c")).toBe("/home/user/a/b/c");
+      expect(resolve("./file")).toBe("/home/user/file");
+    });
+
+    test("Absolute path alone", () => {
+      expect(resolve("/absolute/path")).toBe("/absolute/path");
+      expect(resolve("/")).toBe("/");
+    });
+  });
+
+  // ===========================================================================
+  // resolve - Windows environment
+  // ===========================================================================
+  
+  describe("resolve - Windows environment", () => {
+    beforeEach(() => {
+      mockPWD("C:/Users/name");
+    });
+
+    test("Windows relative paths", () => {
+      expect(resolve("C:/base", "relative")).toBe("C:/base/relative");
+      expect(resolve("C:/base", "a/b/c")).toBe("C:/base/a/b/c");
+      expect(resolve("D:/Projects", "qmd/src")).toBe("D:/Projects/qmd/src");
+    });
+
+    test("Windows absolute paths", () => {
+      expect(resolve("C:/base", "D:/other")).toBe("D:/other");
+      expect(resolve("C:/Users", "C:/Program Files")).toBe("C:/Program Files");
+      expect(resolve("D:/any", "E:/other")).toBe("E:/other");
+    });
+
+    test("Windows with backslashes", () => {
+      expect(resolve("C:\\base", "relative")).toBe("C:/base/relative");
+      expect(resolve("C:\\Users\\name", "Documents")).toBe("C:/Users/name/Documents");
+      expect(resolve("C:\\base", "a\\b\\c")).toBe("C:/base/a/b/c");
+    });
+
+    test("Path with .. and .", () => {
+      expect(resolve("C:/base", "../other")).toBe("C:/other");
+      expect(resolve("C:/base/sub", "..")).toBe("C:/base");
+      expect(resolve("C:/base", "./file")).toBe("C:/base/file");
+      expect(resolve("C:/base/a/b", "../../c")).toBe("C:/base/c");
+    });
+
+    test("Multiple path segments", () => {
+      expect(resolve("C:/a", "b", "c")).toBe("C:/a/b/c");
+      expect(resolve("C:/a", "b", "../c")).toBe("C:/a/c");
+      expect(resolve("C:/a", "b", "D:/c")).toBe("D:/c");
+    });
+
+    test("Relative path without base (uses PWD)", () => {
+      expect(resolve("relative")).toBe("C:/Users/name/relative");
+      expect(resolve("a/b/c")).toBe("C:/Users/name/a/b/c");
+      expect(resolve(".\\file")).toBe("C:/Users/name/file");
+    });
+
+    test("Drive letter only", () => {
+      expect(resolve("C:")).toBe("C:/");
+      expect(resolve("D:")).toBe("D:/");
+    });
+  });
+
+  // ===========================================================================
+  // resolve - Git Bash style paths
+  // ===========================================================================
+  
+  describe("resolve - Git Bash style paths", () => {
+    test("Git Bash to Windows conversion", () => {
+      expect(resolve("/c/Users/name")).toBe("C:/Users/name");
+      expect(resolve("/C/Users/name")).toBe("C:/Users/name");
+      expect(resolve("/d/Projects")).toBe("D:/Projects");
+      expect(resolve("/D/Projects")).toBe("D:/Projects");
+    });
+
+    test("Git Bash with relative paths", () => {
+      expect(resolve("/c/base", "relative")).toBe("C:/base/relative");
+      expect(resolve("/d/Projects", "qmd/src")).toBe("D:/Projects/qmd/src");
+    });
+
+    test("Git Bash with .. and .", () => {
+      expect(resolve("/c/base", "../other")).toBe("C:/other");
+      expect(resolve("/c/base/sub", "..")).toBe("C:/base");
+      expect(resolve("/c/base", "./file")).toBe("C:/base/file");
+    });
+
+    test("Multiple Git Bash segments", () => {
+      expect(resolve("/c/a", "b", "c")).toBe("C:/a/b/c");
+      expect(resolve("/c/a", "b", "/d/c")).toBe("D:/c");
+    });
+  });
+
+  // ===========================================================================
+  // resolve - Edge cases and mixed scenarios
+  // ===========================================================================
+  
+  describe("resolve - Edge cases", () => {
+    test("Empty path segments are filtered", () => {
+      expect(resolve("/base", "", "file")).toBe("/base/file");
+      expect(resolve("C:/base", "", "file")).toBe("C:/base/file");
+    });
+
+    test("Multiple consecutive slashes", () => {
+      expect(resolve("/base//path///file")).toBe("/base/path/file");
+      expect(resolve("C:/base//path///file")).toBe("C:/base/path/file");
+    });
+
+    test("Trailing slashes", () => {
+      expect(resolve("/base/", "file")).toBe("/base/file");
+      expect(resolve("C:/base/", "file")).toBe("C:/base/file");
+    });
+
+    test("Complex .. navigation", () => {
+      expect(resolve("/a/b/c/d", "../../../e")).toBe("/a/e");
+      expect(resolve("C:/a/b/c/d", "../../../e")).toBe("C:/a/e");
+    });
+
+    test("Too many .. (should not go above root)", () => {
+      expect(resolve("/base", "../../../../other")).toBe("/other");
+      expect(resolve("C:/base", "../../../../other")).toBe("C:/other");
+    });
+
+    test("Mixed Unix and Windows (normalized)", () => {
+      mockPWD("C:/Users/name");
+      expect(resolve("/unix/path")).toBe("/unix/path");
+      expect(resolve("relative")).toBe("C:/Users/name/relative");
+    });
+
+    test("Error on no arguments", () => {
+      expect(() => resolve()).toThrow("resolve: at least one path segment is required");
+    });
+  });
+});

+ 1 - 1
src/store.test.ts

@@ -1850,7 +1850,7 @@ describe("LlamaCpp Integration", () => {
     expect(allResults).toHaveLength(2);
 
     // Search with collection filter - should return only from collection1
-    const filtered = await store.searchVec("content", "embeddinggemma", 10, collection1 as unknown as number);
+    const filtered = await store.searchVec("content", "embeddinggemma", 10, collection1);
     expect(filtered).toHaveLength(1);
     expect(filtered[0]!.collectionName).toBe(collection1);
 

+ 191 - 24
src/store.ts

@@ -21,6 +21,7 @@ import {
   formatQueryForEmbedding,
   formatDocForEmbedding,
   type RerankDocument,
+  type ILLMSession,
 } from "./llm";
 import {
   findContextForPath as collectionsFindContextForPath,
@@ -63,25 +64,171 @@ export function homedir(): string {
   return HOME;
 }
 
+/**
+ * Check if a path is absolute.
+ * Supports:
+ * - Unix paths: /path/to/file
+ * - Windows native: C:\path or C:/path
+ * - Git Bash: /c/path or /C/path (C-Z drives, excluding A/B floppy drives)
+ * 
+ * Note: /c without trailing slash is treated as Unix path (directory named "c"),
+ * while /c/ or /c/path are treated as Git Bash paths (C: drive).
+ */
+export function isAbsolutePath(path: string): boolean {
+  if (!path) return false;
+  
+  // Unix absolute path
+  if (path.startsWith('/')) {
+    // Check if it's a Git Bash style path like /c/ or /c/Users (C-Z only, not A or B)
+    // Requires path[2] === '/' to distinguish from Unix paths like /c or /cache
+    if (path.length >= 3 && path[2] === '/') {
+      const driveLetter = path[1];
+      if (driveLetter && /[c-zC-Z]/.test(driveLetter)) {
+        return true;
+      }
+    }
+    // Any other path starting with / is Unix absolute
+    return true;
+  }
+  
+  // Windows native path: C:\ or C:/ (any letter A-Z)
+  if (path.length >= 2 && /[a-zA-Z]/.test(path[0]!) && path[1] === ':') {
+    return true;
+  }
+  
+  return false;
+}
+
+/**
+ * Normalize path separators to forward slashes.
+ * Converts Windows backslashes to forward slashes.
+ */
+export function normalizePathSeparators(path: string): string {
+  return path.replace(/\\/g, '/');
+}
+
+/**
+ * Get the relative path from a prefix.
+ * Returns null if path is not under prefix.
+ * Returns empty string if path equals prefix.
+ */
+export function getRelativePathFromPrefix(path: string, prefix: string): string | null {
+  // Empty prefix is invalid
+  if (!prefix) {
+    return null;
+  }
+  
+  const normalizedPath = normalizePathSeparators(path);
+  const normalizedPrefix = normalizePathSeparators(prefix);
+  
+  // Ensure prefix ends with / for proper matching
+  const prefixWithSlash = !normalizedPrefix.endsWith('/') 
+    ? normalizedPrefix + '/' 
+    : normalizedPrefix;
+  
+  // Exact match
+  if (normalizedPath === normalizedPrefix) {
+    return '';
+  }
+  
+  // Check if path starts with prefix
+  if (normalizedPath.startsWith(prefixWithSlash)) {
+    return normalizedPath.slice(prefixWithSlash.length);
+  }
+  
+  return null;
+}
+
 export function resolve(...paths: string[]): string {
   if (paths.length === 0) {
     throw new Error("resolve: at least one path segment is required");
   }
-  let result = paths[0]!.startsWith('/') ? '' : Bun.env.PWD || process.cwd();
-  for (const p of paths) {
-    if (p.startsWith('/')) {
+  
+  // Normalize all paths to use forward slashes
+  const normalizedPaths = paths.map(normalizePathSeparators);
+  
+  let result = '';
+  let windowsDrive = '';
+  
+  // Check if first path is absolute
+  const firstPath = normalizedPaths[0]!;
+  if (isAbsolutePath(firstPath)) {
+    result = firstPath;
+    
+    // Extract Windows drive letter if present
+    if (firstPath.length >= 2 && /[a-zA-Z]/.test(firstPath[0]!) && firstPath[1] === ':') {
+      windowsDrive = firstPath.slice(0, 2);
+      result = firstPath.slice(2);
+    } else if (firstPath.startsWith('/') && firstPath.length >= 3 && firstPath[2] === '/') {
+      // Git Bash style: /c/ -> C: (C-Z drives only, not A or B)
+      const driveLetter = firstPath[1];
+      if (driveLetter && /[c-zC-Z]/.test(driveLetter)) {
+        windowsDrive = driveLetter.toUpperCase() + ':';
+        result = firstPath.slice(2);
+      }
+    }
+  } else {
+    // Start with PWD or cwd, then append the first relative path
+    const pwd = normalizePathSeparators(Bun.env.PWD || process.cwd());
+    
+    // Extract Windows drive from PWD if present
+    if (pwd.length >= 2 && /[a-zA-Z]/.test(pwd[0]!) && pwd[1] === ':') {
+      windowsDrive = pwd.slice(0, 2);
+      result = pwd.slice(2) + '/' + firstPath;
+    } else {
+      result = pwd + '/' + firstPath;
+    }
+  }
+  
+  // Process remaining paths
+  for (let i = 1; i < normalizedPaths.length; i++) {
+    const p = normalizedPaths[i]!;
+    if (isAbsolutePath(p)) {
+      // Absolute path replaces everything
       result = p;
+      
+      // Update Windows drive if present
+      if (p.length >= 2 && /[a-zA-Z]/.test(p[0]!) && p[1] === ':') {
+        windowsDrive = p.slice(0, 2);
+        result = p.slice(2);
+      } else if (p.startsWith('/') && p.length >= 3 && p[2] === '/') {
+        // Git Bash style (C-Z drives only, not A or B)
+        const driveLetter = p[1];
+        if (driveLetter && /[c-zC-Z]/.test(driveLetter)) {
+          windowsDrive = driveLetter.toUpperCase() + ':';
+          result = p.slice(2);
+        } else {
+          windowsDrive = '';
+        }
+      } else {
+        windowsDrive = '';
+      }
     } else {
+      // Relative path - append
       result = result + '/' + p;
     }
   }
+  
+  // Normalize . and .. components
   const parts = result.split('/').filter(Boolean);
   const normalized: string[] = [];
   for (const part of parts) {
-    if (part === '..') normalized.pop();
-    else if (part !== '.') normalized.push(part);
+    if (part === '..') {
+      normalized.pop();
+    } else if (part !== '.') {
+      normalized.push(part);
+    }
+  }
+  
+  // Build final path
+  const finalPath = '/' + normalized.join('/');
+  
+  // Prepend Windows drive if present
+  if (windowsDrive) {
+    return windowsDrive + finalPath;
   }
-  return '/' + normalized.join('/');
+  
+  return finalPath;
 }
 
 // Flag to indicate production mode (set by qmd.ts at startup)
@@ -473,7 +620,7 @@ export type Store = {
 
   // Search
   searchFTS: (query: string, limit?: number, collectionId?: number) => SearchResult[];
-  searchVec: (query: string, model: string, limit?: number, collectionId?: number) => Promise<SearchResult[]>;
+  searchVec: (query: string, model: string, limit?: number, collectionName?: string) => Promise<SearchResult[]>;
 
   // Query expansion & reranking
   expandQuery: (query: string, model?: string) => Promise<string[]>;
@@ -556,7 +703,7 @@ export function createStore(dbPath?: string): Store {
 
     // Search
     searchFTS: (query: string, limit?: number, collectionId?: number) => searchFTS(db, query, limit, collectionId),
-    searchVec: (query: string, model: string, limit?: number, collectionId?: number) => searchVec(db, query, model, limit, collectionId),
+    searchVec: (query: string, model: string, limit?: number, collectionName?: string) => searchVec(db, query, model, limit, collectionName),
 
     // Query expansion & reranking
     expandQuery: (query: string, model?: string) => expandQuery(query, model, db),
@@ -891,17 +1038,36 @@ export async function hashContent(content: string): Promise<string> {
   return hash.digest("hex");
 }
 
-export function extractTitle(content: string, filename: string): string {
-  const match = content.match(/^##?\s+(.+)$/m);
-  if (match) {
-    const title = (match[1] ?? "").trim();
-    if (title === "📝 Notes" || title === "Notes") {
-      const nextMatch = content.match(/^##\s+(.+)$/m);
-      if (nextMatch?.[1]) return nextMatch[1].trim();
+const titleExtractors: Record<string, (content: string) => string | null> = {
+  '.md': (content) => {
+    const match = content.match(/^##?\s+(.+)$/m);
+    if (match) {
+      const title = (match[1] ?? "").trim();
+      if (title === "📝 Notes" || title === "Notes") {
+        const nextMatch = content.match(/^##\s+(.+)$/m);
+        if (nextMatch?.[1]) return nextMatch[1].trim();
+      }
+      return title;
     }
-    return title;
+    return null;
+  },
+  '.org': (content) => {
+    const titleProp = content.match(/^#\+TITLE:\s*(.+)$/im);
+    if (titleProp?.[1]) return titleProp[1].trim();
+    const heading = content.match(/^\*+\s+(.+)$/m);
+    if (heading?.[1]) return heading[1].trim();
+    return null;
+  },
+};
+
+export function extractTitle(content: string, filename: string): string {
+  const ext = filename.slice(filename.lastIndexOf('.')).toLowerCase();
+  const extractor = titleExtractors[ext];
+  if (extractor) {
+    const title = extractor(content);
+    if (title) return title;
   }
-  return filename.replace(/\.md$/, "").split("/").pop() || filename;
+  return filename.replace(/\.[^.]+$/, "").split("/").pop() || filename;
 }
 
 // =============================================================================
@@ -1735,11 +1901,11 @@ export function searchFTS(db: Database, query: string, limit: number = 20, colle
 // Vector Search
 // =============================================================================
 
-export async function searchVec(db: Database, query: string, model: string, limit: number = 20, collectionId?: number): Promise<SearchResult[]> {
+export async function searchVec(db: Database, query: string, model: string, limit: number = 20, collectionName?: string, session?: ILLMSession): Promise<SearchResult[]> {
   const tableExists = db.prepare(`SELECT name FROM sqlite_master WHERE type='table' AND name='vectors_vec'`).get();
   if (!tableExists) return [];
 
-  const embedding = await getEmbedding(query, model, true);
+  const embedding = await getEmbedding(query, model, true, session);
   if (!embedding) return [];
 
   // IMPORTANT: We use a two-step query approach here because sqlite-vec virtual tables
@@ -1778,9 +1944,9 @@ export async function searchVec(db: Database, query: string, model: string, limi
   `;
   const params: string[] = [...hashSeqs];
 
-  if (collectionId) {
+  if (collectionName) {
     docSql += ` AND d.collection = ?`;
-    params.push(String(collectionId));
+    params.push(collectionName);
   }
 
   const docRows = db.prepare(docSql).all(...params) as {
@@ -1825,11 +1991,12 @@ export async function searchVec(db: Database, query: string, model: string, limi
 // Embeddings
 // =============================================================================
 
-async function getEmbedding(text: string, model: string, isQuery: boolean): Promise<number[] | null> {
-  const llm = getDefaultLlamaCpp();
+async function getEmbedding(text: string, model: string, isQuery: boolean, session?: ILLMSession): Promise<number[] | null> {
   // Format text using the appropriate prompt template
   const formattedText = isQuery ? formatQueryForEmbedding(text) : formatDocForEmbedding(text);
-  const result = await llm.embed(formattedText, { model, isQuery });
+  const result = session
+    ? await session.embed(formattedText, { model, isQuery })
+    : await getDefaultLlamaCpp().embed(formattedText, { model, isQuery });
   return result?.embedding || null;
 }