cd path/to/librechat
# set TOGETHERAI_API_KEY
vi .env
docker run -it --rm --env-file .env -v .:/work -w /work python:latest bash -c 'pip3 install pyyaml requests && python3 dump_together_ai_config_for_librechat.py > dump_together_ai_config_for_librechat.out.txt'
# Put the generated `dump_together_ai_config_for_librechat.out.txt` into `custom` array in `librechat.yaml`.
vi librechat.yaml
The capture_haml method has been removed as of HAML 6.0.0:
https://github.com/haml/haml/blob/main/CHANGELOG.md#600 Most Haml helpers are removed. For helpers generating general HTML tags, also consider using what your framework provides, e.g. Rails content_tag. Same applies to capture_haml, e.g. Rails capture.
This change is breaking for the code that works outside of Rails.
So I have implemented capture_haml
for Haml 6
Note that this does not work with block capturing support so you need to set the option {disable_capture: true}
.
require "bundler/inline" | |
gemfile(true) do | |
source "https://rubygems.org" | |
git_source(:github) { |repo| "https://github.com/#{repo}.git" } | |
gem "rails", github: "rails/rails", branch: "main" # commit: 608c1bf | |
gem "sqlite3" | |
end |
#!/usr/bin/env ruby | |
def setcwd_to_tmpdir | |
require "tmpdir" | |
tmpdir = Dir.mktmpdir | |
Dir.chdir(tmpdir) | |
end | |
def load_gems |
#!/usr/bin/env ruby | |
def setcwd_to_tmpdir | |
require "tmpdir" | |
tmpdir = Dir.mktmpdir | |
Dir.chdir(tmpdir) | |
end | |
def load_gems |
Reported on Jul 4, 2023 to Figma Support Contact
According to the follow-up from Figma support, now the engineers have published a fix for this problem. I have confirmed that this problem is not reproducible anymore. I appreciate their expeditious action. 🎉🙏
// npm i express cookie-parser | |
// | |
// node ajax-under-cors-example.js | |
// | |
// open http://localhost:12300/ | |
// => Step 3 will work. | |
// | |
// open http://AnotherHostNameOfYourMachine:12300/ | |
// => Step 3 will fail due to SameSite issue of Cookie. | |
// |
@startuml | |
' License: CC0 | |
title リンパ球減少の原因へのウイルス及び二酸化塩素の関与の可能性\n(Determination of the Effectiveness of Chlorine Dioxide in the Treatment of COVID 19, \nISSN1747-0862 Molecular and Genetic Medicine を元にライター作成)\n | |
skinparam defaultFontSize 18 | |
skinparam monochrome true | |
storage "**二酸化塩素**" as clo2 | |
storage "**SARS-CoV-2**" as ncov | |
card "ほとんどの患者に見られる\n**リンパ球減少**" as lymphopenia |
# -*- coding: utf-8 -*- | |
# Originally written by maehrm (id:rahaema) - https://maehrm.hatenablog.com/entry/20140208/p1 | |
require "ruby2d" | |
include Math | |
w = Window | |
class Numeric | |
def to_rad | |
self*PI/180 |