This is a sample project that only uses the built-in handlebars processor. html-brunch-static supports many other options.
Copy these files locally into the following directory hierarchy:
test
├── app
import { models } from '../models' | |
import { LLMChain, SerializedLLMChain } from "langchain/chains"; | |
import { PromptTemplate } from "langchain/prompts"; | |
import {AgentExecutor, BaseSingleActionAgent, StoppingMethod } from "langchain/agents"; | |
import { CallbackManagerForChainRun, Callbacks } from "langchain/callbacks"; | |
import { BaseMultiActionAgent } from "langchain/dist/agents/agent"; | |
import { BaseMemory } from "langchain/memory"; | |
import { AgentAction, AgentFinish, ChainValues } from "langchain/schema"; | |
import { Tool } from "langchain/tools"; |
const Iubenda = ({ | |
policyId | |
}) => { | |
useEffect(() => { | |
var s = document.createElement("script"); | |
let tag = document.getElementsByTagName("script")[0]; | |
s.src="https://cdn.iubenda.com/iubenda.js"; | |
tag.parentNode.insertBefore(s,tag); |
# -*- coding: utf-8 -*- | |
from PyQt4.QtCore import * | |
from PyQt4.QtGui import * | |
import codecs | |
import os | |
import sys | |
from aqt import editor, addons, mw |
This is a sample project that only uses the built-in handlebars processor. html-brunch-static supports many other options.
Copy these files locally into the following directory hierarchy:
test
├── app
var gulp = require('gulp'); | |
var nodemon = require('gulp-nodemon'); | |
var jshint = require('gulp-jshint'); | |
var concat = require('gulp-concat'); | |
var sass = require('gulp-sass'); | |
var sourcemaps = require('gulp-sourcemaps'); | |
var notifier = require('node-notifier'); | |
var uglify = require('gulp-uglify'); | |
var sequence = require('run-sequence'); | |
var util = require('gulp-util'); |
-- Remove the history from | |
rm -rf .git | |
-- recreate the repos from the current content only | |
git init | |
git add . | |
git commit -m "Initial commit" | |
-- push to the github remote repos ensuring you overwrite history | |
git remote add origin [email protected]:<YOUR ACCOUNT>/<YOUR REPOS>.git |