Carefully review the implementation plan in detail, ensure all edge cases are handled appropriately, each planned item is correct, complete and will be implemented effectively.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Check pods status of given app | |
| $kubectl get pods -l app=parlant | |
| # Example Output: | |
| #NAME READY STATUS RESTARTS AGE | |
| #parlant-579f75fb-8wjc5 0/1 Running 4 (7s ago) 22m | |
| #parlant-579f75fb-fmt2s 0/1 Running 4 (23s ago) 22m | |
| #parlant-6859869559-57xls 1/1 Running 0 30m | |
| # Check event |
- Spot the Flaws
- Prompt: Act as a recruiter for [your industry/role]. Review my resume below and highlight weak areas, overused buzzwords, and missing metrics. Be brutally honest.
- Rewrite for Impact
- Prompt: Rewrite this resume to sound more results-driven, quantifiable, and compelling for [target role]. Focus on achievements, not just duties.
- ATS Boost
- Prompt: Update this resume to be fully optimized for Applicant Tracking Systems (ATS) for the role of [specific role/title]. Use industry-specific keywords naturally.
- Craft My Hook
Act as a veteran Silicon Valley Big Tech Engineering Manager and coach (Google/Meta/Netflix/Apple-level rigour). Your job: help me run an EM “operating system” benchmarked against strong industry practices but adapted to my context.
Context:
- Role: New Engineering Manager
- Team: [number of direct reports]
- Product/Domain: [Your product or problem domain scope]
- Constraints: (fill in) direct reports = __ ; sprint/kanban = __ ; key stakeholders = __ ; major integrations = __
Deliverables (must be structured under People / Process / Product):
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| set -euo pipefail | |
| echo "Creating virtual sinks..." | |
| # 1) Create virtual sinks | |
| # Sink for Zoom's audio output | |
| pactl load-module module-null-sink sink_name=Zoom-to-Bot sink_properties=device.description="Zoom-to-Bot" | |
| # Sink for the Bot's audio output | |
| pactl load-module module-null-sink sink_name=VoiceBot-to-Zoom sink_properties=device.description="VoiceBot-to-Zoom" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sudo docker run \ | |
| --rm -it \ | |
| -v "$(pwd)/results:/results:rw" \ | |
| -e GUIDELLM_TARGET=http://localhost:8880 \ | |
| -e GUIDELLM_MODEL="ibm-granite_granite-4.0-h-tiny" \ | |
| -e GUIDELLM_RATE_TYPE=sweep \ | |
| -e GUIDELLM_MAX_SECONDS=300 \ | |
| -e GUIDELLM_DATA="prompt_tokens=256,output_tokens=128" \ | |
| ghcr.io/vllm-project/guidellm:latest |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| services: | |
| clickhouse: | |
| image: clickhouse/clickhouse-server:25.8-alpine | |
| ports: | |
| - "8123:8123" | |
| environment: | |
| - 'CLICKHOUSE_USER=${CLICKHOUSE_USER:?Environment variable CLICKHOUSE_USER must be set.}' | |
| - 'CLICKHOUSE_PASSWORD=${CLICKHOUSE_PASSWORD:?Environment variable CLICKHOUSE_USER must be set.}' | |
| gateway: | |
| depends_on: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| In Paris, the capital of France, the primary language spoken is |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| B64=$(base64 test.wav) | |
| curl -v http://192.168.1.111:8880/v1/chat/completions \ | |
| -H "Content-Type: application/json" \ | |
| -d @- <<JSON | |
| { | |
| "model": "qwen2.5-omni-3b", | |
| "messages": [ | |
| { | |
| "role": "user", |
Carefully review and analyze the code in implementation1.txt, implementation2.txt, and implementation3.txt in detail, and think more deeply about the following items:
- Which implementation is better for the given user story defined in <story_file> in terms of functionality, code quality, performance, modularity, test coverage, etc.? Explain your reasoning.
- Which implementation fully complies with the user story defined in <story_file>? Identify the discrepancies in the implementation(s) that do not comply.
NewerOlder