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
| --- | |
| name: google-calendar-create | |
| description: "Add a new Google Calendar event via the existing Google Workspace skill." | |
| version: 1.0.0 | |
| license: MIT | |
| platforms: [linux, macos, windows] | |
| required_skill_files: | |
| - skill_dir: productivity/google-workspace | |
| path: SKILL.md | |
| --- |
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
| import time | |
| import json | |
| from datetime import datetime, timedelta | |
| import ollama | |
| # 1. ARRANGE: Define the full core skill environment | |
| GOOGLE_CALENDAR_SKILL = """ | |
| You are an AI agent executing a Hermes skill. You must execute the correct CLI commands based on the rules below. | |
| --- |
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
| llm_benchmark run --custombenchmark=custom_models.yml --no-sendinfo | |
| -------Linux---------- | |
| {'id': '0', 'name': 'NVIDIA GeForce RTX 4060', 'driver': '535.309.01', 'gpu_memory_total': '8188.0 MB', 'gpu_memory_free': '7257.0 MB', 'gpu_memory_used': '674.0 MB', 'gpu_load': '16.0%', 'gpu_temperature': '50.0°C'} | |
| Only one GPU card | |
| Total memory size : 15.51 GB |
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
| ============================================================= | |
| 🔥 UNIFIED SKILL BENCHMARK: llama3.1:latest | |
| 📅 Current System Time Context: 2026-06-06 06:50:31 | |
| ============================================================= | |
| 🔍 [PHASE 1: Planning Probe Results]: | |
| Based on the task "add meeting by 6 pm tomorrow", I will follow these strict constraints: | |
| 1. Confirm before creating with the user when possible. | |
| 2. Use ISO 8601 with timezone offset for all start/end values. | |
| 3. If the time is all day, omit the time and offset: (not applicable in this case) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
| function randomChar() { | |
| const chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZ "; | |
| return chars.charAt(Math.floor(Math.random() * chars.length)); | |
| } | |
| function randomString(length) { | |
| return Array.from({ length }, randomChar).join(''); | |
| } | |
| function calculateFitness(target, candidate) { |
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
| Package Version | |
| ------------------------ ------------ | |
| aiofiles 23.2.1 | |
| annotated-types 0.7.0 | |
| antlr4-python3-runtime 4.9.3 | |
| anyio 4.6.0 | |
| audiocraft 1.3.0 | |
| audioread 3.0.1 | |
| av 11.0.0 | |
| blis 0.7.11 |
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
| //1st : ambil data array list mahasiswa, untuk dilihat list DataID | |
| var list = [] | |
| //2nd : buat function iterasi, untuk meng-update setiap DataID | |
| function mark(){ | |
| for( let i=0;i<list.length;i++){ | |
| console.log(list[i].DataId); | |
| fetch("https://dosen.amikom.ac.id/api/ujian/mark_checked", { | |
| "headers": { | |
| "accept": "application/json, text/plain, */*", |
NewerOlder