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
# Manus AI Assistant Capabilities | |
## Overview | |
I am an AI assistant designed to help users with a wide range of tasks using various tools and capabilities. This document provides a more detailed overview of what I can do while respecting proprietary information boundaries. | |
## General Capabilities | |
### Information Processing | |
- Answering questions on diverse topics using available information | |
- Conducting research through web searches and data analysis |
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
// Claude Code is a Beta product per Anthropic's Commercial Terms of Service. | |
// By using Claude Code, you agree that all code acceptance or rejection decisions you make, | |
// and the associated conversations in context, constitute Feedback under Anthropic's Commercial Terms, | |
// and may be used to improve Anthropic's products, including training models. | |
// You are responsible for reviewing any code suggestions before use. | |
// (c) Anthropic PBC. All rights reserved. Use is subject to Anthropic's Commercial Terms of Service (https://www.anthropic.com/legal/commercial-terms). | |
// Version: 0.2.9 |
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
lytang/LLM-AggreFact | |
model: Qwen/Qwen2.5-VL-7B-Instruct | |
two_stage_optimized (openai chat complete Judge Compute direct, no reasoning, zero shot): 60%-70% | |
labeled fewshots: 81.25% | |
bootstrap random: 84.50% | |
mipro2: 88.50% | |
copro: still running |
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
1. I cloned the repo | |
git clone https://github.com/Blealtan/RWKV-LM-LoRA | |
2. I download 7B Instruct | |
wget https://huggingface.co/BlinkDL/rwkv-4-pile-7b/resolve/main/RWKV-4-Pile-7B-Instruct-test2-20230209.pth | |
(in my home directory /home/shazam ) |
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
[18:14:56] 'scsslint' errored after 515 ms | |
[18:14:56] Error in plugin 'gulp-scss-lint' | |
Message: | |
Error code 1 | |
Error: Command failed: /bin/sh -c scss-lint 'src/app/app.scss' 'src/app/styles/_angular.scss' 'src/app/styles/_base.scss' 'src/app/styles/_bootstrap.scss' 'src/app/styles/_components.scss' 'src/app/styles/_forms.scss' 'src/app/styles/_mixins.scss' 'src/app/styles/modal.scss' 'src/app/examples/chat/chat.scss' 'src/app/core/auth/login/login.scss' --config=./scsslint.yml --format=JSON | |
/usr/lib/ruby/1.9.1/rubygems/dependency.rb:247:in `to_specs': Could not find scss_lint (>= 0) amongst [bundler-unload-1.0.2, chunky_png-1.3.5, compass-1.0.3, compass-core-1.0.3, compass-import-once-1.0.5, executable-hooks-1.3.2, ffi-1.9.10, gem-wrappers-1.2.7, minitest-5.4.3, multi_json-1.11.2, power_assert-0.2.2, rb-fsevent-0.9.6, rb-inotify-0.9.5, rubygems-bundler-1.4.4, rvm-1.11.3.9, sass-3.4.20, test-unit-3.0.8] (Gem::LoadError) | |
from /usr/lib/ruby/1.9.1/rubygems/dependency.rb:256:in `to_spec' | |
from /u |
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
var Promise = require('bluebird'); | |
var prepareKaboom = function () { | |
return Promise.try( function () { | |
return 'ok'; | |
}); | |
} | |
var someFunction = function () { |
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
// require() some stuff from npm (like you were using browserify) | |
// and then hit Run Code to run it on the right | |
var S3FS = require('s3fs'); | |
var fsImpl = new S3FS('test-bucket', options); | |
fsImpl.create().then(function() { | |
// Bucket was successfully created | |
}, function(reason) { |